Re: [Gimp-user] Anyway to add multiple Guides at once

2009-05-29 Thread D.Jones (aka) Capnhud




-
, DJ wrote:


 Didn't see it in the manual, but was wondering if there is a
 short-cut to adding multiple Guides at once (ie., a comma-separated list)?

It seems difficult to imagine anything faster than the Gimp-python
console for this:


image = gimp.image_list()[0] # get the latest loaded image

for y in (10,20,60,80, 120, 140, 260, 280):
pdb.gimp_image_add_vguide (image, y)


It should be possible to make a Script-Fu which accepts a list of
coordinates (space separated) and does something similar to the loop
above.
However, I don't know how; I only know how to implement that in Python:

# assuming 'coords' is the string parameter containing space-separated
coordinates
realcoords = [int(v) for v in coords.split()]
for y in realcoords:
pdb.gimp_image_add_vguide (image, y)

Adding an option to choose between adding h and v guides should also be easy.


David
There is a gimp plugin called multiple guides (python) and appears to be in 
german but it  will allow you to add multiple guides. I tried to access the 
link but it seems that gimpl plugin registry is down at the moment.


--


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] cmyk gimp plugin and cmyk tiff 2 pdf for gimp

2009-05-15 Thread D.Jones (aka) Capnhud
I am going to assume that you are new to the gimp. Often times in order to 
receive help you must at have tried to look on your own. But since you have not 
indicated your OS or gimp version it makes things difficult in terms of trying 
to help you solve your dilemma. It would be nice if we were mind readers, but 
alas that is not the case. I am going to assume windows because most linux 
users are familar with the gimp and how to install plugins. Try putting the 
.exe in your user directory C:\DS\User Account\.gimp 2.x\plugins. The lovely 
thing about the gimp and plugins is that they are not installed like you would 
think.



Subject: cmyk gimp plugin and cmyk tiff 2 pdf for gimp 
Where do I find instructions on how to install these plugins and is there 
something else I need to install first 
and how do you 
install these items. As well how does one know which of the available scripts 
and plugins can be installed in the 
latest release 
of gimp and are there installation instructions for each of these. If so where 
do I find these instructions. Is 
there a searchable 
archive somewhere. Is there someone else I should be contacting to get these 
answers? Thanks!



-



  ___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Gimp Double Toolbar Patch

2009-02-04 Thread D.Jones (aka) Capnhud







Ingo Ruhnke wrote: 
I brought my old Gimp Toolbar Patch up to date, it should
work now
with Gimp-2.6 or the latest Gimp-SVN. In addition to the
earlier patch
it now supports two toolbars. You can customize them by
copying
image-toolbar.xml or image-secondary-toolbar.xml to
~/.gimp-2.6/menus/
and editing them as you like. The toolbar are hideable and
showable
 just like the other UI elements.  The patch is available
 at:
 
  *
 http://pingus.seul.org/~grumbel/tmp/gimp-doubletoolbar-2009-01-31-1.diff
 
 A bit more info, a screenshot and prebuild Ubuntu Gimp
 packages with
 the patch applied are available at:
 
  *
 http://grumbel.blogspot.com/2009/01/gimp-double-toolbar-patch.html
 
 If anybody is wondering, the patch was already discussed a
 while back
 on gimp-devel and rejected, so it isn't making it into
 the official
 Gimp builds.
 
 -- 
WWW:  http://pingus.seul.org/~grumbel/
Blog: http://grumbel.blogspot.com/
JabberID: xmpp:grum...@jabber.org
ICQ:  59461927


How would you use this in windows gimp?


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Batch convert .xcf to .xcfgz

2009-02-04 Thread D.Jones (aka) Capnhud
I have a large amout of .xcf that I would like to batch convert to .xcfgz is 
there an application that can do this?


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Batch convert .xcf to .xcfgz

2009-02-04 Thread D.Jones (aka) Capnhud






 Hi,
 capn...@yahoo.com (2009-02-04 at 0902.16 -0800):
  I have a large amout of .xcf that I would like to
 batch convert to .xcfgz is there an application that can do
 this?
 
 GSR - FR wrote
Just run gzip *.xcf in a shell. Or look for a compression
 app that can
 gzip multiple files separatelly (not tar then gzip... no
 idea if any
 app does that alone, I just go with simpler g(un)zip for
 this).
 
 As advice, save and use .xcf.gz instead of .xcfgz so you
 need no extra
 steps, gunzip *.xcf.gz will revert the compression, but
 with .xcfgz
 you will need some tricks to handle the renaming.
 
 GSR
  


