TweetFollow Us on Twitter

GXGraphic Extension

Volume Number: 13 (1997)
Issue Number: 10
Column Tag: develop

Using the GXGraphics Extension

by Ingrid Kelly and Robin Mikawa, Apple Developer Technical Support

Using The GXGraphics Extension

Starting with Mac OS 8.0, the QuickDraw GX environment no longer supports the GX Printing Manager API. Although this decision will require significant changes to existing system software and applications, it will allow us to transition to a unified printing architecture that will improve the compatibility of QuickDraw GX software in the classic QuickDraw environment. Mac OS 8.0 includes the GXGraphics 1.1.6 extension, which provides the advanced Graphics and Typography capabilities of QuickDraw GX, a QuickDraw GX codec in the QuickTime 2.5 extension, and a fully integrated version of the Collection Manager. This article includes:

  • The changes needed for an application (GX aware, GX savvy, and GX dependent) to support GX Printing on Mac OS 8.0.
  • Where to get the current version of the GXGraphics extension (1.1.3) and a description of any differences with GXGraphics 1.1.6 included with Mac OS 8.0.
  • Any known incompatibilities or limitations of the GXGraphics extension, as well as known solutions to these problems. This Article is intended to help developers who wish to transition their GX products to support QuickDraw GX on Mac OS 8.0.

Note: Throughout this Article, the term, "classic printing architecture," refers to the Macintosh Printing Manager described in Chapter 9 of Inside Macintosh: Imaging With QuickDraw. "QuickDraw GX" refers to the full GX environment (i.e., Graphics, Typography, and Printing) and "GXGraphics" refers to the partial GX implementation provided by the GXGraphics extension (i.e., Graphics and Typography).

Features Not Supported in Mac OS 8.0

Following is a list of key features that are currently available in QuickDraw GX 1.1.3/1.1.5 that will no longer be available to developers under the GXGraphics 1.1.6 strategy:

  • GX Printer Driver APIs: GX Printer drivers will no longer be supported. All developers need to have a classic printer driver for their device.
  • GX Printing Extensions: GX Extensions will no longer be supported. Some developers may be able to roll their GX extension functionality into their application or driver.
  • Custom page formatting (the ability to arbitrarily specify page formatting within a single document): This feature will no longer be available. This feature could be implemented using the extended print record architecture added with LaserWriter version 8.4. See develop Journal Issue 27: 'The All-New LaserWriter Driver Version 8.4' for more information on the extended print record.
  • Portable Digital Document authoring: Developers will no longer be able to author PDDs via the GX Printing APIs. Also, SimpleText will not display PDDs under QuickDraw GX 1.1.6. You should convert PDD files to a different format, such as Adobe Acrobat PDF files, before attempting to use them with Mac OS 8 or QuickDraw GX 1.1.6
  • Vector Print Driver API: Under the new GX model, there will no longer be a custom API for vector printer driver developers. Vector printer drivers will have to be written with the classic printing architecture.

Overview of the GXGraphics Extension

The GXGraphics extension is a system extension that adds powerful graphics and typographic capabilities to your user's Macintosh without requiring the full QuickDraw GX package to be installed on your user's machine. The extension that we are currently licensing and distributing, GXGraphics 1.1.3, covers all QuickDraw GX graphics and typography functionality up to and including QuickDraw GX version 1.1.3.

GXGraphics 1.1.3

The GXGraphics 1.1.3 extension contains GX graphics and typography, but does not contain GX Printing. There are stubs for the GX Printing calls in QuickDrawGXLib/GXGraphics 1.1.3 but they do not work. This extension has been released and tested on 7.5.1 through 7.6. See Table 1 for more specific details.

GXGraphics 1.1.6

The GXGraphics 1.1.6 release contains GX graphics and typography, but will no longer have the printing stubs available. This extension has been tested and released for Mac OS 8.0. See Table 1 for more specific details.

NameVersionComponent Gestalt Selector
QuickDraw GX1.1.3, 1.1.5QuickDraw GX* qdgx (obsolete)
GX Printing* pmgr
GX Graphics* grfx
Collections Mgr* cltn
GXGraphics1.1.3GX Printing**
GXGraphics* grfx
Collections Mgr**
GXGraphics1.1.6GXGraphics* grfx

* APIs are exported and available
** APIs are exported but not available; you should use the gestalt selector on application launch to verify whether or not the functions are implemented.

Table 1. Differences in the QuickDraw GX Releases.

Note: With Mac OS 8.0, the Collections Manager APIs have been rolled out of QuickDraw GX and into the system.

Application Changes

Since the GX printing architecture will no longer be supported for Mac OS, any software that does not already have a solution using classic QuickDraw printing will need to be updated. For the majority of applications, the recommended solution for Mac OS 8.0 is to use the QuickTime compression/decompression mechanism for imaging QuickDraw GX data. The basic technique is to encapsulate the QuickDraw GX image in a compressed data format using the object flattening functions from QuickDraw GX. Once the compressed image data is created, it may be passed to the QuickDraw GX codec and drawn using the QuickTime image compression functions or embedded within a QuickDraw picture and drawn using the DrawPicture function. In either case, the compressed data is passed to the the low-level QuickDraw drawing routines through the StdPix bottleneck routine. StdPix decompresses the data using the QuickDraw GX codec and passes the decompressed data to the bitsProc bottleneck routine when rendering the image.

LaserWriter drivers starting with version 8.3 recognize compressed data that may be drawn using QuickTime, like QuickDraw GX flattened objects. For Mac OS 8.0, the LaserWriter driver has been modified to render the QuickDraw GX data at the device resolution of the printer. When despooling, the printer driver changes the resolution of the offscreen drawing port and uses the QuicDraw GX codec to rasterize the compressed data. The QuickDraw printer drivers from Apple render the compressed data during spooling and use the resolution of the active graphics port. Application developers may wish to use the device resolution commands of the PrGeneral routine to improve the quality of their printed images as described in "Meet PrGeneral, the Trap That Makes the Most of the Printing Manager," in develop 3.

General Changes For All Applications

The sample code for this Article includes updated versions of three QuickDraw GX user libraries, CodecLibrary, PrintingLibrary, and StorageLibrary, that may be used to simplify the conversion of your software. The TwoFace sample application supports the basic job, format, dialog, and spooling functions of the QuickDraw GX Printing Manager. It uses an abstraction layer provided by the PrintingLibrary to handle printing through the QuickDraw GX and classic QuickDraw printing architectures, depending on which environment is available when the application is launched. All the changes described in this section are handled automatically by the user libraries if you simply convert any references to the QuickDraw GX Printing Manager, including the gxJob and gxFormat data types, to the equivalent functions and data types of the PrintingLibrary.

1) Check the correct gestalt selector. Use the individual grfx and pmgr gestalt selectors rather than the obsolete qdgx gestalt selector.

Boolean gPrintingArchitecture = false;
long theFeature;

if ( Gestalt(gestaltGraphicsVersion, &theFeature) != noErr )
		return;

if ( Gestalt(gestaltGXPrintingMgrVersion, &theFeature)!= noErr )
	gPrintingArchitecture = kQDPrArch;
else
	gPrintingArchitecture = kGXPrArch;

2) For 68000 applications that use A-trap addresses to determine which parts of the GX environment are installed, use the individual gestalt selectors instead. This technique is not recommended but has been used by some applications in the past. If this is the case for your application, verify that you are checking the correct A-trap addresses:

Trap Address Technology
ABFEGX Printing
A832GX Graphics
ABF6Collections Manager

3) During initialization of a PowerPC application, check if the QuickDraw GX Printing library is installed. If the application is "weak" linked to the library, the Process Manager will launch it even if the library is missing, although the Code Fragment Manager will not resolve the addresses of the functions in the library. If the application calls any of these functions, it will crash. Your application should check if any of the Printing Manager functions cannot be resolved and exit gracefully if the library is missing. Note that the check could be performed against any function you call in the library. GXInitPrinting is often the first function that is called from the Printing Manager, so it is convenient.

if ( (UInt32)GXInitPrinting == UnresolvedCFragSymbolAddress )
	gPrintingArchitecture = kQDPrArch;

4) During printing, create a single picture shape for the contents of each page in the document. The PrintingLibrary includes a sample viewport filter function that handles this task from within the printing loop.

5) Use GXFlattenShape to create the compressed data for the QuickDraw GX codec. GXFlattenShape is described in detail in Inside Macintosh: QuickDraw GX Objects 2-88 to 2-89.

6) Use DecompressImage as described in "Printing Images Faster With Data Compression", in develop 24 (December 1995) to create the QuickDraw picture with the embedded QuickDraw GX data. When the application calls the standard DrawPicture function to display the image containing the compressed QuickDraw GX data, the StdPix function decompresses the image by invoking the Image Compression Manager. The CodecLibrary implements a function, GXCdShapeToPicture, that encodes the QuickDraw GX data as QuickTime compressed data and creates a PicHandle; an application may use this routine to create a QuickDraw picture prior to entering the printing loop or to convert a QuickDraw GX document to the QuickDraw PICT file format. DecompressImage is described in detail in Inside Macintosh: QuickTime, pages 3-78 to 3-79.

7) An alternative to Step 6 is to pass the flattened QuickDraw GX data directly to the custom StdPix bottleneck installed by the printer driver during printing. The CodecLibrary implements a function, GXCdDrawShape, that converts the QuickDraw GX data to a QuickTime encoded PixMap data structure, which it passes to the QuickDraw GX codec from within the printing loop. StdPix is described in detail in Inside Macintosh: QuickTime, pages 3-138 to 3-139.

Specific Changes Required Based on Level of Support

Here is an outline of the changes GX applications will need to make. They are outlined according to the level of GX support.

GX Unaware (no knowledge of GX)

  • No changes are needed

GX Aware (implements core GX Printing features)

  • Classic Printing code should be added using the new printing user library. (Step 1-7)

GX Savvy (implements support for Graphics, Typography and Printing)

  • Classic Printing code should be added using the new printing user library. (Step 1-7)

GX Dependent (requires GX to be installed to function)

  • Classic Printing code should be added using the new printing user library. (Step 1-7)

Additional Changes

Custom Page formatting

  • Currently, applications that wish to implement custom page formatting will have to spool multiple jobs per document. One job for each change in the page formatting.

It is important to note, that even today -- on System 7.5.x -- it is possible for an application using GXGraphics 1.1.x to print using the classic printing mechanism described above.

GX Printing Extension Changes

Printing extensions have been used for a wide variety of things in the history of GXPrinting. However, despite their potential for optimizing printing from certain kinds of applications, they have never been developed or used to their full potential by many developers. Unfortunately, under the new GX model , GX extensions are no longer available. Some of the functionality that developers have used GX extensions for can be rolled into classic applications or drivers, but that will have to be determined by the developer on a case-by-case basis.

GX Printer Driver Changes

Under the new GX model, GX printer drivers will no longer be supported. There is no transition plan for these drivers.

Classic Printer Driver Changes

  • In the world of GXGraphics 1.1.6 it will be desirable to print GX objects to classic printer drivers.

Raster

  • For raster printer drivers, the output from an updated GX application should match the high quality output today from GX drivers.

PostScript

For PostScript printer drivers however, there will be some changes required to add support for printing high-quality GX objects. We are currently working on determining what the best delivery mechanism for these changes will be (a library, an new API, atc.). As soon as we have a better idea of how to do this, we will update this Article to reflect the necessary changes.

PDD Changes

Under the new GX architecture, there is no way to author PDD documents. Also, SimpleText will not display PDD's under QuickDraw GX 1.1.6. You should convert PDD files to a different format, such as Adobe Acrobat PDF files, before attempting to use them with Mac OS 8 or QuickDraw GX 1.1.6.

Incompatibilities and Limitations

