I am using Imagemagick with PHP and want to get the position of the layer (x,y) but dont know how.

I read the PSF file in PHP and read every layer in it like this:

for ($i = 0, $num_layers = $im->getNumberImages(); $i < $num_layers; ++$i) { ...
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted
<?php

for ($i = 0, $num_layers = $im->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"]."<br/>\n");
    print("w,h: " + $pagedata["width"].", ".$pagedata["height"]."<br/>\n");

    //export layer
    //$im->writeImage('layer_' . $i . '.png');
}

?>
link|improve this answer
thanks, that was exactly what i wanted =) – Daniel Ruf Jul 24 '11 at 11:58
For even more metadata use foreach($im->getImageProperties("*") as $k => $v) print("$k: $v<br/>\n"); – micha Jul 24 '11 at 14:35
i already use getImageProperties but how to fetch also the comment of the psd file if you set one in the graphics program? – Daniel Ruf Jul 24 '11 at 15:45
I'm sorry, you can't with ImageMagick AFAIK. You also can't extract slices, guides, text layers .. well .. basically nothing but rasterized layers WITH pixels (empty layers doesn't show up) .. – micha Jul 24 '11 at 16:16
or just plain php and reading some header of the bytecode from the image directly? – Daniel Ruf Jul 24 '11 at 16:20
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.