On Wed, May 30, 2012 at 7:44 PM, stephen <for...@gimpusers.com> wrote:
> I created a jigsaw puzzle from an image.  All the pieces exist in different 
> layer.
>
> Is there a way to get the position of the pieces (a script or a menu 
> command)?  I realize I could use the ruler, however, I would like something 
> that would be more exact and less tedious.

With only one image open, from the python-fu console:

img = gimp.image_list()[0]

for layer in img.layers:
    print layer.name, layer.offsets

Chris
_______________________________________________
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list

Reply via email to