Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Animations and Layers editor
#2
(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)

   

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.
Reply


Messages In This Thread
Animations and Layers editor - by SeanRickard - 01-24-2024, 08:26 AM
RE: Animations and Layers editor - by Ofnuts - 01-24-2024, 05:31 PM
RE: Animations and Layers editor - by SeanRickard - 01-25-2024, 05:50 AM

Forum Jump: