I use Imagemagick with PHP and want to get the position of the layer (x, y), but I donโt know how to do it.
I read the PSD file in PHP and read each layer of it as follows:
for ($i = 0, $num_layers = $im->getNumberImages(); $i < $num_layers; ++$i) { ...
php imagemagick psd
Daniel Ruf
source share