码迷,mamicode.com
首页 > Web开发 > 详细

php imagick 获取psd图层信息

时间:2019-11-16 12:50:59      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:EDA   exit   输出   int   容器   ber   获取   数组   project   

php imagick 获取psd图层信息
<pre>
<?php
$projectname = ‘test‘;
$im = new Imagick("test.psd");
$num_layers = $im->getNumberImages();

for ($i = 1, $num_layers = $im->getNumberImages(); $i < $num_layers; ++$i) {

$im->setImageIndex($i); //this
$im->setIteratorIndex($i); //or this is kinda redundant


$pagedata = $im->getImagePage();
$pagedata[‘label‘] = $im->getImageProperties("*")[‘label‘];
$allinfo[] =$pagedata;
$im->writeImage($pagedata[‘label‘] . ‘.png‘); //导出所有图层到单独的png文件

}

print_r($allinfo);
exit();
</pre>


输出数组如下
width是图片宽度
height是图片高度
x和y都是图片相对于容器的位置
label是图层名字 一般用英文 不会乱码
<pre>
Array
(
[0] => Array
(
[width] => 750
[height] => 1206
[x] => 0
[y] => 0
[label] => bg
)

[1] => Array
(
[width] => 346
[height] => 260
[x] => 292
[y] => 472
[label] => wef1
)

[2] => Array
(
[width] => 269
[height] => 221
[x] => 49
[y] => 40
[label] => wef
)

)
</pre>

<a href="http://newmiracle.cn/test.psd">test.psd文件下载地址</a>

php imagick 获取psd图层信息

标签:EDA   exit   输出   int   容器   ber   获取   数组   project   

原文地址:https://www.cnblogs.com/newmiracle/p/11871353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!