PHP: Get the position (x, y) of the layer of PSD file

后端 未结 1 1364
一个人的身影
一个人的身影 2020-12-29 17:16

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

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

相关标签:
1条回答
  • 2020-12-29 18:15
    <?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');
    }
    
    ?>
    
    0 讨论(0)
提交回复
热议问题