- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章PHP利用imagick生成组合缩略图由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
先给大家炫下效果图,如果大家觉得还很满意,请继续往下阅读:
这里说的imagick 是 ImageMagick 在PHP下的扩展。使用pecl安装起来那叫一个轻松简单一条命令就搞定:
。
。
(扩展装好后还是要在php.ini中加上extension=imagick.so,然后记得重启apache或php-fpm服务。) 。
最近有个需求是要把多张图片组合起来生成缩略图,刚好用用这个强大的imagick扩展.
这个需求是要这样生成缩略图:
1.如果有1张图片,就直接生成这张图片的缩略图; 。
2.如果有2张图片,则一张在左边一张在右边,各一半; 。
3.如果有3张图片,则两张左边平均分配,一张独占右边; 。
4.如果有4张图片,则像田字格一样平均分配空间; 。
5.更多张图片,则只取前4张,按田字格方式生成缩略图.
这规则还真不少,不过还不算太过复杂,很快搞出来了:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
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利用imagick生成组合缩略图的相关知识,希望对大家有所帮助! 。
最后此篇关于PHP利用imagick生成组合缩略图的文章就讲到这里了,如果你想了解更多关于PHP利用imagick生成组合缩略图的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我有一个具有可变数量子元素的固定大小的 div。我不知道 children 的大小。目标是缩小它们以适合父级。 例子: .parent { width: 100px; height: 100p
我是一名优秀的程序员,十分优秀!