Gimp-Forum.net

Full Version: Animations and Layers editor
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm new here, so hi.

After optimising for an animation, is there a way of exporting the list showing in the Layers Editor as a text fiile?

For Example:
----------------

img001.jpg(100ms)
img002.jpg(2000ms)
img003.jpg(200ms)
.... etc

cheers Sean.
(01-24-2024, 08:26 AM)SeanRickard Wrote: [ -> ]I'm new here, so hi.

After optimising for an animation, is there a way of exporting the list showing in the Layers Editor as a text fiile?

For Example:
----------------

img001.jpg(100ms)
img002.jpg(2000ms)
img003.jpg(200ms)
.... etc

cheers Sean.

Obtain the image ID from the image window title bar (in single windows mode, make sure this is the active image)

[attachment=11057]

Open the Python console, and copy paste this, and replace the "5"  by the actual image ID. Strike [Enter] until a list appears:

Code:
for layer in reversed([img for img in gimp.image_list() if img.ID==5][0].layers): print layer.name

Copy-paste the result.
Awesome, that hit the spot, cheers Sean.