Yes, I want to use GIMP to create a transparent image with some text on my Ubuntu box. Please help.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can call GIMP from the command line with a single “script-fu” expression, using the -b switch (for “batch”).
Creating an image with some text in GIMP is a multi-step process, you will have to:
Each of these steps is a call to GIMP’s PDB API, as can be browsed by going to Help->Procedure Browser
There are “logo” scripts that automate steps 1-4, and add some (sometimes) nice effects, as the script-fu-basic1-logo procedure – but it won’t save the image to file in the same step.
Threfore, you have to write a small scheme – or Python – script to perform all the steps you want to, and invoke GIMP on the command line calling this script of yours.