It is currently Tue Aug 25, 2026 5:36 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 8 posts ] 
Author Message
 Post subject: Colorify in Gimp 2.10
PostPosted: Sat Jun 09, 2018 11:03 am  (#1) 
Offline
GimpChat Member
User avatar

Joined: Aug 08, 2016
Posts: 2861
Location: East Midlands of England
Attachment:
Colorify_For_Gimp_2_point_10.zip [1.58 KiB]
Downloaded 586 times


The Colorify option is no longer in the Color menu in Gimp 2.10.

This very simple plugin places an option in the Color/Colour menu and calls the Colorify plugin with whichever colour you select.

_________________
Image
"Let no one steal your dreams."
Paul Cookson

Custom Font Links
2.10 Tools
Character Paths
White Bases


Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: Colorify in Gimp 2.10
PostPosted: Sat Jun 09, 2018 2:48 pm  (#2) 
Offline
GimpChat Member
User avatar

Joined: Apr 15, 2017
Posts: 1837
Perhaps I'm mistaken, but doesn't "Colorize" do the same thing? it is in the color menu in Gimp 2.10x.

Attachment:
colorize.jpg
colorize.jpg [ 327.84 KiB | Viewed 5881 times ]


Top
 Post subject: Re: Colorify in Gimp 2.10
PostPosted: Sat Jun 09, 2018 4:56 pm  (#3) 
Offline
Script Coder
User avatar

Joined: Oct 25, 2010
Posts: 4812
Skinnyhouse wrote:
Attachment:
Colorify_For_Gimp_2_point_10.zip


The Colorify option is no longer in the Color menu in Gimp 2.10.

This very simple plugin places an option in the Color/Colour menu and calls the Colorify plugin with whichever colour you select.


You can still get Colorify using the new search capability (enter '/'-'c'-'o'-'l'-'o'-'r'-'i'-... and it will show in the list (if it is compatible with the current image type of course)...

Several old plugins have been partially removed (still there, but unreachable from menus). It seems this was made on purpose, since a bug about this has been closed. See here (you can try to reopen the bug...).

_________________
Image


Last edited by ofnuts on Sun Jun 10, 2018 2:54 pm, edited 1 time in total.

Top
 Post subject: Re: Colorify in Gimp 2.10
PostPosted: Sun Jun 10, 2018 2:30 am  (#4) 
Offline
GimpChat Member

Joined: Mar 04, 2011
Posts: 2613
Quote:
....See [url]here[/url]...


is https://gitlab.gnome.org/GNOME/gimp/issues/1596

hate those hidden urls ;)


Top
 Post subject: Re: Colorify in Gimp 2.10
PostPosted: Sun Jun 10, 2018 3:00 am  (#5) 
Offline
GimpChat Member
User avatar

Joined: Aug 08, 2016
Posts: 2861
Location: East Midlands of England
Before your posts Ofnuts and Rich I just assumed that Colorify was in the process of being down-graded and the plug-in would be marked soon as 'deprecated'. I think that is what the line is on GitLab - although some of the responses did seem a bit sniffy (sensitive moi). It will not be difficult to emulate the process in code when they do pull the plug(in) on it so we will wait and see.

Anyway I just thought this menu addition could be useful to one or two people before they do.

BTW Racer: You're absolutely right but, personally, I have never found the Colorize option to be particularly intuitive to use. I tend to have a particular colour in mind when I want to add a new tint or tone and Colorify is usually my preferred quick and lazy option.

_________________
Image
"Let no one steal your dreams."
Paul Cookson

Custom Font Links
2.10 Tools
Character Paths
White Bases


Top
 Post subject: Re: Colorify in Gimp 2.10
PostPosted: Sun Jun 10, 2018 3:36 am  (#6) 
Offline
GimpChat Member

Joined: Mar 04, 2011
Posts: 2613
Back to what I mentioned earlier.

Harvest the ones (compiled plugin) you need from Gimp 2.8

Put them in your Gimp 2.10 profile plug-in folder. Might not be the politically correct way, but at least they appear in the menu structure.


Top
 Post subject: Re: Colorify in Gimp 2.10
PostPosted: Sun Jun 10, 2018 3:45 pm  (#7) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2648
Location: Poland
Still another (old) solution - an interactive call...

#!/usr/bin/env python
#-*- coding: utf-8 -*-
from gimpfu import *
def plugin_main(image, layer):
    pdb.plug_in_colorify(image, layer, (1, 1, 1, 1), run_mode=RUN_INTERACTIVE)
register(
    "python_fu_colorify",
    "Calls the Colorify plugin",
    "Calls the Colorify plugin in Gimp 2.10",
    "Skinnyhouse/MrQ",
    "GPL",
    "2018",
    "<Image>/Colors/Colorify...",
    "*",
    [],
    [],
    plugin_main)
main()


Attachments:
Colorify - interactive.png
Colorify - interactive.png [ 162.8 KiB | Viewed 5784 times ]
Colorify_Run_Interactive.zip [414 Bytes]
Downloaded 305 times

_________________
Image
Top
 Post subject: Re: Colorify in Gimp 2.10
PostPosted: Sun Jun 10, 2018 4:41 pm  (#8) 
Offline
GimpChat Member
User avatar

Joined: Aug 08, 2016
Posts: 2861
Location: East Midlands of England
Of course - a much better solution than mine.

_________________
Image
"Let no one steal your dreams."
Paul Cookson

Custom Font Links
2.10 Tools
Character Paths
White Bases


Top
Post new topic Reply to topic  [ 8 posts ] 

All times are UTC - 5 hours [ DST ]


cron

* Login  



Powered by phpBB3 © phpBB Group