本文实例讲述了php使用imagick扩展实现合并图像的方法。分享给大家供大家参考,具体如下:
女朋友做外贸的,最近需要做个产品册,要求是每张a4纸上有20个图片,我心想小case吧,哥们会点ps呢。可是当她把图片发给俺,俺一看差点吓屎,近10000张图片,这要ps必定吐血身亡。。。
还好俺还会点php,好吧,写个小程序来完成拼图。因为图片都是按编号排列的,要求给每个图片都加上编号,于是我的思路是:1.先把所有图片缩放到统一尺寸 2.把每张图片和编号组合到一张图 3.把每20张图再组合到一张图。图片处理用到了imagemagick和php的imagick扩展。下面上代码,有详细注释:
第一步:
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
|
// step1: 调整尺寸到 590 x 590 $a = root . '/' . 'a' ; // 扫描目录 $dira = scandir( $a ); $im = new imagick; foreach ( $dira as $item ) { // 跳过目录和缩略图 if ( $item === '.' || $item === '..' || strstr ( $item , '.db' )) { continue ; } // 读取图片 $im ->readimage( $a . '/' . $item ); // 获取图片宽x高 $geo = $im ->getimagegeometry(); if ( $geo [ 'width' ] === 590 && $geo [ 'height' ] === 590) { // 宽高符合,跳过 } else { // 调整尺寸到590 x 590 im->resizeimage(590, 590, gmagick::filter_undefined, 1, true); } // 将图片保存到另一目录 $im ->writeimage(root . '/_a/' . $item ); // 释放资源 $im ->destroy(); } |
第二步:
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
|
// step2: 合并图片和名字 // 扫描目录 $files = scandir(root . '/_a' ); $k = 0; foreach ( $files as $item ) { // 跳过目录和缩略图 if ( $item === '.' || $item === '..' || strstr ( $item , '.db' )) { continue ; } // 文本图片的宽 $twidth = 570; // 文本图片的高 $theight = 141; // 获取图片名 $pathinfo = pathinfo ( $item ); $filename = $pathinfo [ 'filename' ]; // 初始化图片对象 $text = new imagick; // 初始化绘制对象 $draw = new imagickdraw; // 设置字体,这里是放到网站的font下的微软雅黑 $draw ->setfont( 'font/msyh.ttf' ); // 文字大小 $draw ->setfontsize(40); // 文字颜色 $draw ->setfillcolor( new imagickpixel( '#000000' )); // 文字对齐方式 $draw ->settextalignment(imagick::align_left); // 获取文字信息,主要是长宽,因为要实现在图片居中 $a = $text ->queryfontmetrics( $draw , $filename ); // 添加文字 $draw ->annotation(( $twidth - $a [ 'textwidth' ]) / 2, 80, $filename ); // 建立图像 $text ->newimage( $twidth , $theight , new imagickpixel( '#ffffff' )); // 图片格式 $text ->setimageformat( 'png' ); // 绘制图片 $text ->drawimage( $draw ); // 新建一个空白图片用来做画布 $canvas = new imagick; $canvas ->newimage(570, 661, 'white' ); $canvas ->setimageformat( 'png' ); // 读取图片 $pic = new imagick; $pic ->readimage(root . '/_a/' . $item ); $pic ->scaleimage(470, 470, true); // 将图片合并到画布 $canvas ->compositeimage( $pic , imagick::composite_over, 50, 50); // 将文字合并到画布 $canvas ->compositeimage( $text , imagick::composite_over, 0, 520); // 保存图片到另一目录 $canvas ->writeimage(root . '/com_a/' . $item ); $k ++; echo "{$k} files proceeded.\n" ; } |
效果图
第三步:
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
|
// step3: 合并每20张到一页 // 扫描目录 $files = scandir(root . '/com_a' ); // 给图片分组 $i = $j = 0; $group = array (); foreach ( $files as $item ) { if ( $item === '.' || $item === '..' || strstr ( $item , '.db' )) { continue ; } $i ++; $group [ $j ][] = $item ; if ( $i % 20 === 0) { $j ++; } } $total = count ( $group ); // 按组拼接图片,a4纸尺寸,4x5的组合方式 foreach ( $group as $k => $v ) { $canvas = new imagick; $canvas ->newimage(2480, 3508, 'white' ); $canvas ->setimageformat( 'png' ); $i = $j = 0; foreach ( $v as $item ) { $im = new imagick(root . '/com_a/' . $item ); // 预留了150的左边距 $x = 150 + $i * 570; // 130的顶边距 $y = 130 + $j * 661; $canvas ->compositeimage( $im , imagick::composite_over, $x , $y ); // 每4张一行 if (( $i + 1) % 4 === 0) { $i = 0; $j ++; } else { $i ++; } } $canvas ->writeimage(root . '/merge_a/' . $k . '.png' ); $c = $k + 1; echo "group {$c}/{$total} done.\n" ; } |
效果图
希望本文所述对大家php程序设计有所帮助。