| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 4,944
» Latest member: Nafeesa
» Forum threads: 7,703
» Forum posts: 41,889
Full Statistics
|
| Latest Threads |
Problem with Gimp 3 Pytho...
Forum: Scripting questions
Last Post: Ofnuts
6 hours ago
» Replies: 6
» Views: 198
|
New to Gimp
Forum: General questions
Last Post: denzjos
Yesterday, 08:20 AM
» Replies: 4
» Views: 268
|
Autopano Giga 4.4.2 now f...
Forum: Other graphics software
Last Post: denzjos
Yesterday, 08:17 AM
» Replies: 1
» Views: 116
|
"Mouseclick" is not recor...
Forum: General questions
Last Post: ESH
11-16-2025, 10:12 PM
» Replies: 4
» Views: 342
|
GIMP 2.10 or 3 stuck load...
Forum: General questions
Last Post: theelf
11-15-2025, 05:09 PM
» Replies: 5
» Views: 342
|
What exactly tutorials ar...
Forum: General questions
Last Post: rich2005
11-15-2025, 12:34 PM
» Replies: 3
» Views: 271
|
Avatar not showing up
Forum: Gimp-Forum.net
Last Post: Ofnuts
11-15-2025, 08:49 AM
» Replies: 8
» Views: 4,190
|
Simulating paint my hous...
Forum: General questions
Last Post: sallyanne
11-15-2025, 12:22 AM
» Replies: 1
» Views: 202
|
Edits Saving wrong
Forum: General questions
Last Post: PaulM
11-14-2025, 10:36 PM
» Replies: 6
» Views: 389
|
Random Clone
Forum: General questions
Last Post: rich2005
11-14-2025, 07:20 PM
» Replies: 1
» Views: 190
|
|
|
| Gimp on go slow |
|
Posted by: sallyanne - 08-26-2017, 11:17 AM - Forum: General questions
- Replies (12)
|
 |
For a while my browser has been crashing on me or 'not responding' but eventually it did. I think I have fixed that now by resetting the browser but now Gimp is doing something very similar. Nearly every-time I run a filter within gimp (It doesn't seem to happen with GMIC) the status bar at the bottom doesn't complete. Sometimes the operations complete and often they do not.
I don't have a screensaver running on my computer so that is not using up room. I have only used about half my storage too - over 200GB is left on it. Surely I don't use 200 hundred GB to browse the net? My question would be - what do you think the problem is?
I am using a relatively new gimp 2.8.22
Am afraid to add any more scripts now incase my pc cannot handle it.
My OS is Windows 10 Home 32 bit
|
|
|
| Offset image |
|
Posted by: grit - 08-25-2017, 10:52 PM - Forum: General questions
- Replies (6)
|
 |
I have 256*256 image.
I would like to offset it in a way that Gimp creates 512*512 canvas with 4 images (256*256) offseted.
|
|
|
| [Solved] How to modify this script-fu? |
|
Posted by: boolbilam - 08-24-2017, 07:30 AM - Forum: Extending the GIMP
- Replies (2)
|
 |
Hi,
I use this script:
Code:
((define (script-fu-logo inImage inLogo )
(let*
(
(calque (car (gimp-file-load-layer 1 inImage inLogo)))
)
(gimp-image-add-layer inImage calque 0)
(gimp-image-flatten inImage)
) ; fin let*
) ; fin define
(script-fu-register "script-fu-logo"; name
"<Image>/MyScripts/logo" ; position in menu
"test script"; commentary
""; author
"" ;
"" ;date
"" ;
SF-IMAGE "inImage" 0
SF-FILENAME "inLogo" (string-append "" gimp-data-dir "/scripts/images/logo.png")
)
I wish that this script only use the logo.png, without asking it.
Do you know how to do that ?
|
|
|
| "paper cut" authentication |
|
Posted by: RobMW - 08-24-2017, 01:18 AM - Forum: General questions
- Replies (2)
|
 |
Hi All
Ive only been using Gimp for a few weeks so Im a relative noob.
I am trying to print to a networked printer managed centrally by Paper-Cut. When I try to print an .xcf file it gets put on hold awaiting authentication. There is no way to resume printing and authenticate. (Which is the usual process)
When exporting the same file to .png and printing there is no problem. It uses my prev' saved authentication credentials and it prints out fine.
Q1. Is it the file type and Paper Cut doesn't know what to do with it?
Q2. Is there any print resolution advantage in printing directly from Gimp instead of .png?
Cheers
Rob
|
|
|
| Can anyone explian the TWAIN interface? |
|
Posted by: ajax - 08-23-2017, 05:41 PM - Forum: General questions
- Replies (3)
|
 |
I've discovered the capability that GIMP has for obtaining images directly from the scanner without creating intermediate files (i.e., File>Create>Scanner/Camera). What I don't know but think I should is the format of the data be transferred from the scanner to GIMP. I think the interface that is being used is called TWAIN. Of course what really matters is the image quality being delivered by this mechanism. For example, when scanning pictures that I want to edit, in GIMP, I've been avoiding the use of jpeg because of the lossy compression. I'd opt for tiff if using intermediate files. Also my scanner is capable of producing images in either 8bit or 16bit formats but when using the TWAIN interface I don't specify a file type. I've noticed that I can select a 16bit quality on the scanner but I'm pretty sure that what I'm working on in GIMP is only 8bit even though there is never any indication of a format conversion which I think must be happening somewhere. Is it the scanner or GIMP doing the conversion? Or else the scanner is able to figure out that GIMP wants 8bit and does it without informing me about the discrepancy. Is the data being transferred in a format equivalent to a file? If so what type of file? Or does the TWAIN specification dictate the format.
|
|
|
| Clipboard PythonFu |
|
Posted by: Myrslokstok - 08-23-2017, 01:31 PM - Forum: Extending the GIMP
- Replies (3)
|
 |
I can't paste a content from my clipboard in Windows to a new image in GIMP.
I have tryed to use:
pdb.gimp_edit_paste_as_new() from the Console,
and then it only give me the internal clipboard from GIMP.
I whant to do Arkive -> Create -> From Clipboard,
The function could be easely activated with:
shift+ctrl+V
But to do it manually seems complicated, and it do get me a new image from windows clipboard. But it seem that it should be possible to script it. Considering that it is only 3 keys to press, before I run my script.
I can not find any pythonfu or other way to activate it before my script, it is a function that is obviusly there, but that I have to use manualy.
Thanks
|
|
|
|