本文整理匯總了PHP中ImageHandler::getWidth方法的典型用法代碼示例。如果您正苦於以下問題:PHP ImageHandler::getWidth方法的具體用法?PHP ImageHandler::getWidth怎麽用?PHP ImageHandler::getWidth使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ImageHandler
的用法示例。
在下文中一共展示了ImageHandler::getWidth方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
$supported_types = array("image/png", "image/jpeg", "image/jpg", "image/gif");
if (!in_array($file["type"], $supported_types)) {
$errMessage .= 'File type not supported. (' . $file["type"] . ')';
}
}
if (strlen($errMessage) > 0) {
Service::returnError('Unable to upload files: ' . $errMessage);
}
// 2. Create thumbnail and resize image if it's too large
for ($i = 0; $i < count($files); $i++) {
$sourcefile = $files[$i]["tmp_name"];
$type = $files[$i]["type"];
$handler = new ImageHandler($sourcefile, $type);
$files[$i]["thumb_file"] = $handler->getAppendedFileName($files[$i]["tmp_name"], "_thumb", true);
$files[$i]["thumb_name"] = $handler->getAppendedFileName($files[$i]["name"], "_thumb", false);
if ($handler->getWidth() > 800 || $handler->getHeight() > 800) {
try {
$destination = $files[$i]["tmp_name"];
$handler->resize(800, 800, $destination);
} catch (Exception $ex) {
Service::returnError('Unable to upload files. Error resizing file: ' . $ex->getMessage());
}
}
$files[$i]["width"] = $handler->getWidth();
$files[$i]["height"] = $handler->getHeight();
try {
$destination = $files[$i]["thumb_file"];
$handler->resize(250, 250, $destination);
} catch (Exception $ex) {
Service::returnError('Unable to upload files. Error creating thumbnail: ' . $ex->getMessage());
}