《PHP應(yīng)用:PHP利用imagick生成組合縮略圖》要點(diǎn):
本文介紹了PHP應(yīng)用:PHP利用imagick生成組合縮略圖,希望對您有用。如果有疑問,可以聯(lián)系我們。
PHP教程先給大家炫下效果圖,如果大家覺得還很滿意,請繼續(xù)往下閱讀:
PHP教程
PHP教程這里說的imagick 是 ImageMagick 在PHP下的擴(kuò)展.使用pecl安裝起來那叫一個(gè)輕松簡單一條命令就搞定:
PHP教程(擴(kuò)展裝好后還是要在php.ini中加上extension=imagick.so,然跋文得重啟apache或php-fpm服務(wù).)
PHP教程最近有個(gè)需求是要把多張圖片組合起來生成縮略圖,剛好用用這個(gè)強(qiáng)大的imagick擴(kuò)展.
PHP教程這個(gè)需求是要這樣生成縮略圖:
PHP教程1.如果有1張圖片,就直接生成這張圖片的縮略圖;
PHP教程2.如果有2張圖片,則一張?jiān)谧筮呉粡堅(jiān)谟疫?各一半;
PHP教程3.如果有3張圖片,則兩張左邊平均分配,一張獨(dú)占右邊;
PHP教程4.如果有4張圖片,則像田字格一樣平均分配空間;
PHP教程5.更多張圖片,則只取前4張,按田字格方式生成縮略圖.
PHP教程這規(guī)則還真不少,不過還不算太過復(fù)雜,很快搞出來了:
PHP教程
namespace \clarence\thumbnail;
class Thumbnail extends \Imagick
{
/**
* @param array $images
* @param int $width
* @param int $height
* @return static
* @throws ThumbnailException
*/
public static function createFromImages($images, $width, $height){
if (empty($images)){
throw new ThumbnailException("No images!");
}
$thumbnail = new static();
$thumbnail->newImage($width, $height, 'white', 'jpg');
$thumbnail->compositeImages($images);
return $thumbnail;
}
public function compositeImages($images){
$imagesKeys = array_keys($images);
$compositeConfig = $this->calcCompositeImagesPosAndSize($images);
foreach ($compositeConfig as $index => $cfg){
$imgKey = $imagesKeys[$index];
$img = new \Imagick($images[$imgKey]);
$img = $this->makeCompositeThumbnail($img, $cfg);
$this->compositeImage($img, self::COMPOSITE_OVER, $cfg['to']['x'], $cfg['to']['y']);
}
}
protected function makeCompositeThumbnail(\Imagick $img, $cfg){
$img->cropThumbnailImage($cfg['size']['width'], $cfg['size']['height']);
return $img;
}
protected function calcCompositeImagesPosAndSize($images){
$width = $this->getImageWidth();
$height = $this->getImageHeight();
switch(count($images)){
case 0:
throw new ThumbnailException("No images!");
case 1:
// | 0 |
return [
0 => [
'to' => [ 'x' => 0, 'y' => 0 ],
'size' => [
'width' => $width,
'height' => $height,
]
]
];
case 2:
// | 0 | 1 |
return [
0 => [
'to' => [ 'x' => 0, 'y' => 0 ],
'size' => [
'width' => $width / 2,
'height' => $height,
]
],
1 => [
'to' => [ 'x' => $width / 2, 'y' => 0],
'size' => [
'width' => $width / 2,
'height' => $height,
]
]
];
case 3:
// | 0 | 1 |
// | 2 | |
return [
0 => [
'to' => [ 'x' => 0, 'y' => 0 ],
'size' => [
'width' => $width / 2,
'height' => $height / 2,
]
],
1 => [
'to' => [ 'x' => $width / 2, 'y' => 0],
'size' => [
'width' => $width / 2,
'height' => $height,
]
],
2 => [
'to' => [ 'x' => 0, 'y' => $height / 2 ],
'size' => [
'width' => $width / 2,
'height' => $height / 2,
]
],
];
default:
// >= 4:
// | 0 | 1 |
// | 2 | 3 |
return [
0 => [
'to' => [ 'x' => 0, 'y' => 0 ],
'size' => [
'width' => $width / 2,
'height' => $height / 2,
]
],
1 => [
'to' => [ 'x' => $width / 2, 'y' => 0],
'size' => [
'width' => $width / 2,
'height' => $height / 2,
]
],
2 => [
'to' => [ 'x' => 0, 'y' => $height / 2 ],
'size' => [
'width' => $width / 2,
'height' => $height / 2,
]
],
3 => [
'to' => [ 'x' => $width / 2, 'y' => $height / 2],
'size' => [
'width' => $width / 2,
'height' => $height / 2,
]
],
];
}
}
}
PHP教程用個(gè)試試:
PHP教程以上內(nèi)容給大家介紹了PHP利用imagick生成組合縮略圖的相關(guān)知識,希望對大家有所贊助!
維易PHP培訓(xùn)學(xué)院每天發(fā)布《PHP應(yīng)用:PHP利用imagick生成組合縮略圖》等實(shí)戰(zhàn)技能,PHP、MYSQL、LINUX、APP、JS,CSS全面培養(yǎng)人才。
轉(zhuǎn)載請注明本頁網(wǎng)址:
http://www.fzlkiss.com/jiaocheng/7530.html