Skip to main content

Converting PSD with PHP/ImageMagick

After seeing feature rich options in Imagick PECL extension at Mikko Koppanen's (the author) website and also impressed with ImageMagick's features, I have decided to use it for the PSD to XHTML conversion website that I'm architecting and managing.

Since, the team wants programming help for converting PSD images, I have tried it (documentation is sparse on PSD handling)

Converting PSD to PNG/JPEG/etc


Note that, flattenImages() is needed for layered/multi-page PSD file.


<?php
$im = new Imagick('test.psd');
$im->flattenImages();
$im->setImageFormat('png');
$im->writeImage('test.png');
?>



Extracting PSD layers


One by one



<?php
$im = new Imagick('test.psd');
$im->setImageFormat('png');
for ($i = 0, $num_layers = $im->getNumberImages(); $i < $num_layers; ++$i) {
$im->setImageIndex($i);
$im->writeImage('layer' . $i . '.png');
}
?>


Note that, there is a better version below

In a single call with writeImages()



<?php
$im = new Imagick('test.psd');
$im->setImageFormat('png');
$im->writeImages('layer%d.png', true);
?>


Note: Second parameter of writeImages() is for adjoin

Bug

While doing so and comparing with the results of XnView, I have noted a same problem/issue as mentioned here in the forum--that is, most of the extracted layers/images are distorted. By the way, I have tried in WAMP and yet to try it in LAMP

Comments

Rinto Geroge said…
Great work Rajesh ,Thanks anyway
Rinto said…
Rajesh,I am experiencing some problem while exporting psd to png ,looses the resolution .Actually I converted 500 dpi psd to png ,but got 72 dpi png .How can keep the resolution ?
Rinto:

After second thought, you'd be better off with the command line "convert" instead of this extension

Popular posts from this blog

Humble Award - Dr. A.N. Sreevatsan

Dr. A.N. Sreevatsan , ENT specialist located in Adyar, Chennai is one of the gems available in medicines. No assistants in his consulting room and he'd take at least 15mins for every patients. So far I have referred many and all are happy with his approach. Every wannabe doctor should visit him personally to understand his approach. I wish him to be more famous than now. Update (2010-11-21) : Added link to Google Map Keywords : Sreevatsan, Srivatsan, ENT, Adyar, Chennai, Hospital, Doctor

Who is behind Puthiya Thalaimurai magazine?

I have noticed some incoming hits about Puthiya Thalaimurai magazine. When I first read the magazine, I've immediately taken 2-life subscription (one for me and another for my parents) because of its content. Though the magazine quality is still good, some people rumored the following (google and related sites confirm that too): SRM group is behind "Puthiya Thalaimurai" magazine They've launched India Jananayaka Katchi political party They're about to launch SRM TV channel

Spotify's Greenroom Vs. Clubhouse - Missing Text Chat and Other Impacts

We have Clubhouse clones from Twitter, Facebook, Reddit, and now Spotify. Unlike others, Spotify seems to target directly into the Clubhouse audience/members. It is extremely obvious inside Clubhouse as you can find many spammy clubs and rooms created to attract the Clubhouse users. Greenroom Vs. Clubhouse I was stumbled upon one such room Clubhouse influencers are jumping off to Greenroom? - All things Hollywood . Few takeaways from the room are: Text chat is not available in Clubhouse, whereas it is available in Greenroom. This is the most talked-about USP. The recording feature is not available in Clubhouse and the same is available in Greenroom. Spotify has opened up a creator fund for Greenroom creators in the USA. However, I think, there are better indirect monetization options available for Clubhouse users. Stream's chat component & million-dollar opportunity? As I tweeted , Clubhouse can quickly bring the text chat feature by using Stream's chat component . If they...