Gimp Plugin/fr: Difference between revisions

From RawPedia
Jump to navigation Jump to search
(page created)
 
 
(5 intermediate revisions by the same user not shown)
Line 2: Line 2:




This article describes how to make it possible to have GIMP open raw images by using RawTherapee.
Il est possible d'ouvrir des images raw dans GIMP en utilisant RawTherapee comme plugin.


It currently describes the method only for Linux. Windows and macOS users are invited to contribute.
= Requis =
* RawTherapee 5.3
* GIMP 2.9.6
* L'exécutable RawTherapee peut se trouver à partir de la variable d'environnement <code>$PATH</code>. Ce sera le cas si vous avez installé l'ensemble du système RawTherapee.


= Requirements =
= Utilisation =
* RawTherapee 5.2
Simplement ouvrir un fichier raw avec GIMP. Une fenêtre d'édition de RawTherapee devrait s'ouvrir automatiquement, vous pouvez l'utiliser pour peaufiner votre fichier raw. A la fermeture de la fenêtre, l'image est importée dans GIMP.
* GIMP 2.9.5
* The <code>file-rawtherapee</code> plugin
 
= Installation =
# Perhaps in the future the RawTherapee installer or even GIMP itself will contain the plugin. For now you must compile it yourself.
#* If you already have [[Linux#Clone_the_source|the source code]], go into the <code>tools/gimp-plugin</code> folder.
#* If you do not have the source code, just download these files: <code>[https://raw.githubusercontent.com/Beep6581/RawTherapee/dev/tools/gimp-plugin/file-formats.h file-formats.h]</code> and <code>[https://github.com/Beep6581/RawTherapee/raw/dev/tools/gimp-plugin/file-rawtherapee.c file-rawtherapee.c]</code>
# Compile the plugin: <code>gimptool-2.0 --build file-rawtherapee.c</code>
# Install the compiled plugin. To find GIMP's plugins folder run GIMP and look in Preferences > Folders > Plug-Ins. For example:
#* Install for the current user only: <code>cp file-rawtherapee ~/.config/GIMP/2.9/plug-ins</code>
#* Install for all users: <code>sudo cp file-rawtherapee /usr/lib/gimp/2.0/plug-ins</code>
# Let the plugin find RawTherapee by making sure that <code>rawtherapee</code> and <code>rawtherapee-cli</code> executables can be found on <code>$PATH</code>:
#* If you installed RawTherapee system-wide using a package manager, you're probably all set.
#* If you're running RawTherapee from some custom folder, e.g. <code>~/programs/rt</code> then you have two options:
## Either sudo-edit the <code>/etc/environment</code> file and add a line like this but with the correct path: <code>export PATH=$PATH:$HOME/programs/rt</code>
## Or symlink the executables into /usr/bin: <code>sudo ln -s ~/programs/rt/rawtherapee /usr/bin/rawtherapee && sudo ln -s ~/programs/rt/rawtherapee-cli /usr/bin/rawtherapee-cli</code>
# Lastly, setup GIMP. Go to Edit > Preferences > Image Import and make sure that "Raw Importer" is set to the file-rawtherapee plugin.
# Done.

Latest revision as of 07:45, 3 October 2017

Le plugin Gimp


Il est possible d'ouvrir des images raw dans GIMP en utilisant RawTherapee comme plugin.

Requis

  • RawTherapee 5.3
  • GIMP 2.9.6
  • L'exécutable RawTherapee peut se trouver à partir de la variable d'environnement $PATH. Ce sera le cas si vous avez installé l'ensemble du système RawTherapee.

Utilisation

Simplement ouvrir un fichier raw avec GIMP. Une fenêtre d'édition de RawTherapee devrait s'ouvrir automatiquement, vous pouvez l'utiliser pour peaufiner votre fichier raw. A la fermeture de la fenêtre, l'image est importée dans GIMP.