It is currently Thu Apr 25, 2024 12:35 pm


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 25 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: Need help creating a script - import text and images into template
PostPosted: Thu Apr 03, 2014 7:48 pm  (#1) 
Offline
GimpChat Member

Joined: Apr 03, 2014
Posts: 14
Hello! I am looking for help automating GIMP. We are a non-profit looking to expand our messaging but need help automating our process.

In short: I have a template with 5 Layers reserved for unique content ( I call these dynamic layers). After I populate the layers with images and text I export the image in jpeg for use on the web. Imagine a brochure with the 5 content boxes, each box in my case is a layer (there are additional layers in the image with static content). I change the content boxes to create the various "brochures". 2 layers are images, and 2 are text, the fifth is also an image.

What I would like to do is automate the process because I am in need of a lot of content for messaging purposes that is tailored for particular audience(s).

Some consideration:

1.) Using a text file called left_text.txt, I create messages, one message per line. There will be multiple lines of text. Text Left Layer
2.) Using a text file called right_text.txt, I create messages, one message per line. There will be multiple lines of text. Text Right Layer
3.) In a particular folder: place images to be used in one of the layers called left image.
4.) In a particular folder: place images to be used in one of the layers called right image.
5.) Image Banner - a folder with images used as banner images: place images to be used in the banner layer.
6.) always center images
7.) always us the formatting of the text layers

My though then is to automate the process as follows:

Start a script to:
1.) Pull the first line of text from the left_text.txt file and place it in the corresponding left text layer
2.) Pull the first line of text from the right_text.txt file and place it in the corresponding right text layer
3.) pull a random image from the right image folder and place it into the right image layer
4.) pull a random image from the right image folder and place it into the left image layer
5.) pull a banner image and place it in the banner layer
5.) save the file in xcf format
6.) clear the layers in a designated folder (can be a fixed folder!)
7.) Still using the first line of text in the left_text.txt file Iterate through each line of text in the right_text.txt file until all lines have been processed.
8.) move to the second line of text in the left_text.txt file and repeat the process of placing the text in the formatted text boxes and image boxes for all text lines in the text_right.txt file.

** Special Note: At times there will be no lines of text in the text_right.txt file. In which case skip the placing of text right text but do continue to process image files in image_right layer, image_left layer and banner_layer.

** Special Note: There will generally be more image files then text strings and that is why I am asking that random images be selected. If I change the message and we always start with the first image then the first images would be selected most often...

Once this is complete I should have a wide array of images including all the text information against random images which I can then review and adjust. I will scale images, move text...to perfect the final images but the bulk work of inserting the text and images into created images will be accomplished by the script.


Can anyone help?

Thanks, Rich


Share on Facebook Share on Twitter Share on Orkut Share on Digg Share on MySpace Share on Delicious Share on Technorati
Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Thu Apr 03, 2014 9:55 pm  (#2) 
Offline
Script Coder
User avatar

Joined: Apr 23, 2010
Posts: 1553
Location: not from Guildford after all
I could work on this over the weekend, however, some additional information/clarification would be helpful.

From the list describing the automated process:
    3.) Can the same image appear twice for a given line in the right_text.txt file? Note that should unique right images be desired, the number of images in the right_image folder needs to equal or exceed either the number of lines in the left_text.txt file or the product of the number of lines in the left_text.txt file and the number of lines in the right_text.txt file, whichever is greater.
    4.) I assume it is a typo that the left_image is not being pulled from a left_image folder. Please confirm. Can the same image appear twice for a given line in the left_text.txt file? Note that should unique left images be desired, the number of images in the left_image folder needs to equal or exceed the number of lines in the left_text.txt file.
    5.(the first) From "consideration 5" I would assume there is to be a banner_image folder and the banners randomly selected as in 3 and 4. Please confirm. As in the preceding commentary, are these banners to be guaranteed unique? (If unique then the italicized note in my response to 3 applies.)
    5.(the second) How should the saved XCF files be named?
    6.) I do not know what this means. Please clarify.

It would also be helpful to know what the possibilities are for the filenames of the input images; e.g. "*.png", "*.PNG", "*.jpg".

And if you could provide some example files, it would be much appreciated.

