Tagged Questions
GIMP is a free image editing application.
22
votes
3answers
846 views
How does Photoshop's magnetic lasso work?
Seems like GIMP's intelligent scissor is based on a paper from SIGGRAPH '95 on "Intelligent Scissors for Image Composition", as seen in one of the comments in the source.
However Magnetic Lasso in ...
12
votes
8answers
14k views
Using a CMYK PSD without Photoshop
I have run into a common, yet difficult problem. I do not use Photoshop for image manipulation. Since all my work is web-based, GIMP does what I need in 99% of the situations. The problem is that I ...
6
votes
2answers
549 views
What interpolation is best for image rotation?
I have some images to rotate. I must rotate them (each by different angle) with as little as possible image artifacts (e.g. blurring) that occur during image rotation (due to interpolation).
At the ...
5
votes
1answer
154 views
How to get a list of files (*. jpg) from all folders?
How do I get a list of files (*.jpg) from all folders, using Script-FU in GIMP?
(let* ((filelist (cadr (file-glob pattern 1)))
This only gets files from the current folder.
3
votes
1answer
111 views
How to use GIMP inside a Python script?
GIMP enables you to make plugin in in Python, what I would like to do is to call GIMP function like I would do inside one of this plugin but this return the following error since GIMP doesn't find any ...
3
votes
2answers
1k views
How to convert XCF to PNG using GIMP from the command-line?
As part of my build process I need to convert a number of XCF (GIMP's native format) images into PNG format. I'm sure this should be possible using GIMP's batch mode, but I have forgotten all of the ...
3
votes
1answer
256 views
Programatically working with color gradients
I have a python app that uses GIMP gradients to color images. Other than letting the user choose which GIMP gradient to use, the user doesn't have much more control over the coloring. I'm thinking of ...
3
votes
2answers
548 views
Connect GIMP with PHP or Python
is there any way to connect GIMP with python or PHP and use its libraries? It seems that all i can find on the web is pygimp which is not supported anymore.
ps. i do my development on mac and i use ...
3
votes
1answer
756 views
Resizing screenshots/screen captures for inclusion in Beamer
Sorry, this may or may not be a programming question directly, but I am trying to resize screenshots with Imagemagick and Gimp to include in a Beamer presentation, but it comes out even blurrier than ...
3
votes
1answer
226 views
Why does this script-fu not work?
(define (script-fu-create-camo image colA colB))
(script-fu-register
"script-fu-create-camo"
"Camoflauge"
"Creates a camoflauge pattern on an image"
"Jeffrey Aylesworth ...
3
votes
2answers
1k views
How to parse out base file name using Script-Fu
Using Gimp 2.6.6 for MAC OS X (under X11) as downloaded from gimp.org.
I'm trying to automate a boring manual process with Script-Fu. I needed to parse the image file name to save off various layers ...
3
votes
3answers
2k views
Converting XCF and other files using command line with GIMP?
If I have an XCF file (or any other supported by Gimp) how can I convert it to, for example, PNG for display or further processing?
2
votes
1answer
34 views
Explanation of Header Pixel in GIMP created C Header File of an XPM image
In GIMP, you're able to save an image as a C header file. I did so with an XPM file, which looks like the image below:
If I were to save the XPM image as a C header file, GIMP will output this C ...
2
votes
1answer
47 views
Copy a layer from an image to another
I am building a Gimp plugin in python. I would like to load a layer in memory, based on an file, and then adding it to several images (thus avoiding the loading time from file).
I could not find ...
2
votes
2answers
221 views
How do I convert images (PSD, AI and EPS) to PDF?
Customers of my Django site can upload a print design in: PDF, PSD, AI and EPS. If the filetype they upload is not PDF I want to convert it to PDF.
So my question is: How do I convert Photoshop, ...
2
votes
1answer
172 views
Why can't GIMP handle this script?
I have this script as an .scm in Gimp:
;MIT license.
(define (script-fu-export-layers img drw path outnameformat)
; credit to Vijay Mathew on Stack Overflow for the expand keywords function
(let ...
2
votes
2answers
213 views
Tools to extract glyph data from bitmap font image
I have all the characters of a font rendered in a PNG. I want to use the PNG for texture-mapped font rendering in OpenGL, but I need to extract the glyph information - character position and size, ...
2
votes
1answer
341 views
openCV vs GIMP, edge detection fails in openCV
I am doing Sobel edge detection in openCV using the with following parameters:
cv.Sobel(mat, edgemat, 1, 1)
# mat -> source image
# edgemat -> taget output image
# 1 -> xorder (int) – Order ...
2
votes
1answer
160 views
Attach text on path in GIMP
I'm discovering the gimp API for few days now (using python-fu) and I actually enjoy it.
However there is something I can't manage to do : attach a text on a path.
Using the user interface to perform ...
2
votes
1answer
53 views
Cannot build GEGL in windows
what is the command for ./configure to buil gegl. i need gtk+ and babl and i have that.i have also installed msys/mingw. but which argument i should give to run ./configure in msys?
do i need to save ...
2
votes
1answer
205 views
GIMP - Scripting a canvas resize
Just started using GIMP today. When I resize the canvas manually in GIMP (so that it's smaller than the image size) it lets me move the image around so that I can "change" the viewable area. How do I ...
2
votes
1answer
196 views
Raster graphics or vector graphics, which to choose for web-site development/designing?
While looking for a good tool for web-site development/designing on linux, I in the end got stuck with what to choose, the raster graphics or vector graphics.
Gimp/Photoshop -- if you prefer ...
1
vote
2answers
29 views
In Gimp script-fu, how can you access QuickMask functionality?
In the Gimp GUI, the QuickMask is very useful for many things, but this functionality doesn't seem to be directly available through script-fu. No obvious equivalents were apparent to me in the ...
1
vote
2answers
44 views
Auto threshold functionality in a gimp script-fu
In the GIMP UI, there is an Apply Threshold functionality (GIMP 2.6) which has an option called Auto. This automatically calculates an appropriate lower threshold value for the image. Is this ...
1
vote
2answers
88 views
I'm looking for a way to convert PSD format to something Gimp can read
I have a bunch of PSD files (and more to come) and I want to get them into a format I can work with.
I have had (some) success reading PSDs with Gimp before but these files won't read properly.
Is ...
1
vote
1answer
100 views
Loading an image from a C source file, exported from GIMP
I'm trying to load an openGL texture for a game. The texture is an image that has been exported as a .C source file from GIMP. When I #include this file in my project (using Visual C++ 2010 Ultimate), ...
1
vote
1answer
71 views
Image resizing, maintaing image size - beginner question
Im attempting to resize an image from 480x800 to 320x240. Below are the results. The original image has an oval shaped circle whereas the resized image has a more spherical shape. Is it possible to ...
1
vote
3answers
145 views
Implementing a web page from a .psd file [closed]
I want to develop a login page for my application. I searched on Internet and found a .psd file. I will write my own JavaScript code for it but how can I use that .psd file to get css files and images ...
1
vote
2answers
76 views
How to insert correctly different pictures to a single file
I don't know if it's possible, since my knowledge of image processing is low. I need to put my passport size photo on an A4 sheet so that I could print it out out. I tried using GIMP, great tool. Like ...
1
vote
1answer
93 views
Script-Fu giving me “Illegal Function”
this is my first script-fu for gimp and it gives me "illegal function" when i try to execute it there.
(define
(
script-fu-c64ize
filename
width
height
)
...
1
vote
2answers
109 views
How to downsize, scale, and colour-reduce PNGs at the command line? (Linux, Makefile)
From within a Makefile I like to reduce the size of PNGs.
I tried first ImageMagick, but while I could resize (down) the images and reduce their colours to 32 (or the depth to 5 bits), the actual ...
1
vote
1answer
55 views
How to record what tools I used to make image in GIMP?
I want to proceduraly generate textures made by GIMP. I know there is GIMP library for Python which can call GIMP's tools with parameters. If I know what tools (with parameters) GIMP used then I ...
1
vote
1answer
79 views
How to Configure Visual Studio 2010 to run GEGL library?
Using the tutorial of Compiling GIMP I have compiled GIMP, GEGL, Babl in windows. i had some errors, but those were on GIMP. i am not concerned about GIMP right now. i just want to use the GEGL ...
1
vote
1answer
176 views
How to build a GIMP plug-in with Visual Studio?
I am going to develop an application for android using the GEGL library of GIMP. I am using visual studio 10. how to build the plugin with visual studio? what are the steps? how to run a GIMP project ...
1
vote
1answer
1k views
Is it possible to use GIMP's image capabilities from an Android application?
I was using opencv for some time for programming in Android. now i see that gimp library is much more stronger. so, where can i have a starting point to learn gimp.
I also want to know the basic ...
1
vote
2answers
525 views
How do I write a custom auto-crop script using the GIMP?
I have a bunch of screen shots and I'd like to crop out the window border. I would like to crop them all using a script.
I have access to the GIMP, but not photoshop so I assumed that the GIMP would ...
1
vote
2answers
91 views
Writing Matrix conversions with Scheme for GIMP
I want to write some nice Math with DrRacket(R5RS but not only) (Racket Tag is a bit empty).
I would really like to code some matrix stuff like:
(3 3 3) (5 3 4)
(4 4 4) -> (5 3 4)
(5 ...
1
vote
1answer
95 views
Scriptfu not executing in the correct order, Why?
I'm trying to write a basic script for GIMP but it doesn't seem to want to work right. It should follow this order after I make my selection: Lower active layer, expand selection 2px, floodfill w/ ...
1
vote
0answers
179 views
GdiPlus::DrawImage stretches image after I have edited it with GIMP?
I use this code to draw a png into my device context:
auto_ptr<Gdiplus::Graphics> g(Gdiplus::Graphics::FromHDC(pDC->GetSafeHdc()));
g->DrawImage(pPng, xDest, yDest, xSrc, ySrc, nSrcWidth, ...
1
vote
1answer
119 views
How to use Script-fu to select stroke line as in the “Stroke Path” - “Stroke Line” dialog
In Gimp 2.6 there is an "Edit" -> "Stroke Path" dialog. Within this dialog there is a "Stroke Line" area with options for line-width, Cap style, Join Style, Mitre limit, etc.
How would I stroke a ...
1
vote
2answers
204 views
Programming GIMP's Curves Tool
I am taking a look at GIMP's Curves Tool, and is wondering the procedure behind this great tool. I grab GIMP's source code, and tries to understand it. But I realized, without proper knowledge, this ...
1
vote
3answers
91 views
How would I perform many random operations to a set of images?
I need to manipulate an image such that a sub-rectangle of it is flipped or rotated relative to the rest of the image. Here's an example:
This manipulation needs to happen many times, each time ...
1
vote
1answer
301 views
problem about a simple gimp script
I have taken photos from my negative and I want to invert the color in a batch, I have "somehow" copy and paste a script like this:
(define (batch-negative pattern)
(let* ((filelist (cadr ...
1
vote
1answer
296 views
Open-source implementations of a photoshop-like quick select algorithm?
Are there any open-source implementations of an graph-cut algorithm similar to that used for Photoshop's quick select tool? I'm researching for a personal project of making a GIMP tool\plugin similar ...
1
vote
1answer
294 views
What is the difference between .psd (photoshop) and .xcf (gimp) file types?
What are the technical specifications/capabilities of each file format?
Does one type handle certain types of graphics better than the other?
1
vote
1answer
734 views
Read SVG file with Python/PIL
I'm new to Python so please be patient with me.
Basically my script should run like this:
1) Load an image and split it into R, G, B channels
2) Mark an area of that image with an existing path ...
1
vote
1answer
449 views
GIMP get layer position relative to the image
i'm coding in python-fu and i need to get the layer position relative to the image (eg. the layer starts at x=35, y=50)
Is this possible? I haven't found anything in the gimp pdb docs
1
vote
1answer
270 views
How to check if program was compiled with debug symbols?
I'd like to trace some code in GIMP and therefore need GIMP with debug symbols enabled. I don't remember whether I have enabled them during compilation. How to check that without recompiling the ...
1
vote
2answers
174 views
How to use gimp_drawable_set_pixel()?
I could like to set a pixel in GIMP, but I can't figure out how to specify the pixel value.
According to the GIMP plugin API it says:
gboolean gimp_drawable_set_pixel (gint32 ...
1
vote
2answers
67 views
Automatically add date to .gif
Alright,
What Im looking for is a script that would automatically add a date to a .gif, which I can run daily as a cron job. I don't know perl very well, but It seems that Perl & Gimp might be a ...