Tagged Questions
The script-fu tag has no wiki summary.
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
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
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
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
1answer
161 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 ...
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
3answers
47 views
Pass a line and file contents into a program as stdin
I'm trying to pass in a file and a single line of code into a program, say example.
My line:
i := 1;
My file (file):
blah1
blah2
blah3
Input to program:
i := 1;
blah1
blah2
blah3
I'm ...
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
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
3answers
193 views
Mix command and variables in shell scripting
I need a very simple shell script that processes all images on a folder and changes its size. The image processing is done with gimp script-fu and the only thing that the shell script have to do is ...
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
1answer
795 views
How to copy guide lines in The Gimp?
Is it possible to copy guide lines from one image to another?
I need this because I have several images that need exactly the same composition, so I want to use the guide lines for this.
There's no ...
1
vote
1answer
447 views
How to append to a file using Scheme?
I am using TinyScheme (actually Script-Fu in GIMP), and cannot find a good way to open a file and append a line of text to it.
I am trying to log some info to the file for debugging, and ...
0
votes
1answer
24 views
Using gimp as server on windows
Here is my problem.
CONTEXT
I'm building a whole system to handle images processing in my company. We are processing .psd and .cr2 file making a whole lot of differents operations (like developping ...
0
votes
1answer
52 views
GIMP Script-FU - Error: not enough arguments
GIMP script-fu-newbie here.
I can't see anywhere in the documentation of GIMP 2.6 why this shouldn't work:
;Define the main function
(define (script-fu-rubber-stamp img drawable)
...
0
votes
1answer
30 views
Script Fu - Brightness
I was wondering if anyone knows how to use script-fu in order to have gimp read in an image, modify the brightness/contrast and then save the image.
Thanx
0
votes
2answers
97 views
How can I make a string with expandable keywords in Scheme?
I'm writing a GIMP script to export layers to files. I want to provide a user-specifiable field where they can provide the format for the filenames to be exported, with tilde-character combinations ...
0
votes
1answer
613 views
number->string and related procedures in GIMP scheme scripting
I am frustrated with string-to-number and number-to-string conversion in GIMP scripting. I am runnning GIMP 2.6.8 in Windows Vista.
I understand that GIMP's internal Scheme implementation changes ...
0
votes
3answers
259 views
Script-fu IDE?
What's the best programming environment for programming in scheme for Gimp 2.6?
Does Guile integrate well with Gimp?
-2
votes
2answers
77 views
How do I use this Perl script? [closed]
I found this perl script online but I don't know how to use it. When I run it it opens up an empty terminal. I don't know what to put in to the terminal to make it work.
The script can be found here: ...