Batch export?

Hi

Is there any way to batch export multiple open files at once converting from Krita files to a different ype (e.g. Tiff, jpeg, etc), maybe through plugin or something?

1 Like

Should be possible with a plugin, but that has to be coded first, because I don’t know of an existing plugin that can do this.

Michelist

There’s Tools > Scripts > Export Layers… but it only exports in two formats: jpg and png.

If I had understood it correctly, @redrobin wants to export multiple files into different file-formats, not layers of a file?

Michelist

You are gonna need to use python api.

How to do it is even written in the scripting tutorial:

https://scripting.krita.org/lessons/documents

i believe the command line could help with this too

krita file.kra --export --export-filename final.jpg

but you have no control over exporting options other than the final format.
although it says linux command line you can use on windows too. you will just need to either put krita on your system path or put the path in the command when you run it like :

K:\KritaStuff\Portable\krita-nightly\bin\krita file.kra --export --export-filename final.png

your only other option is either to make a plugin or just a script for it like knowzero said.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.