PHP中使用Imagick操作PSD文件实例

前端之家收集整理的这篇文章主要介绍了PHP中使用Imagick操作PSD文件实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参考资料:

前提

代码如下:

获取图层数目

代码如下:
getNumberImages();

获取所有参数:

代码如下:
getNumberImages(); $i < $num_layers; ++$i) {

$im->setImageIndex($i); //this $im->setIteratorIndex($i); //or this is kinda redundant $pagedata=$im->getImagePage(); //print("x,y: " + $pagedata["x"].",".$pagedata["y"]."
\n"); //print("w,h: " + $pagedata["width"].",".$pagedata["height"]."
\n");

foreach($im->getImageProperties("*") as $k => $v) print("$k: $v
\n");

//export layer
//$im->writeImage('layer_' . $i . '.png'); //导出所有图层到单独的png文件
}

原文链接:https://www.f2er.com/php/22784.html

猜你在找的PHP相关文章