Is this possible on windows xp?  Becaues what you just said sounded like a 
foreign language that I have never heard :)



Jeffrey Brent McBeth wrote
 
 The trick isn't hard once you know it
 
 gzip -S gz *.xcf
 
 (the default suffix is .gz, so we are just removing the .)
 Jeff


I forgot to mention how would you do this on Windows XP.  Completely forgot 
that gimp runs on other OS besides windows.


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Color Discrepency

2009-02-04 Thread D.Jones (aka) Capnhud
I am not quite sure why this is happening but I notice that sometime when I 
download images and open them in the gimp the color that I may have seen in the 
web browser is definitely not the same color that I see in the gimp. 

For example this image 
http://img6.imageshack.us/my.php?image=colordifferencexg2.png

show such a discrepency in which the red in the browser is brighter than the 
red in the Gimp.


How do I correct this


  ___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Plug-in G'MIC for GIMP

2009-01-22 Thread D.Jones (aka) Capnhud
D.Jones (aka) Capnhud (capn...@yahoo.com) wrote (in part) 
 (on
 2009-01-21 at 07:07):
http://gmic.sourceforge.net/.gmic4gimp_def
 
   In order to use this on Gimp Windows do you put all
 of the included
   files in the plugin directory?
 
Alec Burgesss wrote

 Basically yes. I've put it in a sub-folder of Plug-ins
 and then added 
 that folder as a separate entry in
 Preferences-Folders-Plugins since with four items with
 nondescript 
 names I want to be able to figure which bits belong to
 which plugins.
 
 so on my system:
 D:\Data
 Files\Gimp-2.x_resources\plug-ins\gmic
 
 fwiw: in D:\Data Files\Gimp-2.x_resources\ I
 have parallel folder 
 structure to what would normally be in:
 C:\Documents and
 Settings\Alec\.gimp-2.6\{brushes etc} or ...
 these 
 folders exist but I keep empty.
 D:\Program
 Files\GIMP-2.6\share\gimp\2.0\{brushes
 etc} I *never* put 
 anything here.
 
 YMMV :-)
 
 Question ... does anyone else do it like this or am I just
 being anal?
 
 -- 
 Regards ... Alec   (bura...@gmail  WinLiveMess -
 alec.m.burg...@skype)


 photocomix for...@gimpusers.com wrote:

 
 I am doing as you, help when upgrading ,not also gimp but
 also the some
 plugin,and to keep in order and avoid orphan dll floating
 around. 
 
 But i use dedicated folder only for non
 standard plugin
 (as that with dll's), the others i have just sorted for
 categories (i.e
 distort,enhance, color,)a folder for each category
 -- 
 photocomix


I had did this plugin the same way I do other plugins I put it in the personal 
gimp plugin folder, but because I had not specified the folder in gimp 
preferences I was receiving and error until I pointed to the folder in the gimp 
preferences.  Thanks for clearing up the confusion.


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Plug-in G'MIC for GIMP

2009-01-21 Thread D.Jones (aka) Capnhud






 David Tschumperle wrote:
 Hi everyone,
 I would like to make a short announcement here.
 
 We have released a new plug-in for GIMP, named G'MIC
 which may be interesting
 for some users (at least, it is what we hope).
 
 Here is the URL : http://gmic.sourceforge.net/gimp.shtml
 
 This plug-in proposes a list of various effects that can be
 applied on
 images, including artistic filters, image denoising and
 enhancements, 3D
 rendering effects, and so on...
  
 The main property of this plug-in is that it contains an
 interpreter of image
 processing macros, and all the available filters are
 written in fact in a very
 short form (usually in three of four lines of code), using
 a simple
 macro-based language (the G'MIC language).
 Consequently, any user can add
 his own filter definitions in the plug-in (written in
 G'MIC in a simple text
 file). The plug-in is also capable of updating itself,
 without reinstallation
 needed (it just download a G'MIC updated macro file and
 put it in your home
 directory).
 
 So, this is a plug-in that is a little bit special since it
 is clearly
 intended to be open and extensible without having deep
 knowledges in C,
 script-fu or Python programming languages.
 Here is an example of how the current filters are defined,
 as a G'MIC macro
 file :
 
 http://gmic.sourceforge.net/.gmic4gimp_def
 
 Well, that's it. I hope this will interest you in some
 way.
 
 Regards,
 
 David.
 
 -- 
 David Tschumperle
 (http://www.greyc.ensicaen.fr/~dtschump/)


In order to use this on Gimp Windows do you put all of the included files in 
the plugin directory?



  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Error while executing script (Script Stop Working in Windows 2.6.3)

2008-12-15 Thread D.Jones (aka) Capnhud




Quoting Kevin Cozens ke...@ve3syb.ca:
 
  Your code has (if (= inSmooth TRUE) 1 0)
 where in Smooth is a boolean value
  provided by the SF-TOGGLE. The = operator
 is for use when   
  comparing numbers,
  not booleans. Since inSmooth is a boolean, change your
 if statement to read
  (if inSmooth 1 0)
 
 saulgoode wrote:

I am using version 2.6.4 on Linux and my experience is that
 the  
 original script functions just fine for both TRUE and FALSE
 values of  
 'inSmooth'; however, if I modify the script per
 your instructions then  
 the smoothing occurs even for FALSE values of inSmooth.
 This is as I  
 would expect because SF-TOGGLEs are marshalled as integer
 constants in  
 the PDB interface, not booleans (correct me if I am
 mistaken).
 
 I would ask Capnhud to verify whether the modified script
 produces the  
 correct result after removing the '=' comparison
 (not just that no  
 errors are generated). This can be done by running the
 script on an  
 image consisting of only two colors, setting the number of
 segments to  
 2, and disabling smoothing. The resulting
 gradient should be a  
 hard-edged transition between the two colors (as shown in
 this image:  
 http://www.flashingtwelve.brickfilms.com/Temp/anomaly.png
 ).
 
 When used, SF-TOGGLEs are invariably initialized to the
 integer  
 constants TRUE and FALSE in existing scripts. If there has
 been a  
 change whereby SF-TOGGLE are now booleans then this would
 seem very  
 problematic.
 
 
If I leave the script it original form I get the error that has been mentioned. 
 However as saulgoode has pointed out the script may not return an error per 
se, but no matter what it does not produce the intended result if smoothing is 
disabled.  The resulting gradient will be smooth if only 2 segments are chosen 
and smoothing is disabled.   So the question becomes what is making the script 
not produce the correct result? 


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Gimp-user Digest, Vol 75, Issue 20

2008-12-15 Thread D.Jones (aka) Capnhud




Quoting Kevin Cozens ke...@ve3syb.ca:
 
  Your code has (if (= inSmooth TRUE) 1 0)
 where in Smooth is a boolean value
  provided by the SF-TOGGLE. The = operator
 is for use when   
  comparing numbers,
  not booleans. Since inSmooth is a boolean, change your
 if statement to read
  (if inSmooth 1 0)
 
 saulgoode wrote:

I am using version 2.6.4 on Linux and my experience is that
 the  
 original script functions just fine for both TRUE and FALSE
 values of  
 'inSmooth'; however, if I modify the script per
 your instructions then  
 the smoothing occurs even for FALSE values of inSmooth.
 This is as I  
 would expect because SF-TOGGLEs are marshalled as integer
 constants in  
 the PDB interface, not booleans (correct me if I am
 mistaken).
 
 I would ask Capnhud to verify whether the modified script
 produces the  
 correct result after removing the '=' comparison
 (not just that no  
 errors are generated). This can be done by running the
 script on an  
 image consisting of only two colors, setting the number of
 segments to  
 2, and disabling smoothing. The resulting
 gradient should be a  
 hard-edged transition between the two colors (as shown in
 this image:  
 http://www.flashingtwelve.brickfilms.com/Temp/anomaly.png
 ).
 
 When used, SF-TOGGLEs are invariably initialized to the
 integer  
 constants TRUE and FALSE in existing scripts. If there has
 been a  
 change whereby SF-TOGGLE are now booleans then this would
 seem very  
 problematic.
 
 
If I leave the script it original form I get the error that has been mentioned. 
 However as saulgoode has pointed out the script may not return an error per 
se, but no matter what it does not produce the intended result if smoothing is 
disabled.  The resulting gradient will be smooth if only 2 segments are chosen 
and smoothing is disabled.   So the question becomes what is making the script 
not produce the correct result? 


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Error while executing script (Script Stop Working in Windows 2.6.3)

2008-12-14 Thread D.Jones (aka) Capnhud

 Message: 6
 Date: Sat, 13 Dec 2008 13:58:16 -0500
 From: Kevin Cozens ke...@ve3syb.ca
 Subject: Re: [Gimp-user] Error while executing script
 (Script Stop
   Working in  Windows 2.6.3)
 To: gimp-user gimp-user@lists.xcf.berkeley.edu
 Message-ID: 494405c8.9040...@ve3syb.ca
 Content-Type: text/plain; charset=us-ascii; format=flowed
 
 D.Jones (aka) Capnhud wrote:
(colors (+ segments (if (= inSmooth TRUE) 1 0)))
 [snip]
  (while ( counter segments) 
  (gimp-gradient-segment-set-left-color theGradient
 counter (car (gimp-image-pick-color img inLayer counter 0
 FALSE FALSE 0)) 100)
  (gimp-gradient-segment-set-right-color
 theGradient counter (car (gimp-image-pick-color img inLayer
 (+ counter (if (= inSmooth TRUE) 1 0)) 0 FALSE FALSE 0))
 100)
  (set! counter (+ counter 1))
  )
 [snip]
  what is the correct type for argument 3?
 
 The procedure database indicates that a FLOAT (ie. a
 numerical value) is 
 expected for argument 3 of gimp-image-pick-color. Your
 problem is due to 
 invalid use of the = operator in the two if
 statements shown above.
 
 Your code has (if (= inSmooth TRUE) 1 0) where
 in Smooth is a boolean value 
 provided by the SF-TOGGLE. The = operator is
 for use when comparing numbers, 
 not booleans. Since inSmooth is a boolean, change your if
 statement to read
   (if inSmooth 1 0)
 
 -- 
 Cheers!
 
 Kevin.

Thanks for clarifying what the problem was.  Those changes caused the script to 
function properly again.  What I do not understand is why I was the only one 
that seem to have this problems while others indicated that the script without 
the changes worked just fine. Go figure:)


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Error while executing script (Script Stop Working in Windows 2.6.3)

2008-12-13 Thread D.Jones (aka) Capnhud
I had been using a script that worked fine in gimp 2.4, but when I tried to 
recently use this script in Windows 2.6.3 I got the following error:

http://my.opera.com/capnhud/albums/showpic.dml?album=309313picture=8928433


The script that I was using is this:


; Script to create a gradient from an image of a gradient
; Rob Antonishen

(define (script-fu-gradient-from-image img inLayer inSegments inSmooth inName)
  (let* 
(
  (img (car (gimp-image-duplicate img)))  ;create a duplicate
  (width (car (gimp-image-width img)))
  (height (car (gimp-image-height img)))
  (segments (truncate inSegments))
  (colors (+ segments (if (= inSmooth TRUE) 1 0)))
  (theGradient )
  (counter 0)
)

; it begins here
(gimp-image-undo-group-start img)

;flatten inage and get drawable (layer)
(set! inLayer (car (gimp-image-merge-visible-layers img 1)))

; blur then resize to number of colors  by 1
(gimp-image-scale img colors 1)

;create new gradient
(set! theGradient (car (gimp-gradient-new inName)))
(gimp-context-set-gradient theGradient)

;subdivide
(gimp-gradient-segment-range-split-uniform theGradient 0 0 segments)

(while ( counter segments) 
(gimp-gradient-segment-set-left-color theGradient counter (car 
(gimp-image-pick-color img inLayer counter 0 FALSE FALSE 0)) 100)
(gimp-gradient-segment-set-right-color theGradient counter (car 
(gimp-image-pick-color img inLayer (+ counter (if (= inSmooth TRUE) 1 0)) 0 
FALSE FALSE 0)) 100)
(set! counter (+ counter 1))
)

;done
(gimp-image-undo-group-end img)
(gimp-image-delete img)
  )
)

(script-fu-register script-fu-gradient-from-image
Image/Colors/Gradient from Image...
Dreate a gradient from an image of a gradient.
Rob Antonishen
Rob Antonishen
2008

SF-IMAGE  image  0
SF-DRAWABLE   drawable   0
SF-ADJUSTMENT Segments in the gradient (list 25 2 1024 1 
10 0 SF-SLIDER)
SF-TOGGLE Smooth Gradient TRUE
SF-STRING Gradient Name  Gradient From Image




what is the correct type for argument 3?


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] GreyCstoration Gimp Windows plugin update

2008-11-03 Thread D.Jones (aka) Capnhud
I notice this plugin has been updated for the gimp linux (06/09/2008), but not 
for gimp windows (04/01/2007).  Is it possible for someone to update this for 
gimp windows users?


  ___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Script Fu error

2008-10-15 Thread D.Jones (aka) Capnhud
This scrip used to work in gimp 2.4.7 but when I try to execute this script 
2.6.1 I recieve this message but I am not sure what to change in order to make 
it work again:

Error while executing script-fu-quick-sketch2:
Error: eval: unbound variable: script-fu-quick-sketch2


; The GIMP -- an image manipulation program
; Copyright (C) 1995 Spencer Kimball and Peter Mattis
; 
; Quick sketch script  for GIMP 2.4
; Copyright (C) 2007 Harry Phillips [EMAIL PROTECTED]
;
; Author statement:
;
; Quick sketch turns a photo into what looks like a artists sketch
; 
;  
; Distributed by Gimp FX Foundry project 
;  
; - Changelog - 
; Last changed by author: 9 September 2007 
; 
;  
; 
; This program is free software: you can redistribute it and/or modify 
; it under the terms of the GNU General Public License as published by 
; the Free Software Foundation, either version 3 of the License, or 
; (at your option) any later version. 
; 
; This program is distributed in the hope that it will be useful, 
; but WITHOUT ANY WARRANTY; without even the implied warranty of 
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
; GNU General Public License for more details. 
; 
; You should have received a copy of the GNU General Public License 
; along with this program. If not, see http://www.gnu.org/licenses/. 
; 
 

(define (script-fu-quick-sketch theImage 
theLayer 
blurType) 

  ;Initiate some variables 
  (let* ( 
  (layerCopy 0) 
  (layerGrey (car (gimp-drawable-is-gray theLayer))) 
  ) 

  ;Start an undo group so the process can be undone with one undo 
  (gimp-image-undo-group-start theImage) 

  ;Rename the layer 
  (gimp-drawable-set-name theLayer Original) 

  ;Select none 
  (gimp-selection-none theImage) 

  ;Change the image Greyscale if it isn't already 
  (if (= layerGrey 0) (gimp-image-convert-grayscale theImage)) 

  (set! layerCopy (car (gimp-layer-copy theLayer 1))) 

  ;Copy the layer 
  (gimp-image-add-layer theImage layerCopy 0) 

  ;Rename the layer 
  (gimp-drawable-set-name layerCopy Dodge layer) 

  ;Invert the layer 
  (gimp-invert layerCopy) 

  ;Change the layers mode 
  (gimp-layer-set-mode layerCopy 16) 

  ;Blur the dodge layer 
  (case blurType 
  ((0) (plug-in-gauss 0 theImage layerCopy 1 1 0)) 
  ((1) (plug-in-mblur 0 theImage layerCopy 0 1 10 2 2)) 
  (else (plug-in-sel-gauss 0 theImage layerCopy 5 50))) 

  ;Finish the undo group for the process 
  (gimp-image-undo-group-end theImage) 

  ;Ensure the updated image is displayed now 
  (gimp-displays-flush) 

  ) 

) 



(script-fu-register script-fu-quick-sketch2 
  _Image/Script-Fu/Illustration/Quick sketch2... 
  Create a sketch from a photo 
  Harry Phillips 
  Harry Phillips 
  Sep. 9 2007 
  * 
  SF-IMAGE Image 0 
  SF-DRAWABLE Drawable 0 
SF-OPTION Blur Type '(Gaussian Blur Motion Blur Selective Blur) 
)


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Script Fu error

2008-10-15 Thread D.Jones (aka) Capnhud
Thanks that did the trick.


--- On Wed, 10/15/08, Andreas Waechter [EMAIL PROTECTED] wrote:

 From: Andreas Waechter [EMAIL PROTECTED]
 Subject: Re: [Gimp-user] Script Fu error
 To: [EMAIL PROTECTED]
 Cc: Gimp Group gimp-user@lists.XCF.Berkeley.EDU
 Date: Wednesday, October 15, 2008, 3:55 PM
 D.Jones (aka) Capnhud wrote:
   Error while executing script-fu-quick-sketch2:
   Error: eval: unbound variable:
 script-fu-quick-sketch2
 
 here is a 2 at the end
 
   (define (script-fu-quick-sketch theImage
 
 here is NO 2 at the end
 
   (script-fu-register
 script-fu-quick-sketch2
 
 here is a 2 at the end
 
 
 Andreas


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Keyboard shortcuts not working in Windows Gimp 2.6

2008-10-06 Thread D.Jones (aka) Capnhud
Since it has been indicated that keyboard shortcuts should work I just 
un-installed and reinstalled and everything works fine now.





  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Keyboard shortcuts not working in Windows Gimp 2.6

2008-10-05 Thread D.Jones (aka) Capnhud
With gimp 2.4.7 on Windows XP I could open the gimp and then using my keyboard 
shortcuts I could  either open a new file, recent file or just take a 
screenshot.  In Gimp 2.6 when I open the gimp and try to use keyboard shortcuts 
in an empty environment nothing happens.  But if I go to the menu item and 
select new, recent file, or screenshot it works.   

The only way that I can get keyboard shortcuts to work in gimp 2.6 is I have to 
have either a blank (new) image or open an image and then the keyboard 
shortcuts will work.  As long as the main window has nothing in it the keyboard 
shortcuts will not work.  Am I missing a setting to correct this behavior?


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Edit With Gimp Conflict

2008-09-01 Thread D.Jones (aka) Capnhud
I have the stable and developemental version both installed on Windows XP SP3.  
The stable version is in the program files while the developmental version is 
installed elsewhere.  The problem that I have now is when I right click an 
image to edit with the gimp the developmental version is the one that is 
chosen.  How do I make it so that the stable Gimp version is the one that opens 
the image?


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Focus Blur Plugin Windows Binary

2008-08-11 Thread D.Jones (aka) Capnhud
Would it be possilbe for someone to build the Focus Blur  
(http://sudakyo.hp.infoseek.co.jp/gimp/fblur/focusblur_e.html) binary for 
Windows?  I do not have a development environment to build plugins so I was 
wondering if someone would kindly build this for Windows.





  ___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Focus Blur Plugin Windows Binary

2008-08-11 Thread D.Jones (aka) Capnhud


D.Jones (aka) Capnhud wrote:

 Would it be possilbe for someone to build the Focus Blur 
 http://sudakyo.hp.infoseek.co.jp/gimp/fblur/focusblur_e.html 
 binary for Windows?

Michael Schumacher wrote

I've just built it, and I'll upload it to the GIMP registry 
(http://registry.gimp.org), where all plug-ins should reside - local 
copies on someones site are ok, but one central place will help users 
greatly. And please do provide references back to the original sites.

About time I'll update all the other binaries as well.

For the moment, Focus Blur has been built without FFTW3 (because I 
haven't FFTW3 lying around), so it will be slow.


HTH,
Michael


P.S. can we please stop using HTML on this list, and have proper 
quotation in replies? Thanks.



Thanks Michael I really do appreciate this.






  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Focus Blur Plugin Windows Binary

2008-08-10 Thread D.Jones (aka) Capnhud
The plugin that you have posted at deviantart is this one 
http://refocus.sourceforge.net/which is designed to Sharpen an image or if an 
image is blurred to take the blur away.  The Focus blur plugin adds blur to an 
image.  Your plugin is not what I am looking for.  An example of the plugin is 
here (http://sudakyo.hp.infoseek.co.jp/gimp/fblur/focusblur3e.html)


From: Alchemie foto\\grafiche wroteHy in last reply you just send back my 
message ,is that the version you search
or you know of a newer?

From the compiled plugin? info and name is missed the release number so for
me is hard to guess which may be, but may be easier for you if you already know
the plugin? spot if are changes in the interface or in the speed or whatever.

if this may help ,...works with gimp 2.4.6 without apparent problem. 






  ___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Focus Blur Plugin Windows Binary

2008-08-08 Thread D.Jones (aka) Capnhud
The plugin that you are referring to is the Refocus plugin.  No I am lookin for 
the Focus Blur plugin located at 
http://sudakyo.hp.infoseek.co.jp/gimp/fblur/focusblur_e.html the last windows 
version was located here (http://schumaml.gmxhome.de/downloads/gimp/) but it is 
version 2.3.

Alchemie foto\\grafiche wrote
 I believe? i am mirroring the very last version available for windows and saw
that is compatible with gimp 2.4

But sorry i am not who compiled, i just was lucky to trace that executive on a
Japanese website in the middle of tons of ideograms

I tested on my PC and since was working quite well i decide to mirror? ..but on
that file was not reported the release number or any other info

But you may check by yourself ...is this what you search?

http://photocomix-resources.deviantart.com/art/Refocus-plugin-windows-OS-81588756
#


 D.Jones (aka) Capnhud wrote
I have search gimp registry and the net looking for an updated version of focus
blur plugin. Does anyone know if a 3.2.3 version of the focus blur plugin for
windows exists? ?I have the 2.3 version.


  




  ___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Python error while loading gimp

2008-05-16 Thread D.Jones (aka) Capnhud
I receive the following error when I load gimp 2.4.5 with python installed.

pythonw.exe
The procedure entry point g_assertion_message could not be located in the 
dyanamic link library
libglib-2.0.0-0.dll

I have installed 

Python 2.5.2
pycairo-1.4.12-1.win32-py2.5.exe
pygobject-2.14.1-1.win32-py2.5.exe
pygtk-2.12.1-2.win32-py2.5.exe

gimp-2.4.5-i686-setup.exe
gimp-help-2-2.4.0-eng-setup.exe

all in this order.


  
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Pen tablet stopped working

2008-04-25 Thread D.Jones (aka) Capnhud
I am using windows xp and a Wacom graphire 3 with the latest drivers and in the 
middle of working
the pen tablet just stopped having the ability to paint.  How do I fix this?


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Dimensions are off significantly in svg created by path export

2008-03-13 Thread D.Jones (aka) Capnhud
I am noticing a problem where the text image that I am working with is in 
pixels, but when I
export the text path the dimensions are in inches and it is significantly 
smaller than what it
should be.  How do I fix this?  

Here are two example files that use the exact same dimensions image and text 
wise the only
difference between these two is that one is an outline (shrinktest.svg) created 
in the Gimp while
the other is created directly in inkscape.

http://capnhud.awardspace.com/test.svg
http://capnhud.awardspace.com/shrinktest.svg


  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] 300 dpi screen capture

2008-02-23 Thread D.Jones (aka) Capnhud


Michael J. Hammel writes:
 On Fri, 2008-02-22 at 23:41 +0100, Daniel Hornung wrote:
  But maybe one of the 
  actual book writers on this list may tell you more. *hint*
 
 I guess that's my cue.  :-)

Akkana Peck wrote:
Me too :-) except Michael has already covered it so well.
The only thing I'll add is that when I first started, I was
worried about one of Apress' guidelines that said they wanted
a particular dpi, so I started out being careful to set the
dpi after taking screenshots. I was also sending high-resolution
versions of non-screenshot images.

Once we got rolling, it turned out that their layout people scaled
each image to an appropriate size on the page, and nobody really
cared what dpi the images claimed to have. As long as I took normal
GIMP screenshots of reasonably-sized windows, everybody was happy.

The Apress style guide also had warnings about not using Windows
Print Screen, and more warnings about various other programs to
avoid under Windows (mostly color depth issues, I believe).  None
of that was a problem with the GIMP screenshots, which worked fine.




Where can you get a copy of this Apress style guide?  I searched their site but 
was unable to see
this guide.




  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] New Cute Python Line Drawing Script

2008-01-10 Thread D.Jones (aka) Capnhud
(Joao wrote)
Yu  draw a path, with the bezier curves tool, and create at least two 
strokes with it: that is two unconnected curves on the same bezier 
path.

Tehn you call the plug-in. By active path I mean thispath has to be 
the one actve in the paths dialog.

Forgive my naivety but I am not sure what you are meaning by two unconnected 
curves on
the same bezier path.


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] New Cute Python Line Drawing Script

2008-01-08 Thread D.Jones (aka) Capnhud

--- [EMAIL PROTECTED] wrote:

 Send Gimp-user mailing list submissions to
   gimp-user@lists.XCF.Berkeley.EDU
 
 To subscribe or unsubscribe via the World Wide Web, visit
   https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user
 or, via email, send a message with subject or body 'help' to
   [EMAIL PROTECTED]
 
 You can reach the person managing the list at
   [EMAIL PROTECTED]
 
 When replying, please edit your Subject line so it is more specific
 than Re: Contents of Gimp-user digest...
 
 
 Today's Topics:
 
1. new cute python line drawing script (Joao S. O. Bueno)
2. Brushes/input controllers changes idea (Brian Vanderburg II)
3. Re: Brushes/input controllers changes idea (David Gowers)
 
 
 --
 
 Message: 1
 Date: Sat, 5 Jan 2008 23:19:30 -0300
 From: Joao S. O. Bueno [EMAIL PROTECTED]
 Subject: [Gimp-user] new cute python line drawing script
 To: gimp-user@lists.xcf.berkeley.edu
 Message-ID: [EMAIL PROTECTED]
 Content-Type: text/plain;  charset=us-ascii
 
 What it does:
 http://www.pion.com.br/gimp/connect_all.png
 
 Just connect N lines accross the first two components in the active 
 vector.
 
 
 and it is here:
 http://www.pion.com.br/gimp/connect_lines.py
 
   js


How do you get this to work?



  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] New Cute Python Line Drawing Script

2008-01-08 Thread D.Jones (aka) Capnhud

On Tuesday 08 January 2008 09:53, D.Jones (aka) Capnhud wrote:
  What it does:
  http://www.pion.com.br/gimp/connect_all.png
 
  Just connect N lines accross the first two components in the
  active vector.
 
 
  and it is here:
  http://www.pion.com.br/gimp/connect_lines.py
 
  ??js

 How do you get this to work?

(Joao wrote): You have to have epython plug-ins enabled in GIMP.
Check for a ptyhon-fu  submenu in the Xtns dir.

Gimp 2.4 under windows can have python plug-ins, but you have 
toinstall at least the Python interpreter (www.python.org), 
Python-gtk  and python.pango bindings (www.gnome.org) . Not sure what 
else is needed.

Afterwards you jsut derop the .py file above in your plug-ins 
directory, and watch for a python-fu-alchemy- ' menu in the image.

Under Linux and other unixes, you also have to markj the .py file as  
executable. (but chances are gimp python is already enabled).


I mean how do you use it.  Do you just draw a line or does the script 
automatically draw
them for you.  All my other python scripts work but this one.


  

Be a better friend, newshound, and 
know-it-all with Yahoo! Mobile.  Try it now.  
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ 

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Palettes Pop Menu Missing Options in Gimp 2.4.2

2007-12-20 Thread D.Jones (aka) Capnhud
According the the Gimp documentation you can sort a palette. How do you do 
this? Because
when I right click a palette the options 9-12 are missing on a palette that I 
created 

In the palette pop menu you should have 
1.edit palette' 
2.new palette 
3.import palette 
4.duplicate palette 
5.merge palette (this is not yet implemented) 
6.copy palette location 
7.delete palette 
8.refresh palettes 
9.offset palettes 
10.palette to gradient 
11.palette to repeating gradient 
12.sort palette

I only have 1-8 in the pop menu using windows Xp gimp 2.4.2


  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Palettes Pop Menu Missing Options in Gimp 2.4.2

2007-12-20 Thread D.Jones (aka) Capnhud
Hi,

On Thu, 2007-12-20 at 10:19 -0800, D.Jones (aka) Capnhud wrote:
 According the the Gimp documentation you can sort a palette. How do you do 
 this?
Because
 when I right click a palette the options 9-12 are missing on a palette that I 
 created 

Looks like you don't have Python on your computer then. The palette
manipulation you are looking for is implemented by Python plug-ins.
Since GIMP 2.4, the Python binding is the recommended scripting language
for GIMP and we expect that more and more functionality will be
implemented using Python.


Sven

Thanks instead all the necessary python components and all is well thanks once 
again



  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] .recently-used.xbel

2007-11-19 Thread D.Jones (aka) Capnhud
I have noticed with the new version of the Gimp a file called .xbel is 
constantly created
after I open an image. It is in C:\Documents and Setting\owner in windowx xp.  
How do I
stop this behavior?


  

Get easy, one-click access to your favorites. 
Make Yahoo! your homepage.
http://www.yahoo.com/r/hs 
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Running Gimp 2.4 and older versions of Gimp (2.217)

2007-10-25 Thread D.Jones (aka) Capnhud
I have alot of plugins that I use in the older version of The Gimp and do not 
want to
lose them. I was wondering can I have both the new and old version of The Gimp 
installed
on Windows XP without having a conflict.  Or do I need to install Gimp 2.4 
somewhere else
other than C:\Program Files 

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Image resizing based upon image content plugin

2007-10-17 Thread D.Jones (aka) Capnhud
I usually have no problem installing a plugin, but the Image resizing based 
upon image
content plugin has presented me with problems.  I use windows XP and was 
wondering where
am I supposed to extract the directories that are included in the 7z. file they 
are
included in and do I necessary need the it, ru and other translations for 
english?






__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user