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

Fresh From the Land Down Under – The Tou...
After a two week hiatus, we are back with another episode of The TouchArcade Show. Eli is fresh off his trip to Australia, which according to him is very similar to America but more upside down. Also kangaroos all over. Other topics this week... | Read more »
TouchArcade Game of the Week: ‘Dungeon T...
I’m a little conflicted on this week’s pick. Pretty much everyone knows the legend of Dungeon Raid, the match-3 RPG hybrid that took the world by storm way back in 2011. Everyone at the time was obsessed with it, but for whatever reason the... | Read more »
SwitchArcade Round-Up: Reviews Featuring...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for July 19th, 2024. In today’s article, we finish up the week with the unusual appearance of a review. I’ve spent my time with Hot Lap Racing, and I’m ready to give my verdict. After... | Read more »
Draknek Interview: Alan Hazelden on Thin...
Ever since I played my first release from Draknek & Friends years ago, I knew I wanted to sit down with Alan Hazelden and chat about the team, puzzle games, and much more. | Read more »
The Latest ‘Marvel Snap’ OTA Update Buff...
I don’t know about all of you, my fellow Marvel Snap (Free) players, but these days when I see a balance update I find myself clenching my… teeth and bracing for the impact to my decks. They’ve been pretty spicy of late, after all. How will the... | Read more »
‘Honkai Star Rail’ Version 2.4 “Finest D...
HoYoverse just announced the Honkai Star Rail (Free) version 2.4 “Finest Duel Under the Pristine Blue" update alongside a surprising collaboration. Honkai Star Rail 2.4 follows the 2.3 “Farewell, Penacony" update. Read about that here. | Read more »
‘Vampire Survivors+’ on Apple Arcade Wil...
Earlier this month, Apple revealed that poncle’s excellent Vampire Survivors+ () would be heading to Apple Arcade as a new App Store Great. I reached out to poncle to check in on the DLC for Vampire Survivors+ because only the first two DLCs were... | Read more »
Homerun Clash 2: Legends Derby opens for...
Since launching in 2018, Homerun Clash has performed admirably for HAEGIN, racking up 12 million players all eager to prove they could be the next baseball champions. Well, the title will soon be up for grabs again, as Homerun Clash 2: Legends... | Read more »
‘Neverness to Everness’ Is a Free To Pla...
Perfect World Games and Hotta Studio (Tower of Fantasy) announced a new free to play open world RPG in the form of Neverness to Everness a few days ago (via Gematsu). Neverness to Everness has an urban setting, and the two reveal trailers for it... | Read more »
Meditative Puzzler ‘Ouros’ Coming to iOS...
Ouros is a mediative puzzle game from developer Michael Kamm that launched on PC just a couple of months back, and today it has been revealed that the title is now heading to iOS and Android devices next month. Which is good news I say because this... | Read more »

Price Scanner via MacPrices.net

Amazon is still selling 16-inch MacBook Pros...
Prime Day in July is over, but Amazon is still selling 16-inch Apple MacBook Pros for $500-$600 off MSRP. Shipping is free. These are the lowest prices available this weekend for new 16″ Apple... Read more
Walmart continues to sell clearance 13-inch M...
Walmart continues to offer clearance, but new, Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBooks... Read more
Apple is offering steep discounts, up to $600...
Apple has standard-configuration 16″ M3 Max MacBook Pros available, Certified Refurbished, starting at $2969 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free,... Read more
Save up to $480 with these 14-inch M3 Pro/M3...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
Amazon has clearance 9th-generation WiFi iPad...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Apple is offering a $50 discount on 2nd-gener...
Apple has Certified Refurbished White and Midnight HomePods available for $249, Certified Refurbished. That’s $50 off MSRP and the lowest price currently available for a full-size Apple HomePod today... Read more
The latest MacBook Pro sale at Amazon: 16-inc...
Amazon is offering instant discounts on 16″ M3 Pro and 16″ M3 Max MacBook Pros ranging up to $400 off MSRP as part of their early July 4th sale. Shipping is free. These are the lowest prices... Read more
14-inch M3 Pro MacBook Pros with 36GB of RAM...
B&H Photo has 14″ M3 Pro MacBook Pros with 36GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 Pro MacBook Pro (... Read more
14-inch M3 MacBook Pros with 16GB of RAM on s...
B&H Photo has 14″ M3 MacBook Pros with 16GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $150-$200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 MacBook Pro (... Read more
Amazon is offering $170-$200 discounts on new...
Amazon is offering a $170-$200 discount on every configuration and color of Apple’s M3-powered 15″ MacBook Airs. Prices start at $1129 for models with 8GB of RAM and 256GB of storage: – 15″ M3... Read more

Jobs Board

*Apple* Systems Engineer - Chenega Corporati...
…LLC,** a **Chenega Professional Services** ' company, is looking for a ** Apple Systems Engineer** to support the Information Technology Operations and Maintenance Read more
Solutions Engineer - *Apple* - SHI (United...
**Job Summary** An Apple Solution Engineer's primary role is tosupport SHI customers in their efforts to select, deploy, and manage Apple operating systems and Read more
*Apple* / Mac Administrator - JAMF Pro - Ame...
Amentum is seeking an ** Apple / Mac Administrator - JAMF Pro** to provide support with the Apple Ecosystem to include hardware and software to join our team and Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple 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.