This section describes the known incompatibilities and limitations, and their solutions for the GXGraphics 1.1.6 extension:

  • Current versions of printer drivers may generate large spool files and take a long time to print when printing documents containing QuickDraw GX data. In addition, QuickDraw GX data printed to the Apple Color LaserWriter may be printed at less than full printer resolution. These problems will be addressed in future versions of printer drivers from Apple and other vendors.
  • With ATM 4.0.2, some PDF documents that use ATM substitution fonts may not print correctly using the LaserWriter 8 driver. This problem will be fixed in a future version of LaserWriter 8 which will be available in late summer 1997.
  • ATM 3.8.3 and 4.0 do not currently recognize that QuickDraw GX is installed when the GXGraphics extension is in your user's system. This causes problems with Type-1 enabled fonts. This problem has been fixed with the 4.0.2 release of ATM by Adobe Systems. Check with Adobe for a newer version of ATM Deluxe.
  • Some older QuickDraw pictures with embedded QuickDraw GX data may print with random noise in the background of the picture. This problem will be fixed in a future version of QuickTime.
  • Some QuickDraw GX data may print incorrectly in low memory conditions. You may notice that parts of the image repeat rather than the entire image printing correctly. This problem is in the QuickDraw GX QuickTime Codec and will be fixed in a future version of QuickTime.

Where To Get GXGraphics 1.1.6 And How To License It

The GXGraphics 1.1.6 extension

  • GXGraphics 1.1.6 is only available as part of the Mac OS 8.0 package. It is equivalent to the GXGraphics 1.1.3 release with a new installer and PPC library changes.

Software Licensing

  • For developers who wish to ship the GXGraphics extension with their product, you must contact Software Licensing at sw.license@apple.com or call them at 512-919-2645. Reference the QuickDraw GX software license to make sure you get the appropriate licensing agreement.

Conclusion

By simply following the above steps, you should easily be able to convert your GX applications into a viewable applications that your users will be able to use without having the complete GX extension installed.

Further References

  • Inside Macintosh: Imaging With QuickDraw
  • Inside Macintosh: QuickDraw GX Graphics
  • Inside Macintosh: QuickDraw GX Objects
  • Inside Macintosh: QuickTime
  • "The All-New LaserWriter Driver Version 8.4", in develop 27 by Dave Polaschek.
  • "Printing Images Faster With Data Compression", in develop 24 by David Gelphman.
  • "Meet PrGeneral, the Trap That Makes the Most of the Printing Manager", in develop issue 3 by Pete Alexander.
  • "A Print Loop That Cares--The Sequel", Technote 1092 by Ingrid Kelly.
  • "Adding Items to the Printing Manager's Dialogs", Technote 1080 by Ingrid Kelly and Dave Polaschek.

Acknowledgments

Thanks to Paul Danbold, David Goldsmith, David Hayward, Dan Lipton, and Dave Opstad.


Ingrid Kelly works in Apple's Developer Technical Support group answering questions about graphics, color and printing on the Mac OS. In a previous life, she worked at NASA in the Human Factors Research branch studying aircraft pilots, but she finds that studying people at Apple is much more interesting!

Robin Mikawa has recently returned to her first love as a graphics engineer on the QuickDraw GX project. A three-year stint on the WordScript engineering team has instilled her a love for typographical truffles, multilingual system software, and noodle-based dishes from all parts of the world.

 
AAPL
$445.04
Apple Inc.
+2.90
MSFT
$34.10
Microsoft Corpora
-0.05
GOOG
$872.94
Google Inc.
-9.85

MacTech Search:
Community Search:

Software Updates via MacUpdate

Evernote 5.1.1 - Create searchable notes...
Evernote allows you to easily capture information in any environment using whatever device or platform you find most convenient, and makes this information accessible and searchable at anytime, from... Read more
SketchUp 13.0.3688 - Create 3D design co...
SketchUp is an easy-to-learn 3D modeling program that enables you to explore the world in 3D. With just a few simple tools, you can create 3D models of houses, sheds, decks, home additions,... Read more
GarageSale 6.6b10 - Create outstanding e...
GarageSale is a slick, full-featured client application for the eBay online auction system. Create and manage your auctions with ease With GarageSale, you can create, edit, track, and manage... Read more
Twitter 2.2.1 - Official Twitter client...
Twitter (was Tweetie) is a Twitter client with a variety of features. Important Note: As of January 2011, AteBit's Tweetie application has been acquired and renamed by Twitter. Version 1.2.8 of the... Read more
SteerMouse 4.1.6 - Powerful third-party...
SteerMouse is an advanced driver for USB and Bluetooth mice. It also supports Apple Mighty Mouse very well. SteerMouse can assign various functions to buttons that Apple's software does not allow,... Read more
Google Chrome 27.0.1453.93 - Modern and...
Google Chrome is a Web browser by Google, created to be a modern platform for Web pages and applications. It utilizes very fast loading of Web pages and has a V8 engine, which is a custom built... Read more
Labels & Addresses 1.6.5 - Powerful...
Labels & Addresses is a home and office tool for printing all sorts of labels, envelopes, inventory labels, and price tags. Merge-printing capability makes the program a great tool for holiday... Read more
Delicious Library 3.0.2 - Import, browse...
Delicious Library allows you to import, browse, and share all your books, movies, music, and video games with Delicious Library. Run your very own library from your home or office using our... Read more
KeyCue 6.5 - Displays all menu shortcut...
KeyCue helps you to use your OS X applications more effectively. Just hold down the Command key for a while - KeyCue comes to help and shows a table of all currently available keyboard shortcuts.... Read more
HoudahSpot 3.7.8 - Advanced front-end fo...
HoudahSpot is a flexible file-search tool based on Apple's powerful Spotlight engine. Keep frequently used files within reach Retrieve the files you didn't know you still had Don't waste time... Read more

Delifishes Review
Delifishes Review By Lee Hamlet on May 24th, 2013 Our Rating: :: YOU JELLY?Universal App - Designed for iPhone and iPad Playing Delifishes brings back memories of the first generation of mobile games, which is by no means a bad... | Read more »
4 Kingdoms Review
4 Kingdoms Review By Campbell Bird on May 24th, 2013 Our Rating: :: YET ANOTHER KINGDOM GAMEiPad Only App - Designed for the iPad 4 Kingdoms offers familiar menu-based, freemium management gameplay with a fresh coat of cosmetic... | Read more »
Inkling Review
Inkling Review By Rob Rich on May 24th, 2013 Our Rating: :: FINGER ARTUniversal App - Designed for iPhone and iPad This simple yet elegant app is almost perfect for a little on-the-go sketching.   | Read more »
Evernote Update Keeps You Notified, Adds...
Evernote Update Keeps You Notified, Adds New Reminders Feature Posted by Andrew Stevens on May 23rd, 2013 [ permalink ] | Read more »
Clear Shakes Up A New Update: Email Your...
Clear Shakes Up A New Update: Email Your Lists Posted by Andrew Stevens on May 23rd, 2013 [ permalink ] iPhone App - Designed for the iPhone, compatible with the iPad | Read more »
Regular Show: Best Park in the Universe...
Regular Show: Best Park in the Universe Review By Carter Dotson on May 23rd, 2013 Our Rating: :: SLACKERSUniversal App - Designed for iPhone and iPad This park has some good ideas, but a lot of work needs to go into it to make it... | Read more »
Angry Birds Space Launches You Into Spac...
Angry Birds Space Launches You Into Space For Free Posted by Andrew Stevens on May 23rd, 2013 [ permalink ] iPhone App - Designed for the iPhone, compatible with the iPad | Read more »
Mailbox Shows Some Tablet Love, Gets Opt...
Mailbox Shows Some Tablet Love, Gets Optimized For iPad Posted by Andrew Stevens on May 23rd, 2013 [ permalink ] iPhone App - Designed for the iPhone, compatible with the iPad | Read more »
Ayopa Games Offers Their Titles For Free...
Ayopa Games Offers Their Titles For Free This Memorial Day Weekend Posted by Andrew Stevens on May 23rd, 2013 [ permalink ] Ayopa Games is celebrating this Mem | Read more »
Greedy Grub Review
Greedy Grub Review By Rob Rich on May 23rd, 2013 Our Rating: :: A CUTE CRAWLUniversal App - Designed for iPhone and iPad Greedy Grub is certainly adorable, but it’s not particularly ground-breaking.   | Read more »

Price Scanner via MacPrices.net

Should You Upgrade To OS X 10.8 Mountain Lion This...
If you haven’t upgraded to OS X 10.8 Mountain Lion by now, there’s probably a case to be made for just holding out with whatever earlier version you’re using until we see what Apple brings forth with... Read more
Apple Tops Gartner Supply Chain Top 25 Rankings Fo...
Gartner, Inc. has released the findings from its ninth annual Supply Chain Top 25. The goal of the Supply Chain Top 25 research initiative is to raise awareness of the supply chain discipline and how... Read more
7-inch Tablets: What User Experience Benchmarks Sh...
A new Tablet User Experience Research survey by Pfeiffer Consulting indicates that user experience with tablets and smartphones is one of the most important aspects of the overall perceived value of... Read more
PayPal Global Study Spells Doom for the Wallet – C...
PayPal has revealed the findings of a global study that paints a dim future for the wallet. A vast majority (83%) of respondents across five countries indicated they wished they didnt have to carry a... Read more
How to Set Up Your Mac to Allow AirPrinting From i...
mac.tutsplus.com’s Jordan Merrick says: AirPrint is a great feature of iOS that provides a simple way of printing documents from your iPhone or iPad directly to an AirPrint-compatible printer with no... Read more
Price drop on refurbished 15″ 2.3GHz MacBook Pro,...
 The Apple Store has lowered their price on Apple Certified Refurbished 15″ 2.3GHz MacBook Pros to $1449 or $350 off the cost of new models, including free shipping. Apple’s one-year warranty is... Read more
Memorial Day Weekend iMac sale: $150 off MSRP
 Best Buy has iMacs on sale for $150 off MSRP on their online store for Memorial Day Weekend. Choose free home shipping or free instant local store pickup (if available): - 27″ 3.2GHz iMac: $1849.99... Read more
Economic Conservatives Defend Apple’s Tax Strategy
Given Apple’s longtime reputation as the particular darling of the liberal lefty end of the spectrum, it’s been facinating to see mostly prominant conservatives rallying to the defense of Apple’s... Read more
Is Apple Losing Its “Cool” Cachet With The Popular...
SMH’s Steve Colquhoun notes that while Apple has again been rated as the world’s top brand this week, a leading social researcher warns the company and its products are losing touch with Generation Y... Read more
New Rugged Smartphone From…. Caterpillar?!
Bullitt Mobile Ltd., global licensee of Cat phones for Caterpillar Inc., has introduced the new Cat B15 smartphone in North America. The Cat B15 is designed to be the most progressive, durable and... Read more

Jobs Board

*Apple* Retail - Manager - Apple Inc. (...
Job Summary Keeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, you’re a master of them all. In the store’s fast-paced, Read more
*Apple* Account Executive - CompuCom (U...
Apple Account Executive Job Location US-IL-Des Plaines Posted Date 3/27/2013 Req # 2013-4905 Apply/Socialize: * Apply Now! * Email this opportunity to a friend or Read more
*Apple* - Solution Architect - CompuCom...
Apple - Solution Architect Job Location US-TX-Dallas Posted Date 4/18/2013 Req # 2013-4932 Apply/Socialize: * Apply Now! * Email this opportunity to a friend or Read more
Mac/ *Apple* Specialist Needed - Enterp...
Mac/ Apple Specialist Needed - Enterprise iPad Deployment A prominent Robert Half client is seeking out a Mac/ Apple Specialist to assist with an iPad deployment Read more
Mac/ *Apple* Specialist Needed | Enterp...
Mac/ Apple Specialist Needed | Enterprise iPad Deployment A prominent Robert Half client is seeking out a Mac/ Apple Specialist to assist with an iPad deployment Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.