當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ImageHandler::getHeight方法代碼示例

本文整理匯總了PHP中ImageHandler::getHeight方法的典型用法代碼示例。如果您正苦於以下問題:PHP ImageHandler::getHeight方法的具體用法?PHP ImageHandler::getHeight怎麽用?PHP ImageHandler::getHeight使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ImageHandler的用法示例。


在下文中一共展示了ImageHandler::getHeight方法的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());
     }
開發者ID:robertmoss,項目名稱:foodfinder_main,代碼行數:31,代碼來源:files.php


注:本文中的ImageHandler::getHeight方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。