Home > php教程 > php手册 > php生成psd缩略图

php生成psd缩略图

WBOY
Release: 2016-06-13 10:42:47
Original
1702 people have browsed it

1.psd文件为Photoshop的文件格式,浏览器不能直接显示,有个需求要将生成psd文件的预览图,Google了几天未找到可用的代码,遂自己研究了下,最终找到了解决方法,先将psd导出为jpg文件,然后再对其生成缩略图,这样就容易多了。

2.需使用到php的一个开源库:imagemagick,安装方法:Google中搜索“ImageMagick php windows 安装”,当然如果你是Linux的话,将Windows替换为Linux即可。

3.安装好了,关键是如何使用,经过几个小时的折腾,最终实现了转换,非常简单:

$mw= NewMagickWand();
MagickReadImage($mw, 123.psd);
MagickResetIterator($mw);
MagickWriteImage($mw,"123.jpg");


 

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template