Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: So is GIMP STILL 8-bit color?

  1. #1
    Join Date
    Nov 2005
    Location
    Washington State
    Beans
    2,342
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    So is GIMP STILL 8-bit color?

    I thought that the latest version of GIMP (2.8.2 is what I have now, following these instructions from WEBUPD8) and there's still no "Precision" choice under Image.

    So this website indicates that 16-bit is ready if you're willing to do some compiling. I followed the link to the instructions. I've been hanging around Linux for a while now, but not ready to try all that on our daily-use PC.

    Besides, those instructions are months old, and for 2.8-RC1. I woulda thought 2.8.2 would be further along. Maybe they pulled 16-bit back out?

    Does anybody have the latest news on this?

    Maybe it's time to just give up and buy Photoshop for the Windows side of our dual-boot?

  2. #2
    Join Date
    Jan 2011
    Beans
    2

    Re: So is GIMP STILL 8-bit color??

    GIMP still doesn't have 16bit support out of the box with Ubuntu 12.10. The article you linked said 16 and 32 bit support were expected in the 2.10 release of GIMP. Considering we're still on 2.8 it might be a while before we see this update on 12.04 or 12.10 Ubuntu without compiling it ourselves or using a user PPA. There might be a nightly gimp available via PPA, you may want to look into that if you're interested.

    Also, another thing to note. Photoshop CS2 (and CS3?) seem to work flawlessly in WINE if you can't seem to get GIMP doing what you want it to.

  3. #3
    Join Date
    Jun 2007
    Beans
    17,337

    Re: So is GIMP STILL 8-bit color??

    Atm if nothing easier available then you could basically follow those instructions.
    Use git clone for all 3, - babl, gegl, gimp
    Change all instances of "gimp-2.8" to gimp-2.9 in the instru's
    Should work ok. You don't need to remove current gimp, they can co-exist

    An alt. to some of the instru's
    You could just build locally in your Home folder some where instead of temp & keep the builds/sources for updating or make uninstall
    With proper naming you could likely use checkinstall instead of make install
    Attached Images Attached Images

  4. #4
    Join Date
    Mar 2006
    Location
    North Carolina
    Beans
    657

    Re: So is GIMP STILL 8-bit color??

    Quote Originally Posted by mc4man View Post
    Atm if nothing easier available then you could basically follow those instructions.
    Use git clone for all 3, - babl, gegl, gimp
    Change all instances of "gimp-2.8" to gimp-2.9 in the instru's
    Should work ok. You don't need to remove current gimp, they can co-exist

    An alt. to some of the instru's
    You could just build locally in your Home folder some where instead of temp & keep the builds/sources for updating or make uninstall
    With proper naming you could likely use checkinstall instead of make install
    I have followed the same set of instructions as Bartender indicated plus your hints. My install is in a folder in my home directory. After using git to acquire gimp, babl, and gegl, I got through the babl compile. However, with the gegl compile (actually on the autoconfig step), I am told I need GLIB 2.28.0 or better. I am on Precise and my system is up to date. Will installing GLIB 2.28.0 break something? The only PPAs I use are for darktable, hugin, and Canonical Partners.

    Thanks for your help. I'm new at compiling from source.

  5. #5
    Join Date
    Sep 2008
    Location
    Italy
    Beans
    96
    Distro
    Ubuntu Studio 12.04 Precise Pangolin

    Re: So is GIMP STILL 8-bit color??

    gimp 2.10 is close be patient!

    if you need to buy photoshop to get your work done, then that's what you should do, it would be an investment. plus they have other versions that aren't the "full package" which are much cheaper than the professional version with all the bells and whistles.

    But don't think that just because you have deeper color depth all of a sudden your photoshop skills will rise exponentially. believe me I'm a musician and I can tell you that using good equipment doesn't automagically make you good! (but it will make you better if you're already good)

  6. #6
    Join Date
    Dec 2011
    Location
    Manchester, UK
    Beans
    169
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: So is GIMP STILL 8-bit color??

    Quote Originally Posted by AstroLlama View Post
    gimp 2.10 is close be patient!

    But don't think that just because you have deeper color depth all of a sudden your photoshop skills will rise exponentially. believe me I'm a musician and I can tell you that using good equipment doesn't automagically make you good! (but it will make you better if you're already good)
    Agreed...
    Mutate and Survive...

  7. #7
    Join Date
    Mar 2006
    Location
    North Carolina
    Beans
    657

    Re: So is GIMP STILL 8-bit color?

    To AstroLlama and Futant:
    I appreciate your views, but that is not the question I asked. Perhaps I need to reenter this as a separate question. It's not just about higher bit depth, but better samples for downsizing as just one example. I could go on, but that would serve no purpose.

    Could anyone address my question as to whether installing GLIB 2.28.0 will cause problems in my environment?

  8. #8
    Join Date
    Jun 2007
    Beans
    17,337

    Re: So is GIMP STILL 8-bit color?

    Quote Originally Posted by cscj01 View Post
    To AstroLlama and Futant:
    I appreciate your views, but that is not the question I asked. Perhaps I need to reenter this as a separate question. It's not just about higher bit depth, but better samples for downsizing as just one example. I could go on, but that would serve no purpose.

    Could anyone address my question as to whether installing GLIB 2.28.0 will cause problems in my environment?
    I don't have 12.04 installed atm so don't know if a gimp 2.9+ build is viable but can say your glib version is already higher (better) than 2.28 (2.32

    make sure this is installed
    Code:
    sudo apt-get install libglib2.0-dev

  9. #9
    Join Date
    Mar 2006
    Location
    North Carolina
    Beans
    657

    Re: So is GIMP STILL 8-bit color?

    Quote Originally Posted by mc4man View Post
    I don't have 12.04 installed atm so don't know if a gimp 2.9+ build is viable but can say your glib version is already higher (better) than 2.28 (2.32

    make sure this is installed
    Code:
    sudo apt-get install libglib2.0-dev
    Thanks. That was what I needed.

  10. #10
    Join Date
    Mar 2006
    Location
    North Carolina
    Beans
    657

    Re: So is GIMP STILL 8-bit color??

    Quote Originally Posted by mc4man View Post
    Atm if nothing easier available then you could basically follow those instructions.
    Use git clone for all 3, - babl, gegl, gimp
    Change all instances of "gimp-2.8" to gimp-2.9 in the instru's
    Should work ok. You don't need to remove current gimp, they can co-exist

    An alt. to some of the instru's
    You could just build locally in your Home folder some where instead of temp & keep the builds/sources for updating or make uninstall
    With proper naming you could likely use checkinstall instead of make install
    I have Gimp 2.9 installed and working thanks to you. I do have a couple of questions. You mention a couple of alternate takes on the instructions. The first has to do with building in my home directory (which I did) and keeping the builds for updating and make uninstall. I'm not quite sure what this means. I know make uninstall will remove the install, but how do I go about updating? Does that involve doing a new git and going through the steps again? If so, do I remove the original gits?

    The second has to do with appropriate naming to use checkinstall instead of make install. What is involved here?

    Thanks for your help.

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •