[Gimp-user] how can I close the main window on gimp 2.5.1?

2008-06-15 Thread Choi, JiHui
Hi list.

on gimp 2.5.x, the main window(?) is added.
so we can see three default window when we start gimp.
however, I can't understand why the main window exists.
and I want to close it without exiting gimp.(generally when I close
the main window, then gimp is closed.)

how can I do? and why the developers make the window?

-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] batch mode in gimp, add alpha, change color

2008-05-01 Thread Choi, JiHui
Hi, all
I want to do some doing on my many images, about 1,000 ;
at first, add alpha channel at each image, and change color #fff to transparent.
I think, open - add alpha - select #fff by color - del - save

but I don't know script-fu. and tried some ways, all fail.
please help me.

Greetings.
-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] batch mode in gimp, add alpha, change color

2008-05-01 Thread Choi, JiHui
On Fri, May 2, 2008 at 2:35 AM, Kevin Cozens [EMAIL PROTECTED] wrote:
  I think you would be better off doing this using ImageMagick and a shell
  script. The 'convert' program with the -alpha and -background options should
  allow you to do what you want.

I know about ImageMagick, but there is no version for windows.
even though I use windows and linux both.


On Fri, May 2, 2008 at 4:00 AM, Xavier Mas [EMAIL PROTECTED] wrote:
  Or you can do an script using Scheme. GIMP allows to use any of its functions
  by script.

I tried to learn scheme, but it's so difficult.
and if I want another actions, I have to learn about relative functions.
so I think, I just want to use gimp, not to learn scheme. I don't know
and don't have any interesting about scheme.

humm.. anyway.. to learn scheme is the only way?
Isn't there something better than DBP plugin?

-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] installing scripts

2008-03-22 Thread Choi, JiHui
On Sat, Mar 22, 2008 at 7:01 PM, norman [EMAIL PROTECTED] wrote:
 What is the best way of installing a script, please? I tried by
  downloading the script to my desktop and dragging it into
  ~/.gimp2.4/scripts. I then ran, in GIMP, Xtns  Script-Fu  Refresh

Hi.. the way is the best!

  Scripts and got a message, Error while executing :-
  load/home/norman/.gimp-2.4/scripts/colourtemp.scm. Error reading
  string.

you already got the error message. it means the script is broken.
or isn't compatible with gimp 2.4
please, check whether your script supports gimp 2.4 or not.



-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] installing scripts

2008-03-22 Thread Choi, JiHui
On Sat, Mar 22, 2008 at 8:25 PM, norman [EMAIL PROTECTED] wrote:
  The description of the script says that it will work with Gimp 2.4. Do
  I, therefore, assume that the script is broken?

well.. I don't know
please link the script source site.
then probably someone will check for you.

-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] some function of screenshot seems to work oppositely

2008-03-14 Thread Choi, JiHui
oh..  I see.
when I turn off compiz, then gimp screenshot works correctly.


thanks. :)


-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] [fix the script] copy a selection and paste as new layer..

2008-03-14 Thread Choi, JiHui
Hi, forks.

Here is a script. this copy a selection of the active layer and paste
it as new layer with its opacity
made by Ankh (thank you, Ankh in #gimp, irc.gimp.org)

but there is a problem.
size of the new layer is not its own size, is the same with the image.
so I tried to fix this script, but I failed. T_T

please, fix it.
and I want one more thing.

I'd like to add a function for pasting a content of clipboard as new layer.
I failed, either -_-

these are very simple function, and I can do using some menus and
keyboard shortcuts.
but sometime I need and repeating 2-3 steps makes me mad.
please help me.



code:

; 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 2 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, write to the Free Software
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;
;
; This script copies the visible layers contained within the active
; image and pastes the results into a single layer at the top of the stack
; of the active image  It is an updated version of Karl Ward's merge-copy script
; which can be found here:
http://kward1979uk.deviantart.com/art/Merge-copy-28607825
;
; The Script can be found in the Image's Edit Menu under the name:
Copy Visible  Paste
;
; Special thanks to saulgoode at gimptalk.com for his suggestions on
improving the script.

; Define the Function
(define
 (copy-paste-new-layer
  inImage
  inDraw)

 ; Declare the Variables
 (let*
  ((theHeight (car (gimp-image-height inImage)))
   (theWidth (car (gimp-image-width inImage)))
   (theFloatingSelection) ; an undefined variable to be defined below.
   (theType (car (gimp-drawable-type-with-alpha inDraw))) ; returns
the drawables' type with an Alpha Channel
   (theSelection) ; undefined variable to contain the selected area in
the image.
   (theResult) ; undefined variable created below to hold the contents
of the Copied Layers
   (theOpacity (car (gimp-layer-get-opacity inDraw))) ; for layer opacity
  )

  ; Begin Undo Group
  (gimp-image-undo-group-start inImage)

  ; Copy the selection from the current layer
  (gimp-edit-copy inDraw)

  ; Get the selected area in the image and save it to a channel
  (set! theSelection (car (gimp-selection-save inImage)))

  ; Create a new layer called Cpoied Layer to hold the pasted selection
  (set! theResult (car (gimp-layer-new inImage theWidth theHeight
theType Copied Layer theOpacity NORMAL-MODE)))

  ; Fills theResult Layer (aka Copied Layer) with transparent fill
  (gimp-drawable-fill theResult TRANSPARENT-FILL)

  ; Adds theResult Layer to the active image
  (gimp-image-add-layer inImage theResult 0)

  ; Defines theFloatingSelection variable as containing the pasted
layer and keeping the selection active
  (set! theFloatingSelection (car (gimp-edit-paste theResult FALSE)))

  ; Anchor theFloatingSelection to theResult
  (gimp-floating-sel-anchor theFloatingSelection)

  ; Reload the original selection (theSelection)
  (gimp-selection-load theSelection)

  ; Delete the channel holding the original selection (theSelection)
  (gimp-image-remove-channel inImage theSelection)

  ; End Undo Group
  (gimp-image-undo-group-end inImage))

  ; Update display
  (gimp-displays-flush))

(script-fu-register  copy-paste-new-layer
   Image/Edit/Copy/Copy  Paste as Layer
   Copies the selection to a new layer and pastes it in
into active image
   Art Wade
   Art Wade
   December 2007
   
   SF-IMAGE  SF-IMAGE 0
   SF-DRAWABLE   SF-DRAWABLE 0

)



Greetings.
-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] some function of screenshot seems to work oppositely

2008-03-12 Thread Choi, JiHui
Hi, list

when I take some screenshots, if I checked include window decoration
on screenshot dialiog,
the screenshot doesn't have.
in other hand, if I clear the check, the screenshot includes the
window decoration.

with decoration :
http://picasaweb.google.com/like.a.dust/Gimp/photo#5177046757745512146
without decoration :
http://picasaweb.google.com/like.a.dust/Gimp/photo#5177046766335446754

it's so weird. I'm using gimp 2.4.5 on Ubuntu 7.10
and use compiz.


-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] GIMP looks like photoshop -alpha

2008-02-20 Thread Choi, JiHui
Hi, list.

here is my first experiment.
I'm tring to change GIMP like as photoshop.
I use ps-menurc(not in GIMP 2.4, http://epierce.freeshell.org/gimp/ps-menurc ),
partly modified sessionrc of GIMP portable photoshop layout,
modified toolrc(in ~/.gimp-2.4),
and modified gimp-move-tool(in ~/.gimp-2.4/tool-options)

http://picasaweb.google.co.uk/like.a.dust/gZtsNL/photo#5169156988932174114
http://picasaweb.google.co.uk/like.a.dust/gZtsNL/photo#5169156984637206802

please see and comment. and if you know about photoshop, give me any infos.
I want to help GIMP beginners who had used Photohop

and you can see the changed files in here,
http://gimp.kr/wiki/doku.php/gimp:misc

-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] how to add new color profile in gimp 2.4?

