本文整理匯總了PHP中Box::setBox方法的典型用法代碼示例。如果您正苦於以下問題:PHP Box::setBox方法的具體用法?PHP Box::setBox怎麽用?PHP Box::setBox使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Box
的用法示例。
在下文中一共展示了Box::setBox方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Box
imagecopyresized($img, $dotLayerImg, 840, 550, 0, 0, 200, 100, 200, 100);
//header text
$box = new Box($img);
$box->setFontFace(__DIR__ . '/fonts/Amatic-Bold.ttf');
$box->setFontColor($colorHeader);
$box->setFontSize(80);
$box->setLineHeight(1);
$box->setBox(580, 70, 480, 50);
$box->setTextAlign('center', 'center');
$box->draw($headerText);
//route box
$box = new Box($img);
$box->setFontFace(__DIR__ . '/fonts/Lato-Medium.ttf');
$box->setFontColor($colorRoute);
$box->setFontSize(21);
$box->setBox(600, 140, 460, 100);
$box->setTextAlign('center', 'center');
$box->draw($routeText);
//description box
$box = new Box($img);
$box->setFontFace(__DIR__ . '/fonts/Lato-Light.ttf');
$box->setFontColor($colorText);
$box->setFontSize(19);
$box->setLineHeight(1.4);
$box->setBox(630, 260, 440, 300);
$box->setTextAlign('center', 'top');
$box->draw($descriptionText);
//send photo to user
header('Content-type: image/jpeg');
header('Content-Disposition: inline; filename="day-' . $_POST['day'] . '.jpg"');
imagejpeg($img, null, 100);