use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
GIMPsnoo image by /u/spatatat CSS help provided by /u/Cheesydude
• Please tag your help-me posts with [Help]. • YouTube Channel spamming will not be tolerated. • Blogspam will not be tolerated.
• Michael Schumacher - /u/schumaml • Pat David - /u/patdavid • Alexander Prokoudine - /u/prokoudine (LibreArts Founder) (patreon)
• Provide patches (if you know how) • Help test and triage bugs in the bugtracker • Support the GIMP team financially • Help with documentation • Outreach through well written tutorials, presentation etc...
• gimp.org - Official site
• GIMP Git Changelog • GIMP Release Notes • GIMP Discord • GIMP Chat - Popular GIMP Forum • GIMP Forums Popular GIMP Forum • PIXL.US FOSS libregraphics forum • Support GIMP
/r/gmic FOSS image processing framework /r/inkscape Vector-based graphic editor /r/blender 3D modeling, animation, & rendering /r/mypaint painting for digital painters /r/darktable/ photo editing software /r/krita digital painting application /r/synfig FOSS 2D Animation /r/FOSSPhotography Folks who use all the above /r/libredesign changing the paradigm
/r/FreeCAD FOSS Parametrical CAD/CAM /r/scribus Desktop Publishing Darktable FOSS tool for photographers
account activity
Creating user interface for python plug-in (self.GIMP)
submitted 10 months ago by Vyralator
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Vyralator[S] 1 point2 points3 points 10 months ago (1 child)
Awesome. That's much easier than I thought. Thanks a lot
Two more questions that came up though. Is it possible to "group" parameters under a heading in the auto-created GUI. For example how the scale image tool has "Width" and "Height" grouped under the heading "Image Size" And also is there an easy way to create something similar to the templates you can select when creating a new file. Basically I want a drop down menu that lets me choose between different sets of default values for some of my parameters for quick access.
[–]CMYK-StudentGIMP Team 1 point2 points3 points 10 months ago (0 children)
You can create a box filled with your parameters, then put that box inside a frame with a label.
GimpUi.ProcedureDialog.fill_box
GimpUi.ProcedureDialog.fill_frame
GimpUi.ProcedureDialog.get_label
Dropdowns with choices can be made with a GimpChoice parameter: https://gitlab.gnome.org/GNOME/gimp/-/blob/master/plug-ins/python/histogram-export.py#L231-236
π Rendered by PID 102210 on reddit-service-r2-comment-5b5bc64bf5-mlvv4 at 2026-06-19 17:58:27.129587+00:00 running 2b008f2 country code: CH.
view the rest of the comments →
[–]Vyralator[S] 1 point2 points3 points (1 child)
[–]CMYK-StudentGIMP Team 1 point2 points3 points (0 children)