_________________
Any sufficiently primitive technology is indistinguishable from a rock.


Last edited by saulgoode on Thu Apr 03, 2014 10:06 pm, edited 1 time in total.

Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Thu Apr 03, 2014 10:06 pm  (#3) 
Offline
Global Moderator
User avatar

Joined: Nov 16, 2011
Posts: 5128
Location: Metro Vancouver, BC
CSS Sprites might work for you.
A Gimp script to consider, CSS WebSprites.

_________________
Image
Gimp 2.8.18, Linux, median user
Gimp Chat Tutorials Index
Spirit Bear (Kermode)


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Fri Apr 04, 2014 12:51 pm  (#4) 
Offline
GimpChat Member

Joined: Apr 03, 2014
Posts: 14
Hello saulgoode:

Here are my responses embeded inline with your questions. also, I have attached one of the templates I am using. I have several but they carry the same format and the final product is the same. Which, either I will rename templates to work with your script or you'll be able to offer a way to input a file name to use as the template. If we must use a file name lets pick something easy like bantemp.xcf

Let me add that I an very thankful for your help on this. If you have a paypall or would like a small donation to go someplace please let me know. I am obviously not a rich man or I wouldn't have tried this on my own...that said, this will be something very special for our organization as we will be able to communicate in new and exciting ways.

I could work on this over the weekend, however, some additional information/clarification would be helpful.

From the list describing the automated process:

3.) Can the same image appear twice for a given line in the right_text.txt file?
Note that should unique right images be desired, the number of images in the right_image folder needs to equal or exceed either the number of lines in the left_text.txt file or the product of the number of lines in the left_text.txt file and the number of lines in the right_text.txt file, whichever is greater.

The "text" line in the right_text.txt are marquee texts. There will only be a few of them and it is expected that they will be frequently reused.

So, yes it is inevitable that the same image inserted on the right side repeats the same line of text (on the right side) found in right_text.txt.


4.) I assume it is a typo that the left_image is not being pulled from a left_image folder. Please confirm. Can the same image appear twice for a given line in the left_text.txt file? Note that should unique left images be desired, the number of images in the left_image
folder needs to equal or exceed the number of lines in the left_text.txt file.

A left image should be pulled from the left image folder...

The images in the left side are swatches of color or gradients and will be a minimum number. Hence it is inevitable that the images on the left side will be re-used frequently.


5.(the first) From "consideration 5" I would assume there is to be a banner_image folder and the banners randomly selected as in 3 and 4. Please confirm. As in the preceding commentary, are these banners to be guaranteed unique? (If unique then the italicized note in my response to 3 applies.)

Yes, there will be a banner_iamage folder. There are a limited number of banners and it is inevitable that they will be reused


5.(the second) How should the saved XCF files be named?

Is it possible to allow me to set a folder? Is it possible to allow me to set
a prefix "name" and you add a numerical 4 digit suffix? Something like this: c:{nemaed_folder}\{named_prefix (I will include a dash)-}xxxx.xcf
Final format would look like this" c:\folder\filenamename-xxxx.xcf

6.) I do not know what this means. Please clarify.

Here is what I do: I select the layer I want to place a picture into ( image_right layer for example). Then I open an image I want to paste into this layer (any image.png) When I place the image in this layer it is "floating"...then I position the image within the frame
of the layer (image_right layer) and then I anchor the pasted layer. So good so far...

Noting: when I place the image and it is floating I can position it wherever I want. But anchoring it crops the image to the layer I am pasting into. In a manual mode this is fine because I place the image and move it wherever I want before I anchor it. However: when we automate the process we need to overcome the anchoring aspect because I still want to be able to proof the document and move the image to focus on the area of the image we want to show. THEN MANUALLY anchor it before I export it.

My statement about centering the image was simply intended to place the image in a fixed position so that I could select it and move it.

It would also be helpful to know what the possibilities are for the filenames of the input images; e.g. "*.png", "*.PNG", "*.jpg".

Lets use *.png


And if you could provide some example files, it would be much appreciated.

Here is the xcf I use as my template with images and text populated in the layers


