From 3d0a37897c2152b38f101219e91468de720ec668 Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Wed, 19 Feb 2020 00:28:58 -0500 Subject: [PATCH] Add URL for Remove Halo plug-in in other repo. --- utilities/gimp/plug-ins/remove_halo.md | 49 ++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 utilities/gimp/plug-ins/remove_halo.md diff --git a/utilities/gimp/plug-ins/remove_halo.md b/utilities/gimp/plug-ins/remove_halo.md new file mode 100644 index 0000000..552e34d --- /dev/null +++ b/utilities/gimp/plug-ins/remove_halo.md @@ -0,0 +1,49 @@ +# Channel Tools + +https://github.com/poikilos/channel_tools.git + +## [git] - 2020-02-19 +### Removed +- This may have worked after additoinal fixes. + - https://www.youtube.com/watch?v=YHXX3KuB23Q (outdated) + - https://jacksonbates.wordpress.com/2015/09/14/python-fu-6-accepting-user-input/ +```python +register( + "python_fu_remove_halo", + "Remove Halo", + "Remove alpha", + "Jake Gustafson", "Jake Gustafson", "2020", + "Remove Halo", # caption + "RGBA", # RGB* would mean with or without alpha. + [ + (PF_SPINNER, "threshold", "Minimum alpha to fix", 254, (0, 255, 1)), + (PF_BOOL, "make_opaque", "Make the fixed parts opaque.", True), + (PF_DRAWABLE, "drawable", "Input layer", None), + ], + [], + remove_layer_halo, + menu="/Layer" +) +``` + +- This may be deprecated, even though it matches the docs. + - https://www.gimp.org/docs/python/index.html +```python +register( + "python_fu_remove_halo", + "Remove Halo", + "Remove Halo (Redo the edge)", + "Jake Gustafson", + "Jake Gustafson", + "2020", + "/Layer", + "RGBA", # RGB* would mean with or without alpha. + [ + (PF_SPINNER, "threshold", "Minimum alpha to fix", 254, (0, 255, 1)), + (PF_BOOL, "make_opaque", "Make the fixed parts opaque.", True), + (PF_DRAWABLE, "drawable", "Input layer", None), + ], + [], + remove_layer_halo +) +```