2008-02-04 Thread Choi, JiHui
Hi, list

you know, GIMP 2.4 gives color management function.
but I think GIMP can't recognize new color profiles automately like as
brushes, patterns..
I found all directory related GIMP, but I couldn't find color profile directory.

Of course I can add new color profile, using preference - color
management - RGB profile - select color profile from disk..
However I want to recognize automately. how do I do for it? Or can't I?

please, give me any answer.

Greetings.

-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] how to add new color profile in gimp 2.4?

2008-02-04 Thread Choi, JiHui
On Feb 5, 2008 5:58 AM, Leonard Evens [EMAIL PROTECTED] wrote:
 Are you using gimp under Linux or under Windows?

I'm using GIMP 2.4.4 on under Windows XP Pro SP2.
I forgot to tell this. sorry.

and what I want exactly is to use seperate+ plugin for CMYK mode
http://cue.yellowmagic.info/softwares/separate.html

I'm writing tutorial for it. but I can't know how to use color profiles.
( http://gimp.kr/viewtopic.php?f=20t=1028 )
so I asked how to add new color profiles.


On Feb 5, 2008 7:17 AM, Sven Neumann [EMAIL PROTECTED] wrote:
 The SVN version of GIMP does add a shortcut to the standard color
 profile location to the profile file-chooser dialog on Windows (see bug
 #503410). This is not implemented in GIMP 2.4.

 It does. It adds a shortcut to that directory to the profile
 file-chooser dialog.

so, GIMP doesn't detect color profiles automately, do?
and will, or will not?
what I mean is do(or will) GIMP detect automately like as brushes, patterns?


and at last, honestly I can't understand words of Leonard and Sven well.
but thank you guys su much. and your answers might help me. :)
and I think I need to study a lot.

Greetings.

-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] what does %n (%m) mean in status bar setting?

2008-01-23 Thread Choi, JiHui
Hi, all.

we can change the content of status area on image window.
Tool box - File - preference - image window - title and status

there are some odd characters, like as %n (%m), %D*%f-%p.%i (%t, %L) %wx%h
what do they mean?

my guess, %n = name, %m = current using memory,  %wx%h = width x height..
but others?


-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] what does %n (%m) mean in status bar setting?

2008-01-23 Thread Choi, JiHui
On Jan 24, 2008 1:14 AM, Sven Neumann [EMAIL PROTECTED] wrote:
 man gimprc

good. it's perfect!!
thanks Sven. :)

-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] printing in gimp..

2008-01-23 Thread Choi, JiHui
Hi, all
I have two questions.


1. in windows, gimp doesn't have print preview..
and in ubuntu, gimp doesn't have even print menu, either.

and I found gimp-print plugin. it's so cool.
but it doesn't install with gimp, although it is the official package.
why?

2. Is there no print preview plugin or something for windows?


Greetings.

-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] does gimp have this function?

2007-12-08 Thread Choi, JiHui
hi, all.

someone asked me, in photoshop, if I copy some area like as 400*200
and make a new image,
then the image size will be 400*200. however gimp doesn't recognize
the size of content on clipboard.
of course I can use similar function via the menu edit  paste  new
image. but it's not convenient.

so I tell him, use the dynamic keyboard shortcut.
but I wonder. gimp doesn't have the function, or just couldn't find?


Greetings.

-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] does gimp have this function?

2007-12-08 Thread Choi, JiHui
On Dec 8, 2007 5:23 PM, Owen [EMAIL PROTECTED] wrote:
  so I tell him, use the dynamic keyboard shortcut.
 File-keyboard shortcuts  or
 File-preferences-Interface-Configure keyboard shortcuts

Hi, Owen
I know that. but I wonder the default function exist or not.
for example, there is some option for that in the preference..

-- 
〓〓
Choi, JiHui
http://Mr-Dust.pe.kr
http://GIMP.kr
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user