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

Top Mobile Game Discounts
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links... | Read more »
Price of Glory unleashes its 1.4 Alpha u...
As much as we all probably dislike Maths as a subject, we do have to hand it to geometry for giving us the good old Hexgrid, home of some of the best strategy games. One such example, Price of Glory, has dropped its 1.4 Alpha update, stocked full... | Read more »
The SLC 2025 kicks off this month to cro...
Ever since the Solo Leveling: Arise Championship 2025 was announced, I have been looking forward to it. The promotional clip they released a month or two back showed crowds going absolutely nuts for the previous competitions, so imagine the... | Read more »
Dive into some early Magicpunk fun as Cr...
Excellent news for fans of steampunk and magic; the Precursor Test for Magicpunk MMORPG Crystal of Atlan opens today. This rather fancy way of saying beta test will remain open until March 5th and is available for PC - boo - and Android devices -... | Read more »
Prepare to get your mind melted as Evang...
If you are a fan of sci-fi shooters and incredibly weird, mind-bending anime series, then you are in for a treat, as Goddess of Victory: Nikke is gearing up for its second collaboration with Evangelion. We were also treated to an upcoming... | Read more »
Square Enix gives with one hand and slap...
We have something of a mixed bag coming over from Square Enix HQ today. Two of their mobile games are revelling in life with new events keeping them alive, whilst another has been thrown onto the ever-growing discard pile Square is building. I... | Read more »
Let the world burn as you have some fest...
It is time to leave the world burning once again as you take a much-needed break from that whole “hero” lark and enjoy some celebrations in Genshin Impact. Version 5.4, Moonlight Amidst Dreams, will see you in Inazuma to attend the Mikawa Flower... | Read more »
Full Moon Over the Abyssal Sea lands on...
Aether Gazer has announced its latest major update, and it is one of the loveliest event names I have ever heard. Full Moon Over the Abyssal Sea is an amazing name, and it comes loaded with two side stories, a new S-grade Modifier, and some fancy... | Read more »
Open your own eatery for all the forest...
Very important question; when you read the title Zoo Restaurant, do you also immediately think of running a restaurant in which you cook Zoo animals as the course? I will just assume yes. Anyway, come June 23rd we will all be able to start up our... | Read more »
Crystal of Atlan opens registration for...
Nuverse was prominently featured in the last month for all the wrong reasons with the USA TikTok debacle, but now it is putting all that behind it and preparing for the Crystal of Atlan beta test. Taking place between February 18th and March 5th,... | Read more »

Price Scanner via MacPrices.net

AT&T is offering a 65% discount on the ne...
AT&T is offering the new iPhone 16e for up to 65% off their monthly finance fee with 36-months of service. No trade-in is required. Discount is applied via monthly bill credits over the 36 month... Read more
Use this code to get a free iPhone 13 at Visi...
For a limited time, use code SWEETDEAL to get a free 128GB iPhone 13 Visible, Verizon’s low-cost wireless cell service, Visible. Deal is valid when you purchase the Visible+ annual plan. Free... Read more
M4 Mac minis on sale for $50-$80 off MSRP at...
B&H Photo has M4 Mac minis in stock and on sale right now for $50 to $80 off Apple’s MSRP, each including free 1-2 day shipping to most US addresses: – M4 Mac mini (16GB/256GB): $549, $50 off... Read more
Buy an iPhone 16 at Boost Mobile and get one...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering one year of free Unlimited service with the purchase of any iPhone 16. Purchase the iPhone at standard MSRP, and then choose... Read more
Get an iPhone 15 for only $299 at Boost Mobil...
Boost Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering the 128GB iPhone 15 for $299.99 including service with their Unlimited Premium plan (50GB of premium data, $60/month), or $20... Read more
Unreal Mobile is offering $100 off any new iP...
Unreal Mobile, an MVNO using AT&T and T-Mobile’s networks, is offering a $100 discount on any new iPhone with service. This includes new iPhone 16 models as well as iPhone 15, 14, 13, and SE... Read more
Apple drops prices on clearance iPhone 14 mod...
With today’s introduction of the new iPhone 16e, Apple has discontinued the iPhone 14, 14 Pro, and SE. In response, Apple has dropped prices on unlocked, Certified Refurbished, iPhone 14 models to a... Read more
B&H has 16-inch M4 Max MacBook Pros on sa...
B&H Photo is offering a $360-$410 discount on new 16-inch MacBook Pros with M4 Max CPUs right now. B&H offers free 1-2 day shipping to most US addresses: – 16″ M4 Max MacBook Pro (36GB/1TB/... Read more
Amazon is offering a $100 discount on the M4...
Amazon has the M4 Pro Mac mini discounted $100 off MSRP right now. Shipping is free. Their price is the lowest currently available for this popular mini: – Mac mini M4 Pro (24GB/512GB): $1299, $100... Read more
B&H continues to offer $150-$220 discount...
B&H Photo has 14-inch M4 MacBook Pros on sale for $150-$220 off MSRP. B&H offers free 1-2 day shipping to most US addresses: – 14″ M4 MacBook Pro (16GB/512GB): $1449, $150 off MSRP – 14″ M4... Read more

Jobs Board

All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.