Last active
May 23, 2016 04:28
-
-
Save paperdigits/21ad48ec7cb689436d06cf9ff5c88a38 to your computer and use it in GitHub Desktop.
Workflow charts for photograhy related free software tools.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph { | |
node[shape="box"] | |
// splines=line; | |
// subgraph import_tools { | |
// label="Import tools"; | |
// file_manager_copy; | |
// rapid_photo_downloader; | |
// digikam; | |
// shotwell; | |
// filmulator | |
// } | |
// subgraph raw_editor { | |
// label="Raw editors"; | |
// rawtherapee; | |
// darktable; | |
// ufraw; | |
// } | |
// subgraph pixel_editors { | |
// label="Pixel editors"; | |
// gimp; | |
// } | |
{rank=same; | |
sdcard camera_wifi | |
} | |
{rank=same; | |
file_manager_copy rapid_photo_downloader digikam shotwell filmulator | |
} | |
{rank=same; | |
rawtherapee darktable ufraw | |
} | |
{rank=same; | |
gimp krita gmic | |
} | |
sdcard -> { file_manager_copy rapid_photo_downloader digikam shotwell filmulator }; | |
camera_wifi -> airnef; | |
airnef -> file_manager_copy; | |
file_manager_copy -> { rawtherapee darktable ufraw }; | |
rapid_photo_downloader -> { rawtherapee darktable ufraw }; | |
digikam -> { rawtherapee darktable ufraw }; | |
shotwell -> { rawtherapee darktable ufraw }; | |
{ rawtherapee darktable ufraw } -> gimp; | |
{ rawtherapee darktable ufraw } -> krita; | |
{ rawtherapee darktable ufraw } -> gmic; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment