With the attached gimp lua script. Select Gimp as export.
The only format supported is tiff, but it export in jpg or sometimes in
exr!!!
Probably due to the recent lua changes (was working yesterday IIRC).
--
Pascal Obry / Magny Les Hameaux (78)
The best way to travel is by means of imagination
http://v2p.fr.eu.org
http://www.obry.net
gpg --keyserver keys.gnupg.net --recv-key F949BD3B
--
-- This script is to be used with darktable. It exports an image in
-- TIFF format and launch The Gimp to do the final editing.
--
-- The image loaded in Gimp is stored into a temporary folder. It is
-- expected that the user will export/save it into the right location.
--
-- Note that at this point Gimp only supports 8bits editing. So even
-- exporting in 16bits-TIFF there will be lost of information in Gimp.
-- 16bits editing will be supported starting with Gimp 3.0.
dt = require "darktable"
-- the preference
function store_callback(storage,image,format,filename,num,total,high_quality,extra_data)
command = "gimp "..filename
os.execute(command)
end
function supported_callback(storage,format)
fmt = string.lower(format.name)
if string.match(fmt,"tiff") == nil then
return false
else
return true
end
end
dt.register_storage("module_gimp","Gimp",store_callback,nil,supported_callback,nil)
------------------------------------------------------------------------------
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
_______________________________________________
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel