TweetFollow Us on Twitter

Introduction to Scripting GraphicConverter

Volume Number: 22 (2006)
Issue Number: 9
Column Tag: AppleScript Essentials

Introduction to Scripting GraphicConverter

by Benjamin S. Waldie

In last month's column, we began discussing scriptable creative applications. Specifically, we looked at Adobe Photoshop, and explored how opening, manipulating, and saving graphic files can be automated using AppleScript.

This month, we will discuss scripting GraphicConverter, another popular graphic conversion and manipulation application, which is available from Lemke Software GmbH. While not packed with all the bells and whistles of something like Adobe Photoshop, GraphicConverter does offer quite a lot of bang for your buck.

GraphicConverter supports opening approximately 190 different graphic file formats, and saving approximately 79 different graphic file formats. One of GraphicConverter's great fortes is converting graphics from one type to another, hence its name. It also possesses the ability to manipulate graphics by rotating them, scaling them; applying filters, and more, many of the types of tasks that users often want to automate in order to batch process their graphic files. Furthermore, many features of GraphicConverter are controllable via AppleScript.

If you are not yet familiar with GraphicConverter, or if you plan to follow along with the examples in this month's column, then I encourage you to download the fully functional demonstration version of GraphicConverter from the Lemke Software website at <http://www.lemkesoft.com/>. For the cost of the non-demo version (currently only $30 for a single user license!), you may find it well worth adding to your software collection, especially if you plan to automate graphic conversion and manipulation with AppleScript, but don't need all of the functionality of something like Photoshop.

Lemke Software updates GraphicConverter on a very regular basis, and many of these updates include changes to its AppleScript terminology, which may require that you make changes to existing scripts. In any case, to ensure the highest level of AppleScript support, it is best to ensure that you are using the latest version of GraphicConverter. Just be sure to review the release notes in order to determine which AppleScript changes, if any, have been made between versions. Also, in case an updated version of GraphicConverter introduces AppleScript changes before this month's column is published, please note that all code that follows was written and tested with GraphicConverter version 5.9.1.

Getting Started

Opening Graphics

Whether you plan to automate GraphicConverter for the purpose of converting graphic files from one type to another or for manipulating graphics, you will most likely need to open them first. The reason I say most likely is because there are actually ways to batch process and interact with graphic files using GraphicConverter and AppleScript without writing code to open them. I would encourage you to explore GraphicConverter's AppleScript dictionary carefully to learn more about these and many other scriptable functions that we won't have a chance to touch on in this month's column.

There are a few different ways that graphics can be opened in GraphicConverter via AppleScript. Like most applications, GraphicConverter has an open command, which may be used to open graphic files. The following example code demonstrates the usage of this command.

set theImage to choose file with prompt "Please select an image file:"
tell application "GraphicConverter"
   open theImage
end tell

Although the open command will usually suffice, you may actually want to consider using the silentopen command instead. At times, opening certain graphic files may cause a dialog or error message to be displayed, and the silentopen command will attempt to open a specified graphic file without displaying such a dialog.

While this command may not prevent all dialogs from being displayed, it can certainly help to reduce the possibility of one appearing and holding up your automated process.

tell application "GraphicConverter"
   silentopen theImage
end tell

    TIP: When using the silentopen command, if you still encounter a dialog when opening a certain type of file, be sure to select the Don't show this note again... checkbox in the dialog, in order to prevent that specific dialog from appearing again in the future.

GraphicConverter also has the ability to download and open an image using a URL, rather than referencing a local file. This is done using the urlopen command. For example:

tell application "GraphicConverter"
   urlopen "http://www.mactech.com/images/mt_logo_209x043.gif"
end tell

Working with Graphics



Figure 1. A Graphic Window in GraphicConverter

Referencing Graphics

When AppleScripting GraphicConverter, there is not an actual graphic class. Rather, a graphic is referenced using the window class. The following code will retrieve a reference to the frontmost graphic window.

tell application "GraphicConverter"
   front window
end tell
--> window "mt_logo_209x043.gif (Indexed)" of application "GraphicConverter"

You will notice that, in the result of the above code, the window's name contains the suffix (Indexed), following the graphic file's name. GraphicConverter has added this automatically to the window's (not the file's) name, in order to indicate that the mode of the graphic is set to Indexed Color.

As you might expect, based on the previous example's result, graphic windows can also be referenced by name. For example:

tell application "GraphicConverter"
   tell window "mt_logo_209x043.gif (Indexed)"
      -- Do something
   end tell
end tell

Again, the name of the graphic file referenced in the previous example does not actually contain the suffix (Indexed). Because of this, GraphicConverter is flexible, and you can optionally choose to refer to the graphic window using its referenced file's name, without the mode suffix. For example:

tell application "GraphicConverter"
   tell window "mt_logo_209x043.gif"
      -- Do something
   end tell
end tell

When referring to graphic windows by name, please be aware that the window name may change when performing various functions, such as changing the mode of the graphic, or saving the graphic using a new file name or type. Because of this, you may want to consider referring to graphic windows by their index, or front to back positioning. Of course, be aware that this may change as well, if new graphics are opened, or the windows are reordered. For example:

tell application "GraphicConverter"
   tell window 1
      -- Do something
   end tell
end tell

Throughout this month's column, I will be referring to graphic windows by index.

Working with Graphic Properties

In GraphicConverter, graphic windows possess a number of AppleScript-accessible properties, some of which are modifiable and some of which are read only. We will be discussing a few of these properties below. To view a complete list of accessible properties, please refer to the window class, located in the Standard Suite in GraphicConverter's AppleScript dictionary. See figure 2.



Figure 2. GraphicConverter Window Properties

Assuming that a graphic window corresponds to a saved graphic file, and is not a new unsaved window, you may retrieve a reference to that file by accessing the file property of the window. For example:

tell application "GraphicConverter"
   file of window 1
end tell
--> file "Macintosh HD:Users:bwaldie:Desktop:mt_logo_209x043.gif"

Another accessible property of a graphic window is resolution. This property's value will be a list, indicating the horizontal and vertical resolution of the graphic. For example:

tell application "GraphicConverter"
   resolution of window 1
end tell
--> {72, 72}

The resolution property is also modifiable, and may be adjusted, if desired. The following code will change the horizontal and vertical resolution of the frontmost graphic window to 150 dpi.

tell application "GraphicConverter"
   set resolution of window 1 to {150, 150}
end tell

In GraphicConverter, the resolution of a graphic may also be modified using the change resolution command, which can be found in the GraphicConverter Suite in GraphicConverter's AppleScript dictionary.

tell application "GraphicConverter"
   change resolution of window 1 to {150, 150} with resample
end tell

Unlike the resolution property of a graphic window, the change resolution command provides the ability to specify whether the image should be resampled to the new resolution.

Another modifiable property of a graphic window is mode. The value of this property will be an integer that specifies the mode of the graphic - 0 for bitmap, 1 for indexed color, 2 for grayscale, 3 for RGB, and 4 for CMYK. For example, the following code would change the mode of the frontmost graphic to CMYK.

tell application "GraphicConverter"
   set mode of window 1 to 4
end tell

Accessing File Info

As you may know, or recall from last month's column, it is possible to associate metadata, such as captions, keywords, and more, with certain types of graphics. In GraphicConverter, many of these metadata fields are accessible to AppleScript via properties of a graphic window.

The following code, for example, will retrieve the caption of the frontmost graphic window by accessing the window's IPTC caption property. If a caption is not applied to the graphic, then an empty string will be returned.

tell application "GraphicConverter"
   IPTC caption of window 1
end tell
--> "Trip to the beach."

To retrieve a list of keywords applied to a graphic, access the graphic window's IPTC keywords property.

tell application "GraphicConverter"
   IPTC keywords of window 1
end tell
--> {"Summer", "Vacation"}

GraphicConverter provides AppleScript with access to numerous IPTC metadata properties, which, in addition to being readable, may be modified if desired. The following code demonstrates how new keywords could be appended to the existing keywords of a graphic window.

tell application "GraphicConverter"
   tell window 1
      set theExistingKeywords to IPTC keywords
      set IPTC keywords to (theExistingKeywords & {"Beach", "Fun"})
      IPTC keywords
   end tell
end tell
--> {"Summer", "Vacation","Beach", "Fun"}

Another way to access and modify a graphic's metadata is by using the get file iptc and set file iptc commands, both of which can be found in the GraphicConverter Suite of GraphicConverter's AppleScript dictionary. However, unlike the previous examples, these commands will allow the metadata of the graphic file to be accessed directly, without actually opening the graphic.

The following example code demonstrates the usage of the get file iptc command. Note that this command will return a list of all IPTC metadata fields at once. If you plan to use this command, then you will need to determine which metadata field each list item corresponds to.

set theGraphicFile to choose file with prompt "Select a graphic file:"
tell application "GraphicConverter"
   get file iptc theGraphicFile
end tell
--> {"Trip to the beach.", "", "", "", "Ben Waldie", "", "", "", "Beach Fun", "", "", "", "", 
   "", "", "", "-1", "Summer,Vacation,Beach,Fun", "Copyright Automated Workflows, LLC", 
   "http://www.automatedworkflows.com"}

As the next example demonstrates, the set file iptc command requires that a list of metadata field values be provided following the to labeled parameter. Like the previous example, to properly utilize this command, you will need to determine which metadata field each list item corresponds to.

set theGraphicFile to choose file with prompt "Select a graphic file:"
tell application "GraphicConverter"
   set file iptc theGraphicFile to {"2006 Summer trip to the beach.", "", "", "", "Ben Waldie", 
   "", "", "", "Beach Time Fun", "", "", "", "", "", "", "", "-1", "Summer,Vacation,Beach,Fun", 
   "Copyright 2006 Automated Workflows, LLC", "http://www.automatedworkflows.com"}
end tell

Another command, get file exif, may be used to retrieve the EXIF (Exchangeable Image File Format) data of a graphic file, again, in list format.

Manipulating Graphics

As mentioned, GraphicConverter can also be used to perform certain types of image manipulations. Not all of these are presently AppleScriptable, but a number of them are, and we will discuss a handful of these now.

Rotating Graphics

In order to rotate a graphic window, use the rotate command, and specify the desired angle of rotation. For example, the following code would rotate a graphic 90 degrees counter-clockwise.

tell application "GraphicConverter"
   rotate window 1 to angle 90
end tell

To rotate clockwise, specify a negative numeric value for the angle parameter. The rotate command also has some optional properties, which you can find in GraphicConverter's AppleScript dictionary.

Mirroring Graphics

The mirror command may be used to mirror a graphic window either horizontally or vertically. The following code demonstrates the proper usage of this command.

tell application "GraphicConverter"
   mirror window 1 in horizontal
end tell

Unsharp Mask

In GraphicConverter, it is possible to manually apply numerous filters to graphic windows. Some of these, such as unsharp mask, are accessible via AppleScript. To apply the unsharp mask filter, use the unsharp mask command, and specify the desired values for the command's radius, amount, and threshold parameters. For example:

tell application "GraphicConverter"
   unsharp mask window 1 radius 100 amount 100 threshold 0
end tell

Changing Brightness

Many visual aspects of graphic windows, including the gamma, hue, brightness, contrast, and more, are modifiable using commands in the GraphicConverter Suite. This next example shows how to change the brightness of a graphic window to a specified value.

tell application "GraphicConverter"
   change brightness window 1 to -25
end tell

Outputting Graphics

The save command is used to save a graphic window. At its most basic level, this command requires a single parameter - a reference to the window to be saved. To save a window in this manner, the window must reference an existing file in the Finder.

tell application "GraphicConverter"
   save window 1
end tell

To save a newly created graphic window, which does not yet reference a file in the Finder, you will need to specify the format, as well as the output path for the saved file. This is done by using the save command's in and as parameters. These parameters may also be used when you want to save a graphic window that does reference an existing file into a new location, or in a different format.

GraphicConverter can save approximately 79 different formats of graphic files. For a complete list of available save types, consult the save command in the Standard Suite of GraphicConverter's AppleScript dictionary. The following example code demonstrates how to save a graphic window as a JPEG to a file named Converted Graphic.jpg on the desktop. Please note that this would overwrite an existing file with the same name, if present.

set theOutputPath to (path to desktop folder as string) & "Converted Graphic.jpg"
tell application "GraphicConverter"
   save window 1 in theOutputPath as JPEG
end tell

When manually saving graphics in GraphicConverter, you will find that certain formats, such as JPEG and TIFF, have modifiable options, which can affect the saved file's quality, file size, and more. While not all of these options may be specified using AppleScript, some can. Unlike the manual process, however, with AppleScript, these options are not specified during the save process. Rather, they are specified via properties of the graphic window.

JPEG is one format with certain options that are modifiable via AppleScript, such as quality and compression type. The following code demonstrates how to adjust some of these options and then save the frontmost graphic window in JPEG format to the desktop.

set theOutputPath to (path to desktop folder as string) & "Converted Graphic.jpg"
tell application "GraphicConverter"
   tell window 1
      set JPEG quality to 30
      set JPEG progressive to true
      save in theOutputPath as JPEG
   end tell
end tell

Resources for Continued Learning

If you are interested in learning more about scripting GraphicConverter, then I would encourage you to visit the GraphicConverter AppleScripts webpage on the Lemke Software website at <http://www.lemkesoft.com/en/graphscripts.htm>. Here, you will find a number of downloadable AppleScripts, which you may use or edit to meet the needs of your specific workflow. You can also search MacScripter.net's ScriptBuilders section at <http://scriptbuilders.net/> for GraphicConverter scripts.

In Closing

As you can see from the examples in this month's column, AppleScript can be used to automate a number of image manipulation and conversion processes using GraphicConverter. Yet, we have only really scratched the surface. Be sure to explore GraphicConverter's AppleScript dictionary more fully in order to learn more about its incredibly useful scriptable capabilities. Also, don't forget that new AppleScript features are introduced to this application on a fairly regular basis, so check the Lemke Software website frequently for updated versions.

Until next time, keep scripting!


Ben Waldie is the author of the best selling books "AppleScripting the Finder" and the "Mac OS X Technology Guide to Automator", available from <http://www.spiderworks.com>, as well as an AppleScript Training CD, available from <http://www.vtc.com>. Ben is also president of Automated Workflows, LLC, a company specializing in AppleScript and workflow automation consulting. For years, Ben has developed professional AppleScript-based solutions for businesses including Adobe, Apple, NASA, PC World, and TV Guide. For more information about Ben, please visit <http://www.automatedworkflows.com>, or email Ben at <ben@automatedworkflows.com>.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Tokkun Studio unveils alpha trailer for...
We are back on the MMORPG news train, and this time it comes from the sort of international developers Tokkun Studio. They are based in France and Japan, so it counts. Anyway, semantics aside, they have released an alpha trailer for the upcoming... | Read more »
Win a host of exclusive in-game Honor of...
To celebrate its latest Jujutsu Kaisen crossover event, Honor of Kings is offering a bounty of login and achievement rewards kicking off the holiday season early. [Read more] | Read more »
Miraibo GO comes out swinging hard as it...
Having just launched what feels like yesterday, Dreamcube Studio is wasting no time adding events to their open-world survival Miraibo GO. Abyssal Souls arrives relatively in time for the spooky season and brings with it horrifying new partners to... | Read more »
Ditch the heavy binders and high price t...
As fun as the real-world equivalent and the very old Game Boy version are, the Pokemon Trading Card games have historically been received poorly on mobile. It is a very strange and confusing trend, but one that The Pokemon Company is determined to... | Read more »
Peace amongst mobile gamers is now shatt...
Some of the crazy folk tales from gaming have undoubtedly come from the EVE universe. Stories of spying, betrayal, and epic battles have entered history, and now the franchise expands as CCP Games launches EVE Galaxy Conquest, a free-to-play 4x... | Read more »
Lord of Nazarick, the turn-based RPG bas...
Crunchyroll and A PLUS JAPAN have just confirmed that Lord of Nazarick, their turn-based RPG based on the popular OVERLORD anime, is now available for iOS and Android. Starting today at 2PM CET, fans can download the game from Google Play and the... | Read more »
Digital Extremes' recent Devstream...
If you are anything like me you are impatiently waiting for Warframe: 1999 whilst simultaneously cursing the fact Excalibur Prime is permanently Vault locked. To keep us fed during our wait, Digital Extremes hosted a Double Devstream to dish out a... | Read more »
The Frozen Canvas adds a splash of colou...
It is time to grab your gloves and layer up, as Torchlight: Infinite is diving into the frozen tundra in its sixth season. The Frozen Canvas is a colourful new update that brings a stylish flair to the Netherrealm and puts creativity in the... | Read more »
Back When AOL WAS the Internet – The Tou...
In Episode 606 of The TouchArcade Show we kick things off talking about my plans for this weekend, which has resulted in this week’s show being a bit shorter than normal. We also go over some more updates on our Patreon situation, which has been... | Read more »
Creative Assembly's latest mobile p...
The Total War series has been slowly trickling onto mobile, which is a fantastic thing because most, if not all, of them are incredibly great fun. Creative Assembly's latest to get the Feral Interactive treatment into portable form is Total War:... | Read more »

Price Scanner via MacPrices.net

Early Black Friday Deal: Apple’s newly upgrad...
Amazon has Apple 13″ MacBook Airs with M2 CPUs and 16GB of RAM on early Black Friday sale for $200 off MSRP, only $799. Their prices are the lowest currently available for these newly upgraded 13″ M2... Read more
13-inch 8GB M2 MacBook Airs for $749, $250 of...
Best Buy has Apple 13″ MacBook Airs with M2 CPUs and 8GB of RAM in stock and on sale on their online store for $250 off MSRP. Prices start at $749. Their prices are the lowest currently available for... Read more
Amazon is offering an early Black Friday $100...
Amazon is offering early Black Friday discounts on Apple’s new 2024 WiFi iPad minis ranging up to $100 off MSRP, each with free shipping. These are the lowest prices available for new minis anywhere... Read more
Price Drop! Clearance 14-inch M3 MacBook Pros...
Best Buy is offering a $500 discount on clearance 14″ M3 MacBook Pros on their online store this week with prices available starting at only $1099. Prices valid for online orders only, in-store... Read more
Apple AirPods Pro with USB-C on early Black F...
A couple of Apple retailers are offering $70 (28%) discounts on Apple’s AirPods Pro with USB-C (and hearing aid capabilities) this weekend. These are early AirPods Black Friday discounts if you’re... Read more
Price drop! 13-inch M3 MacBook Airs now avail...
With yesterday’s across-the-board MacBook Air upgrade to 16GB of RAM standard, Apple has dropped prices on clearance 13″ 8GB M3 MacBook Airs, Certified Refurbished, to a new low starting at only $829... Read more
Price drop! Apple 15-inch M3 MacBook Airs now...
With yesterday’s release of 15-inch M3 MacBook Airs with 16GB of RAM standard, Apple has dropped prices on clearance Certified Refurbished 15″ 8GB M3 MacBook Airs to a new low starting at only $999.... Read more
Apple has clearance 15-inch M2 MacBook Airs a...
Apple has clearance, Certified Refurbished, 15″ M2 MacBook Airs now available starting at $929 and ranging up to $410 off original MSRP. These are the cheapest 15″ MacBook Airs for sale today at... Read more
Apple drops prices on 13-inch M2 MacBook Airs...
Apple has dropped prices on 13″ M2 MacBook Airs to a new low of only $749 in their Certified Refurbished store. These are the cheapest M2-powered MacBooks for sale at Apple. Apple’s one-year warranty... Read more
Clearance 13-inch M1 MacBook Airs available a...
Apple has clearance 13″ M1 MacBook Airs, Certified Refurbished, now available for $679 for 8-Core CPU/7-Core GPU/256GB models. Apple’s one-year warranty is included, shipping is free, and each... Read more

Jobs Board

Seasonal Cashier - *Apple* Blossom Mall - J...
Seasonal Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Seasonal Fine Jewelry Commission Associate -...
…Fine Jewelry Commission Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) Read more
Seasonal Operations Associate - *Apple* Blo...
Seasonal Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Read more
Hair Stylist - *Apple* Blossom Mall - JCPen...
Hair Stylist - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.