Attachments:
File comment: Gimp image of Shelter The World Template.
STW_Template_Large_Format_001_twitter.xcf [2.56 MiB]
Downloaded 230 times
Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Fri Apr 04, 2014 1:14 pm  (#5) 
Offline
GimpChat Member

Joined: Apr 03, 2014
Posts: 14
Hello saulgoode:

I have another thought I'd like to ask about. Currently, after I edit the template, insert text and images, move things around...I export the image in jpeg format. Later I go back and crop the image x pixels wide and x pixels high from the top left corner...The reason being is we also use the images on LinkedIn, twitter and facebook. That said are you aware of a script that I could run in batch mode to process these cropped images?

By your efforts we'll be able to focus on content and distribution and have a mini production capability...

Thanks again...I look forward to hearing from you soon. Rich


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Fri Apr 04, 2014 6:30 pm  (#6) 
Offline
Script Coder
User avatar

Joined: Apr 23, 2010
Posts: 1553
Location: not from Guildford after all
Thanks for your clarifications. I have the bulk of the script sussed out, however, I would really appreciate if you could provide me with a zipped file (or a tarball) of the three directories containing some images and .txt files.

My script currently looks for the "left_text.txt" file in the left image folder, and for the "right_text.txt" file in the right image folder. This can be changed if it is unsuitable.

_________________
Any sufficiently primitive technology is indistinguishable from a rock.


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Sat Apr 05, 2014 7:16 pm  (#7) 
Offline
GimpChat Member

Joined: Apr 03, 2014
Posts: 14
Hello saulgoode! I attempted to post earlier and thought I'd check for a response...however, it appears I must not have submitted the reply. At any rate, here is the directory structure with images and text. I trust this is what you were looking for.

Rich

oops I see the problem...I missed the message informing me the compressed file was too large...here is a smaller version.


Attachments:
File comment: directory with text and images
STW.zip [4.1 MiB]
Downloaded 304 times
Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Sat Apr 05, 2014 9:53 pm  (#8) 
Offline
Script Coder
User avatar

Joined: Feb 18, 2011
Posts: 4827
Location: Bendigo Vic. Australia
Yours is a Noble cause Richg, so I'm pleased that Saulgoode has answered your request (I viewed the files) :bigthup

_________________
Image
No matter how much you push the envelope, it'll still be stationery.


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Sun Apr 06, 2014 9:23 am  (#9) 
Offline
Script Coder
User avatar

Joined: Apr 23, 2010
Posts: 1553
Location: not from Guildford after all
I have completed a first cut of your script which you can download from here, however, ...

You are going to have to alter your template file a little bit. The script is not able to handle the left and right text layers in their current form. The problem lies with the fact that the on-screen text editor creates different text than that created using the old-style text editor. Whereas a text layer created in the traditional fashion might contain "This is MY House", when created with the onscreen editor it will contain "<markup><span font=\"Sans\"><span size=\"11796\">This is MY House</span></span></markup>". (This latter form used by GIMP is a limited subset of the Pango markup format.)

Unfortunately, the interface has not yet been created for plug-ins to set this type of markup text. There is an interface for my script to read the markup text for a layer; however, this interface is buggy and can not be relied upon for the information I need for this script (for example, the markup for your text layers does not include the name of the font being used).

What you need to do to remedy this is:
  • Double-click on the text_left layer to activate the Text Tool.
  • If the Tool Options dialog is not visible, perform "Windows->Dockable Dialogs->Tool Options" to raise it (the dialog should show the options for the Text Tool).
  • Click on the corresponding (left) text in the image window and then using the DELETE and BACKSPACE keys to remove all of the text.
  • In the tool options dialog, choose your font and font size.
  • In the tool options dialog, check the box labeled "Use editor". A small dialog box should appear somewhere on your screen.
  • Enter your text into this dialog.
Repeat the above steps for the text_right layer and then save your template. [*] In the future, do not use the on-screen editing features for creating/editing the text_left and text_right layers. If you want to change the font or its size, use the settings in the Tool Options dialog.

The script adds the command "Filters->STW->Create Brochures..." which should be run with your template file. The template file should contain your five "dynamic" layers. These layers are identified by their names and thus should be named text_left, text_right, image_left, image_right, and banner_image.

The dialog that appears when you run the command is pretty self-explanatory.
Image
You do, however, need to make sure that the output directory exists before you press OK -- the script is not able to create the directory (yet). There should be an option to create a directory in the file dialog that appears when you choose "Other" from the Output Folder dropdown. The names of the files created will be of the form brochure-0001.xcf, brochure-0002.xcf, brochure-0003.xcf, ... where "brochure-" is the Output Basename specified in the dialog.

The image_left and image_right layers in the output files will have layermasks added to them. This is done so that the entire layer is available (i.e., it is not cropped) and can later be repositioned. When you use the Move Tool to reposition a layer that has an attached layermask, the mask will be moved along with the layer -- we do not want this. So...

I have added a second command "Filters->STW->STW Float Layer" that will turn the layer into a floating selection, allowing you to use the Move Tool to position the layer as you please (while the mask remains in place), anchoring the floated layer when done. The command is also available by right-clicking on the layer's thumbnail preview in the Layers Dialog.

Finally, any of the output brochure files can serve as a template. If an image_ layer has a layermask then the boundaries of the mask determine the framing of the image; if there is no mask then it is the layer itself.

Here is an example of the brochures (scaled down) produced from your example files.
Image

You can download an example output brochure from here (download it using the Original File link in the lower right). Note that I substituted fonts for the dynamic text layers as I did not have the ones you used on my machine.

_________________
Any sufficiently primitive technology is indistinguishable from a rock.


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Sun Apr 06, 2014 11:17 am  (#10) 
Offline
GimpChat Member

Joined: Apr 03, 2014
Posts: 14
Thank you saulgoode! What I do is a labor of love...I've been so fortunate in my life and giving back is the best reward I've ever received!

This was extremely quick! I will begin practicing with the script in a few hours and will post back any questions. In the meantime did you see the post regarding the cropping and saving as jpegs.

So you don't have to scroll here is a summary of what I was hoping to do. Most social media sites have the ability to upload images. The problem is they each unique image size requirements. I would like to define the image size I am interested in by essentially cropping the brochure. The brochure has been crafted to allow for cropping at logical places to fit the image requirements of the social media sites. For example the upper left image and text get cropped for linked in...the upper banner gets cropped for twitter...you get the idea.

Would it b possible to grate a script that

1.) allows me to "set" the x an y offset ( in px) from the upper left corner of an image and save it to a directory?
2.) export for web as jpg
3.) run the script while gimp open or closed...open would allow me to set the offsets without needing to edit the script...either way
4.) naming convention can the the open file name appended with the image size.
5.) since these are all coming from our STW directory we could simply write them back to the same directory with the appended image size : For example: original file name is c:\folder\filenamename-xxxx.xcf exported file name would be c:\folder\filenamename-xxxx-wXl.jpg OR c:\folder\filenamename-xxxx-500X500.jpg or c:\folder\filenamename-xxxx-100X500.jpg

I am hoping this is fairly simple to do...

Also, have you given any though on a donation?

Thanks, Rich


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Sun Apr 06, 2014 1:09 pm  (#11) 
Offline
GimpChat Member

Joined: Apr 03, 2014
Posts: 14
Good afternoon saulgoode; very nice job on the script...I followed your instructions and everything worked as advertised...I was wondering how you were going to get past the floating layer requirement...sure was a clever add. And the thought you gave as to where to add the command in the right click dialog is perfect! After the right click on the layer and the float command is just a tad bit of movement away.

This truly is perfect and I thank you for your kind words and taking the time to understand what I was looking for.

If I could change 1 thing this is what it would be: 99% of the time; once I float the layer the only thing I am doing is re-positioning the image in the layer...Hence is there a way to automatically select the move tool?

Also, I really do like the way the text function is working...I do not know if it is by accident or design but this method actually makes it easy to manipulate the text size, font selection, and color WITHOUT needing to select the text. So a quick double click on the layer and then over to the text management dialog. Again, this is perfect.

Other than that one suggestion, all is all good! If you get the chance, please see my previous message about a cropping script!

With warm regards,

Rich


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Sun Apr 06, 2014 1:39 pm  (#12) 
Offline
Script Coder
User avatar

Joined: Apr 23, 2010
Posts: 1553
Location: not from Guildford after all
Richg wrote:
This truly is perfect and I thank you for your kind words and taking the time to understand what I was looking for.

The kind words were from Graechan. I was the obnoxious guy asking all the annoying questions.

Richg wrote:
If I could change 1 thing this is what it would be: 99% of the time; once I float the layer the only thing I am doing is re-positioning the image in the layer...Hence is there a way to automatically select the move tool?

Unfortunately, there is no way for a script to switch the active tool. You're going to have find out where the "M" key is on your keyboard. ;)

With regard to cropping, I highly recommend that you install gimp-gap (Gimp Animation Package). It will provide a whole slew of plug-ins that will simplify further processing of your brochures.

  • You can navigate your brochures very quickly using the commands in "Video->Go To".
  • You can make copies of all of your brochures, as well as convert them all to JPG or PNG, using "Video->Frames Convert". (Note: your naming convention will need to have the size before the brochure number in the filename: brochure-500X800-xxxx.jpg)
  • You can scale your brochures (particularly the final JPEGs) using "Video->Frames Scale".
  • You can crop your brochures using "Video->Frames Crop".
  • You can run any GIMP plug-in on particular layers of your brochures using "Video->Frames Modify". For example, you could add a drop shadow or outline to the text layers to ensure greater visibility.

_________________
Any sufficiently primitive technology is indistinguishable from a rock.


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Sun Apr 06, 2014 7:14 pm  (#13) 
Offline
GimpChat Member

Joined: Apr 03, 2014
Posts: 14
Dear saulgoode: well then, all is done here! It took me a while but I've located the "M" key and it seems to be working Marvelously! :roll: I'll get the gimp-gap plugin and learn some more. It is amazing what's available...and who's available. Thanks again..see you around! Rich


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Mon Dec 08, 2014 8:41 pm  (#14) 
Offline
GimpChat Member

Joined: Apr 03, 2014
Posts: 14
Hi Saul...I hope you are doing well. This is Rich from Shelter The World. Earlier you created a script for me...AND...it is perfect. I have another script I would like your help with. The last script is doing wonderfully and we are attracting people from our social media sites which has been exciting! I would like to up our game just a bit and get another script that does something a bit differently. This time I want to thank our social media followers with a personal graphic message. I have a list of followers and I have their social media handle Like @ShelterTheWorld (on twitter) and the link to their profile image. I would like to use that information with a message and then post it. Hence like your last script I need to import information into a gimp template. The difference this time is that I will only have one file AND the image I am needing is a link.

SO; the file structure would look like this:

social_media_handle,link_to_profile_image, message

with data it would look like this

@sheltertheworld, https://pbs.twimg.com/profile_images/53 ... mrRe2r.png, Thank you for your support by following #ShelterTheWorld

The social media card then looks something like this:

Image


Just like last time I am looking to batch process hundreds of these cards...however, this time we can export them directly as jpeg files because we are controlling the message length, and the image sizes so nothing needs to move around.

if possible, exporting using the social media handle (dropping the @) would make it very easy then to post the image and know who it is going to.

Note: profile images are sRGB and must be converted to RGB
Note: profile images are small and need to be scaled to 100 X 100 px. (anything you can do to help with lossless scaling would be great :)

If you are interested and are able to help that would be great. Please let me know if you are/can.

With warm regards, Rich


Attachments:
Holiday Thanks.xcf [354.47 KiB]
Downloaded 98 times
Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Tue Dec 09, 2014 1:21 pm  (#15) 
Offline
Script Coder
User avatar

Joined: Apr 23, 2010
Posts: 1553
Location: not from Guildford after all
Richg, I need a few days to extricate myself from some current tasks; maybe this weekend I will be able to look into this.

In the meantime, please check that you are able to use "File->Open Location..." to open the social media profile image in GIMP and let me know the result.

_________________
Any sufficiently primitive technology is indistinguishable from a rock.


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Tue Dec 09, 2014 4:35 pm  (#16) 
Offline
GimpChat Member

Joined: Apr 03, 2014
Posts: 14
Hi Saulgoode! I am glad you are willing to look into this. I presently use the "OPEN LOCATION" feature quite a bit and validated the functionality specifically with twitter before I made the request so that part is good to go!

However; as I've continued to ponder this there is a particular nuance I must make sure you are aware of. Namely, the social_media_handle (especially for twitter will contain the @ character. I would like to save the image using the social_media_handle so that I can easily identify who it goes to...AND...fortunately, the @ character IS one of the few special characters allowed by Windows. So I'd like to try to go with saving/exporting as jpegs using this social_media_handle.

Thanks, good to hear from you...rich


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Mon Dec 15, 2014 5:10 pm  (#17) 
Offline
Script Coder
User avatar

Joined: Apr 23, 2010
Posts: 1553
Location: not from Guildford after all
I made good progress over the weekend but the script is not yet ready.

It would facilitate things for me if you could provide the following:
  • A PNG file of the base image of the "card" (without the message or profile picture).
  • A PNG file of the "card" with a solid RED rectangle where the profile picture is to be placed, and a solid BLUE rectangle of where the text is to be placed.
  • An example text file with about ten entries for different recipients. This can be sent to me through PM out of concern for your contributors' privacy. This information will be used only for testing and will not be published.
  • A link to where I can obtain the font you wish to use (if the font is not one of GIMP's default fonts).

_________________
Any sufficiently primitive technology is indistinguishable from a rock.


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Tue Dec 16, 2014 9:29 am  (#18) 
Offline
GimpChat Member

Joined: Apr 03, 2014
Posts: 14
Hi Saulgoode, I'll get the requested files to you shortly. In the meantime, I had attached an xcf file along with my earlier message (hopefully that will get you started. As with the last script that you created I am hoping I'll be able to adjust fonts and text position, profile image position etc... for various topical messaging. I have been able to be quite creative with the previous script as you provided flexibility in setting fonts and image size, placement...


Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Wed Dec 17, 2014 8:55 am  (#19) 
Offline
GimpChat Member

Joined: Apr 03, 2014
Posts: 14
Hi Saulgoode! Here are the last of the requirements you asked for

1.) font "architects Daughter" can be downloaded here: http://www.fontsquirrel.com/fonts/architects-daughter
2.) blank png and red-blue highlighted png's attached.

I hope you are doing well and saw my PM yesterday. If you need more, please let me know.

Thanks, Rich


Attachments:
Holiday-Thanks-red-blue.png
Holiday-Thanks-red-blue.png [ 112.83 KiB | Viewed 1684 times ]
Holiday-Thanks-blank.png
Holiday-Thanks-blank.png [ 112.77 KiB | Viewed 1684 times ]
Top
 Post subject: Re: Need help creating a script - import text and images into template
PostPosted: Wed Dec 17, 2014 10:07 am  (#20) 
Offline
Script Coder
User avatar

Joined: Apr 23, 2010
Posts: 1553
Location: not from Guildford after all
You may wish to consider increasing the size of your message area (blue rectangle). The following examples show the difference that can be achieved by allowing the text to extend down toward the top of the logo.

Small message area:
Attachment:
ack-8pt-font.jpg
ack-8pt-font.jpg [ 53.5 KiB | Viewed 1682 times ]


Larger message area (extends down to logo):
Attachment:
ack-10pt-font.jpg
ack-10pt-font.jpg [ 58.26 KiB | Viewed 1682 times ]


Of course, I am using a template image (similar to the brochures) so you will be able to adjust this later. (Increasing the overall image size and/or using PNG files instead of JPEGs should also improve the text quality, though doing either would increase the file sizes.)

I should be finished with the first cut in about a day.

_________________
Any sufficiently primitive technology is indistinguishable from a rock.


Top
Post new topic Reply to topic  [ 25 posts ]  Go to page 1, 2  Next

All times are UTC - 5 hours [ DST ]


   Similar Topics   Replies 
No new posts Creating a Rubik's Mosaic Template

4

No new posts Attachment(s) [solved] problem with creating a template

6

No new posts Attachment(s) Creating text (layer?) presets/profile?

15

No new posts Attachment(s) converting 32 bit images to 8 bit using batch script

5

No new posts Attachment(s) Batch export all opened images script for GIMP [Update]

13



* Login  



Powered by phpBB3 © phpBB Group