06-28-2019, 09:55 AM
(This post was last modified: 06-28-2019, 09:57 AM by aKAndrew1234.)
Thank you for your response, I thought this was part of core GIMP batch mode, not a plugin. I couldn't get the plugin to work with 2.10, so looked into command line batch mode. I have been able to edit the code in the plugin to work with 2.10.
In the script file http://gimpfr.org/contrib_photolabo.php#CurveBatch on line 54 it needed to be changed to :
As the new GIMP Curve export file has changed the title of the file within the curve file.
In the script file http://gimpfr.org/contrib_photolabo.php#CurveBatch on line 54 it needed to be changed to :
PHP Code:
Line 54
if lines[0] == "# GIMP curves tool settings\n":
change to:
if lines[0] == "# GIMP 'Curves' settings\n":
As the new GIMP Curve export file has changed the title of the file within the curve file.