本文整理匯總了PHP中Thumbnail::setDstImg方法的典型用法代碼示例。如果您正苦於以下問題:PHP Thumbnail::setDstImg方法的具體用法?PHP Thumbnail::setDstImg怎麽用?PHP Thumbnail::setDstImg使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Thumbnail
的用法示例。
在下文中一共展示了Thumbnail::setDstImg方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: index
public function index()
{
$u = new SwfUpload();
$t = new Thumbnail();
$u->files = $_FILES;
//設置file數組。(隻能單張)
//請記住先檢測,再上傳
$r = $u->check();
if ($r === true && ($r = $u->upload())) {
// echo_log($r);
if (!isset($r['error'])) {
// 生成200的縮略圖
$t->setSrcImg($r['savePath']);
$height = $t->getImgHeight();
$width = $t->getImgWidth();
if ($this->savePicture($r['saveName'], $r['title'], $width, $height)) {
// 生成小的縮略圖
$t->setDstImg($r['savePath'] . '_' . THUMBNAIL_WIDTH_SMALL);
$t->createImg(THUMBNAIL_WIDTH_SMALL);
// 生成打的縮略圖
$t->setSrcImg($r['savePath']);
$t->setDstImg($r['savePath'] . '_' . THUMBNAIL_WIDTH_LARGE);
$t->createImg(THUMBNAIL_WIDTH_LARGE);
$rt = array('thumbUrl' => $r['saveName'], 'title' => $r['title'], 'width' => $width, 'height' => $height);
json_success($rt);
} else {
json_failure('圖片信息入庫異常');
}
} else {
json_failure($r['error']);
}
} else {
json_failure($r['error']);
}
}