It is currently Fri Apr 26, 2024 6:12 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 29 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 1:16 pm  (#11) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Yeah that is gimp-2.8 not gimp-2.9.
Any link to a tarball?

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 1:38 pm  (#12) 
Offline
GimpChat Member
User avatar

Joined: Oct 29, 2010
Posts: 711
Location: Netherlands
No Rod it'll d/l the latest source.
When you open the the configure file (I think) you'll find 2.9.1 somewhere.
I am now in my regular install,need to reboot into the other one to make sure where it is located.
But this morning I tried again it's very unstable.
Gerard.

Edit: It's in the configure.ac file at the top.

_________________
Gentoo Linux always up-to-date.
Kernel-3.17.4 Python-2.7.8/3.3.5
Gimp-2.8.14

I use Linux only.
And Virtualbox with Win 7


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 2:21 pm  (#13) 
Offline
GimpChat Member

Joined: Feb 22, 2012
Posts: 295
Location: Germany
I've learned something about git today (and yesterday...)
If you use "git clone", you clone the whole git repository. There are all versions (Branches) included.
The first choosen branch is "master", this is currently 2.9.1.
I have downloaded a gui-tool for git, I don't like the command prompt...
I "fetched" repository yesterday, "checked out" the branch gimp-2-8, this is currently gimp-2.8.1, there where some changes
(patches) in this branch, so I have the current version of gimp (2.8.1) compiled.
Today I "fetched" again the changes in repository, "cheked out" master, this is gimp-2.9.1 with the latest patches applied.
I'm compiling it right now. There where some errors, so I had to do some minor changes on code.
In this minute it is almost ready, then I will test.
What you need is the lates babl-0.1.11 with the latest patches, because there are some functions added, that gimp-2.9.1 references to. I used "git clone" for babl also...
Then there was an #include <gegl.h> missing in app/gui/gui-unique.c and in app/dialogs/lebl-dialog.c (new) there was used the function sleep(1), which is unknown to windows, I changed it to g_usleep(1000000) (sleep sleeps in seconds, g_usleep sleeps for microseconds) I will see...
There is still work to do on the way to gimp-2.10, but it will be cooooooool :-)

Hatti


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 2:33 pm  (#14) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Okay, and thanks guys. :)
I don't use GIT much and it's a bit different then what i am used to.

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 2:48 pm  (#15) 
Offline
Script Coder

Joined: Apr 10, 2011
Posts: 532
gerard82 wrote:
@dd,
If you use --prefix=/opt maybe it can't find ../lib/pkgconfig.
That is where gimp goes looking for babl and gegl version.
I wrote about compiling from git a while ago.
http://www.gimpchat.com/viewtopic.php?f=24&t=1261
Good luck,
Gerard.


No I think if that were the case it'd throw and error already at .configure I think? I've set the environment vars and compiled babl + gegl in the correct directory (I compiled both with --prefix=/opt/goat) and then configured gimp with the same prefix, it configured fine but when I try to make I get errors... I'll have to try to run it again to see what the errors are exactly.

Onkel Hatti wrote:
've learned something about git today (and yesterday...)
If you use "git clone", you clone the whole git repository. There are all versions (Branches) included.


Yeah that's what confused me about git at first too... but it's actually pretty neat when you get used to it.


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 2:52 pm  (#16) 
Offline
Script Coder

Joined: Apr 10, 2011
Posts: 532
Ok this is the error I'm getting from make:

Making all in .
make[4]: Entering directory `/home/vesa/tmp/gimp/app'
  CCLD   gimp-2.9
  CCLD   gimp-console-2.9
gegl/libappgegl.a(gimp-babl.o): In function `gimp_babl_format_get_base_type':
gimp-babl.c:(.text+0x864): undefined reference to `babl_format_get_model'
gegl/libappgegl.a(gimp-babl-compat.o): In function `gimp_babl_format_get_image_type':
gimp-babl-compat.c:(.text+0x24): undefined reference to `babl_format_get_model'
collect2: ld returned 1 exit status
make[4]: *** [gimp-console-2.9] Error 1
make[4]: *** Waiting for unfinished jobs....
gegl/libappgegl.a(gimp-babl.o): In function `gimp_babl_format_get_base_type':
gimp-babl.c:(.text+0x864): undefined reference to `babl_format_get_model'
gegl/libappgegl.a(gimp-babl-compat.o): In function `gimp_babl_format_get_image_type':
gimp-babl-compat.c:(.text+0x24): undefined reference to `babl_format_get_model'
collect2: ld returned 1 exit status
make[4]: *** [gimp-2.9] Error 1
make[4]: Leaving directory `/home/vesa/tmp/gimp/app'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/vesa/tmp/gimp/app'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/vesa/tmp/gimp/app'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/vesa/tmp/gimp'
make: *** [all] Error 2


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 3:05 pm  (#17) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Looks like you need to update GEGL and/or BABL.

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 3:07 pm  (#18) 
Offline
GimpChat Member

Joined: Feb 22, 2012
Posts: 295
Location: Germany
Yes, thats right. You need the latest patches for babl, there are the new functions included.
I used git for that...


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 3:13 pm  (#19) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
Onkel Hatti, did you get a successful build?
If so how does it run for you? :)

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 3:36 pm  (#20) 
Offline
Script Coder

Joined: Apr 10, 2011
Posts: 532
Hm, so the versions of gegl + babl that worked for 2.8 won't work for 2.9?

Ok then...


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 3:41 pm  (#21) 
Offline
GimpChat Member

Joined: Feb 22, 2012
Posts: 295
Location: Germany
Yes, I got a successful build.
First tests: very unstable.
Loading a picture.
Changing precision to 16 Bit
changing colors (by "Values") -> crash
Painting works but is very slow.
still lots of testing. More maybe tomorrow...


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 3:45 pm  (#22) 
Offline
GimpChat Member

Joined: Feb 22, 2012
Posts: 295
Location: Germany
dd wrote:
Hm, so the versions of gegl + babl that worked for 2.8 won't work for 2.9?

Ok then...

almost...
As I said, there are some functions missing in Babl 0.1.11
There were changes in Babl on, I think 5th may. If you got your Babl later - voila.
If not (as I expect), you have to get Babl source with the latest patches, then compile it.
It will go, believe me, I did it and it worked (Have a look at the babl git repository)
The version didn't change, it is still 0.1.11, so this can be confusing.
Missing functions, hmm, I would call it 0.1.12...


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 4:01 pm  (#23) 
Offline
Script Coder

Joined: Apr 10, 2011
Posts: 532
Yeah, it works now! Thanks guys!

I tried the 16-bit mode with some gradients, it looks real nice but it's a bit buggy... some stray pixels show up that shouldn't be there.


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 4:08 pm  (#24) 
Offline
GimpChat Member
User avatar

Joined: Oct 29, 2010
Posts: 711
Location: Netherlands
dd wrote:
Hm, so the versions of gegl + babl that worked for 2.8 won't work for 2.9?

Ok then...

That's what I used w/o any such messages.
From your error log I see that you d/led to your home directory.
Why not to /root ?
And do the compiling as root too,don't use sudo.
Don't worry about getting hacked,this is Linux.
Gerard.

_________________
Gentoo Linux always up-to-date.
Kernel-3.17.4 Python-2.7.8/3.3.5
Gimp-2.8.14

I use Linux only.
And Virtualbox with Win 7


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 6:41 pm  (#25) 
Offline
Script Coder

Joined: Apr 10, 2011
Posts: 532
gerard82 wrote:
dd wrote:
Hm, so the versions of gegl + babl that worked for 2.8 won't work for 2.9?

Ok then...

That's what I used w/o any such messages.
From your error log I see that you d/led to your home directory.
Why not to /root ?
And do the compiling as root too,don't use sudo.
Don't worry about getting hacked,this is Linux.
Gerard.


Because I like to keep stuff in my home.
This is Linux, you can use it the way that feels best for you...


On another note, I tried to uncheck "use gegl" just to see what happens, and it crashed gimp... guess they really have ported it to use gegl only then :D


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Tue May 08, 2012 10:57 pm  (#26) 
Offline
GimpChat Member

Joined: Jul 11, 2010
Posts: 349
Just noticed that samj has 2.9.1 compiled in a Virtual Box package. Might be of interest to you.

"Here is a new version of VirtualBox running GimpEVAL. Cette version est faite avec la distribution Ubuntu "Xubuntu 12.04 LTS (Precise Pangolin)". This version is made with the Ubuntu distribution "Xubuntu 4.12 LTS (Precise Pangolin)."

http://samjcreations.blogspot.com/


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Wed May 09, 2012 2:00 am  (#27) 
Offline
GimpChat Member
User avatar

Joined: May 16, 2010
Posts: 14709
Location: USA
I am downloading Sams Gimp-2.8 32 bit portable now. Thanks! :)

_________________
Image
Edmund Burke nailed it when he said, "The only thing necessary for the triumph of evil is for good men to do nothing."


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Wed May 09, 2012 2:08 pm  (#28) 
Offline
GimpChat Member
User avatar

Joined: Oct 29, 2010
Posts: 711
Location: Netherlands
I d/led gimp-2.9.1 again together with babl-0.1.11 and gegl-0.2.0.
I enabled 16bit float and I have no color management.
But paint brush lags behind,selections work normal.
I wish the devs would give this priority otherwise nobody will upgrade I think.
Gerard.

_________________
Gentoo Linux always up-to-date.
Kernel-3.17.4 Python-2.7.8/3.3.5
Gimp-2.8.14

I use Linux only.
And Virtualbox with Win 7


Top
 Post subject: Re: working 16 bit mode (gimpusers)
PostPosted: Wed May 09, 2012 2:49 pm  (#29) 
Offline
GimpChat Member
User avatar

Joined: Jan 13, 2011
Posts: 2247
Location: Poland
I'm testing GIMP 2.9 from 05/05/2012 (Ubuntu 12.04 64 bit).
The version is very unstable (for me no rules when it suddenly turns off) - but I'm glad that there is a chance for very rapid development "Goat Invasion"
I think maybe in a few months everything will be OK.
So far - the effort to install - just for curiosity ...

_________________
Image

Slava
Ukraini!


Top
Post new topic Reply to topic  [ 29 posts ]  Go to page 1, 2  Next

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts Attachment(s) layer mode preview stopped working

3

No new posts Open images in RGB mode automatically

1

No new posts Attachment(s) New GEGL Extrusion filter - USE THE BEHIND BLEND MODE!

18

No new posts Script-fu skip run-mode parameter (solved)

6

No new posts Attachment(s) Dodge blending mode but with gradient fade?

12



* Login  



Powered by phpBB3 © phpBB Group