[Gimp-user] Wacom Tablet not working with GIMP

2012-09-17 Thread torreyproctor
Is their a way to get the pressure sensitivity of my Wacom Bamboo Capture 
tablet working with GIMP.  Is tablets pressure sensitivity still unavailable to 
GIMP 2.8.2 Mac OS X?

-- 
torreyproctor (via gimpusers.com)
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Wacom Tablet not working with GIMP

2012-09-17 Thread Patrick Shanahan
* torreyproctor for...@gimpusers.com [09-17-12 08:48]:
 Is their a way to get the pressure sensitivity of my Wacom Bamboo
 Capture tablet working with GIMP.  

It works with mine on openSUSE 12.2+Tumbleweed.  Just had to plug it in.

 Is tablets pressure sensitivity still unavailable to GIMP 2.8.2 Mac OS
 X?

Don't know about mac

-- 
(paka)Patrick Shanahan   Plainfield, Indiana, USA  HOG # US1244711
http://wahoo.no-ip.orgPhoto Album: http://wahoo.no-ip.org/gallery2
http://en.opensuse.org   openSUSE Community Member
Registered Linux User #207535@ http://linuxcounter.net
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] xcf file corrupt?

2012-09-17 Thread Richard Gitschlag


 Date: Mon, 17 Sep 2012 04:52:25 +0200
 From: for...@gimpusers.com
 To: gimp-user-list@gnome.org
 CC: t...@gimpusers.com
 Subject: [Gimp-user] xcf file corrupt?
 

 GIMP closed while I was in the middle of saving an image and is now 
telling me that the xcf is corrupt and that there is no usable data in 
it even though the file is the same size as it was before the crash. 
This is the third or fourth time it's done this to me and any help would
 be incredibly appreciated. I'd include the file but this is the first 
time I've posted here and I don't know how 
 
 -- 
 curseofdark (via gimpusers.com)
 ___
 gimp-user-list mailing list
 gimp-user-list@gnome.org
 https://mail.gnome.org/mailman/listinfo/gimp-user-list

Okay, but first we need to know a few things.

- Your particular build of GIMP (version number, OS)
- The exact wording of any error message GIMP may have generated when it 
closed

Both of these are very important.
-- Stratadrake
strata_ran...@hotmail.com

Numbers may not lie, but neither do they tell the whole truth.


  ___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Wacom Tablet not working with GIMP

2012-09-17 Thread Jehan Pagès
Hi,

On Mon, Sep 17, 2012 at 9:47 PM, torreyproctor for...@gimpusers.com wrote:
 Is their a way to get the pressure sensitivity of my Wacom Bamboo Capture 
 tablet working with GIMP.  Is tablets pressure sensitivity still unavailable 
 to GIMP 2.8.2 Mac OS X?


I have a Wacom Bamboo, and I have Gimp from the source repository. So
I can confirm it works well in the last version. :-)

There are 2 tricks.

1/ As someone said, you may have to plug your tablet *before* starting Gimp.

But I doubt this is your issue. My bet is:

2/ Go in Edit  Input Devices.
You should see a list of devices showing up in the list for your tablet, ie:
Wacom Bamboo
Wacom Bamboo cursor/erasor/pad/stylus

Go into each one of them. By default, the mode will be Disabled.
Change it to Screen.
After you have changed all of them, Save and Close.
Try again. You'll have pressure sensitivity. Enjoy.
:-)

Jehan

 --
 torreyproctor (via gimpusers.com)
 ___
 gimp-user-list mailing list
 gimp-user-list@gnome.org
 https://mail.gnome.org/mailman/listinfo/gimp-user-list
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


[Gimp-user] script-fu: illegal function?

2012-09-17 Thread Gary Aitken
When I try the following in the script-fu console:

((define (find-dot txt txtLen offset) (print foo)) (find-dot abcd.ef 7 1))
foo
Error: illegal function 

The find-dot macro obviously exists and is being executed.
So what is the illegal function it is complaining about?

Thanks
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


[Gimp-user] xcf file corrupt?

2012-09-17 Thread curseofdark
On Mon, 17 Sep 2012 20:16:19 +0200, curseofdark wrote:

 I'm using 2.6.11 on windows 7, and GIMP closed because of a computer crash 
 not a program error, sorry I wasn't more specific! The computer crashed in 
 the middle of saving the image

This is the problem - if the machine crashed while the file was being
written, it's possible that only a small amount of data reached the disk.
Since the metadata (file name, size etc.) is updated by the OS
independently, the file still looks like it has the old size, but in
reality, most of that space is empty or garbage.
Alright thanks, guess I'll just screen capture the thumbnail and start over 
from there x.x

-- 
curseofdark (via gimpusers.com)
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] script-fu: illegal function?

2012-09-17 Thread Kevin Cozens

On 12-09-17 02:28 PM, Gary Aitken wrote:

((define (find-dot txt txtLen offset) (print foo)) (find-dot abcd.ef 7 1))


First, you wrapped the whole thing in ( ). Drop the leading and trailing 
parentheses.


Second, that is a line of Scheme code and Scheme does not contain a print 
function. You probably meant to use display. Also keep in mind that the 
display function only takes a string so you may first need to convert what 
you pass it to a string.


--
Cheers!

Kevin.

http://www.ve3syb.ca/   |Nerds make the shiny things that distract
Owner of Elecraft K2 #2172  | the mouth-breathers, and that's why we're
| powerful!
#include disclaimer/favourite | --Chris Hardwick
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] flip through python console problems

2012-09-17 Thread Kevin Cozens

On 12-09-13 03:16 PM, free wrote:

pdb.gimp_item_transform_flip(layer, 320, 0, 320, 1)

the flip succeeds, but it generates a distortion on the flipped layer.
When I try to flip that layer through gimp's interface, it is smooth.


You probably want to use the simple flip function. The version you were 
using flips the drawable about a line specified by the coordinates given. My 
mind can't quite make out how the image/layer will change when doing a flip 
that is not about a center line so I haven't used the more general transform 
flip operation.


Try the following statement to do your flip
pdb.gimp_item_transform_flip_simple(layer, 0, TRUE, 0.0)

--
Cheers!

Kevin.

http://www.ve3syb.ca/   |Nerds make the shiny things that distract
Owner of Elecraft K2 #2172  | the mouth-breathers, and that's why we're
| powerful!
#include disclaimer/favourite | --Chris Hardwick
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list