Note de ce sujet :
  • Moyenne : 0 (0 vote(s))
  • 1
  • 2
  • 3
  • 4
  • 5
Interaction 32 bit entre Darktale et GIMP
#10
Après un peu de ménage, ma config qui fonctionne est hyper simple :

un fichier luarc qui contient juste     require "gimp"   dans .config/darktable

et le fichier gimp.lua dans .config/darktable/lua

Il contient :

dt = require "darktable"
dt.register_storage("module_gimp","gimp",
function(storage,image,format,filename,number,total,high_quality,extra_data)
dt.print(tostring(number).."/"..tostring(total))
end,
function(storage,image_table,extra_data)
dt.print_error("Will try to send to Gimp now")
command = "gimp -a "
for _,v in pairs(image_table) do
command = command..v.." "
end
dt.print_error("this is the command: "..command)
os.execute(command)

dt.print("gimp image in "..dt.configuration.tmp_dir)
end
)

 

Après avoir relancé Darktable, vous devez trouver une ligne gimp dans exporter sélection stockage cible.  Mettre tif dans le format de fichier.

 
Répondre


Messages dans ce sujet
Interaction 32 bit entre Darktale et GIMP - par marc - 01-01-17, 15:54

Atteindre :


Utilisateur(s) parcourant ce sujet : 1 visiteur(s)