TweetFollow Us on Twitter

PostScript Print
Volume Number:2
Issue Number:6
Column Tag:PostScript Printing

Place PostScript in MacWrite Documents

By Mike Schuster, Adobe Systems, MacTutor Contributing Editor

Embed PostScript in Fonts and Pictures

When a Macintosh application prints to Apple's LaserWriter printer, the Printing Manager converts the sequence of QuickDraw operations that the application used to image the document on the screen into a PostScript® program that describes the appearance of the document on printed pages. The Printing Manager then transmits this program to the LaserWriter, which contains a PostScript interpreter bundled with a xerographic marking engine. The interpreter executes the page description and produces output on the attached output device.

The PostScript language itself was designed by Adobe Systems, Inc. to be a high-level, device independent page description language with powerful text and graphics capabilities. PostScript includes operators to outline or fill any arbitrary graphical shape constructed from straight lines, arcs, and cubic polynomical curves; to treat any shape as a clipping path to crop any other graphics; and to render text and sampled images of arbitrary resolution at any size or angle on the page.

Quickdraw versus PostScript

Normally, PostScript programs are generated automatically by the Printing Manager when the application's client selects the Print command. Let us briefly review how this is done. On the Mac, all drawing is done through the quickdraw routines. On the Laser, all drawing is done through PostScript. Hence quickdraw calls must be converted to the closest PostScript equivalent. Quickdraw is designed so that all the quickdraw routines reduce down to a dozen or so standard drawing routines. This lets an application designer write his own quickdraw routines by replacing these primary routines or "quickdraw verbs" with his own. The Print Manager converts each of these quickdraw verbs to a call on a PostScript procedure, which closely emulates the quickdraw action using PostScript primitives. The definition of that procedure is contained in Laserprep, which is downloaded into the Laserwriter. The PostScript procedures defined in the Laserprep file in effect re-define the quickdraw verbs in terms of PostScript commands. When you use the command-F key to produce a PostScript file, the Print Manager generates a file of procedure calls into this Laserprep file. So you couldn't use this PostScript file without the Laserprep file being downloaded into the Laserwriter first. Thus in normal printing, the Mac quickdraw environment is completely translated to a PostScript environment automatically through the actions of the Printing Manager and Laserprep. This automatic conversion is very useful, since neither the application's user nor its designer need to understand or worry about the details and concerns of the PostScript environment.

There are several situations, however, when it would be useful to type or paste raw PostScript commands directly into a document, so that the images generated by the commands are integrated on the printed page along with the rest of the document. The reason for this is that neither QuickDraw nor current applications are capable of imaging the full repetoir of PostScript graphics on the screen. Hence, many of the LaserWriter's powerful capabilities remain relatively unexplored and unexploited, at least when using MacWrite, MacDraw and MacPaint. And since the Laserwriter costs some $4800, it would be nice to be able to use all of it's capabilities!

But there is lots of good news on the horizon. Apple's new Printing Manager, version 3.1, contains several useful facilities for including PostScript in a document. Apple is madly documenting its capabilities. As a preview, we'll look at what you can do with them.

The “PostScript Escape” Font

The new Printing Manager treats any text in the font named “PostScript Escape” as PostScript commands and sends the text straight through to the LaserWriter. When the Print Manager sees text displayed in the PostScript Escape font, that text is not converted into a Laserprep text drawing call, but simply inserted into the rest of the PostScript file. In this way, pure postscript is included in this file of Laserprep calls and executed directly by the laserwriter.

Any font may be used as the "PostScript Escape" font, but consider this example using the font I've created (available on source code disk #9 from the MacTutor mail order store). Here is an example. First, type the following PostScript program into the middle of a MacWrite document:

gsave initgraphics
/Times-BoldItalic findfont 27 scalefont setfont
/rays
 { 0 1.5 179
 { gsave rotate 0 0 moveto 108 0 lineto stroke grestore } for
 } def
300 400 translate .25 setlinewidth
newpath 0 0 moveto (StarLines) true charpath clip
newpath 54 -15 translate rays
grestore

Then hilight the whole paragraph, and select my PostScript Escape font from MacWrite's Font menu. The paragraph will disappear! Now print the document. The effects of the embeded postscript will appear in the LaserWriter printout.

Invisible Fonts

Whats going on? First, my PostScript Escape font is invisible! Using Apple's ResEdit, I made a copy of the Times 12 point font and called it PostScript Escape. Then I erased all of the black bits in the entire font and set the width of each letter to zero. Then I reduced the ascent and descent so that the font is only 1 point tall. Finally, I pasted the font into my System file. You can do the same thing to create this font if you don't want to wait to get it on a source code disk.

Why bother with an invisible font? If the PostScript Escape font was visible, then any PostScript set in it would leave blank areas on the printed page, since MacWrite assumes that the text will be printed as it appears on the screen. Since only the graphic objects that the PostScript produces are visible on the printed page, we have no choice but to make it invisible, otherwise we would loose screen- page fidelity.

How does one edit invisible text? Easy, just select something that includes the PostScript and change the whole thing to Times, for example. Edit the PostScript, make it invisible again, and print.

PostScript Considerations

When you imbed normal postscript in MacWrite, your postscript image will come out upside down. This is because the coordinate reference system for quickdraw and postscript are opposite. You fix this by adding in front of the postscript two calls:

gsave initgraphics
now add your postscript stuff
grestore

This has the effect of saving the Print Managers coordinate system, initializes the default postscript coordinate system, then it draws the postscript, and finally restores the print manager's coordinate system. In PostScript, (0,0) is at the bottom of the page, while in quickdraw (0,0) is at the top of the page. In our example above we have added these commands so the PostScript has the same orientation as the rest of the Macwrite file.

Another problem is placement. Paste the postscript at the bottom of the page, so the Macwrite stuff does not overwrite the postscript image. Or if you estimate where your figure should be placed on the page, you can leave space in the Macwrite document for the figure, and place your postscript stuff in the blank box, but remember you have to set your postscript coordinates in your postscript commands to match that box area. The Print Manager doesn't tell you where it is on the page!

Pagemaker Doesn't Work!

Pagemaker does not use the default Print Manager routines, which makes calls on Laserprep. Rather it calls it's own RAM based Print Manager in Pagemaker which makes calls on Aldusprep, and this Pagemaker Print Manager does not know about this PostScript escape routine so it will be treated like a regular text font, and hence there still is no way to imbed PostScript into your Pagemaker layout! Pagemaker is supposed to be updating their product to support these new print manager functions sometime this summer. They will add a PostScript place command to place PostScript text files in a manner similar to placing a MacWrite file. A quickdraw picture feature will allow the quickdraw picture to represent the postscript stuff and make placement on the page as easy as placing a MacDraw figure. If they can pull this off in a timely manner, it will greatly increase the sophistication level of Pagemaker in the marketplace.

Get a copy of PostScript Language Reference Manual and PostScript Language Tutorial and Cookbook, by Adobe Systems and published by Addison-Wesley and use this technique to try out some of the examples.

PostScript in Pictures

The new Printing Manager also has some goodies for those of you who use QuickDraw pictures. Try embedding the following C code into a picture or place them between a PrOpenPage and a PrClosePage in your printing loop:

C Code Example

open picture(@rect);
fillrect(@rect, white);
PicComment(190, 0, 0l); /* Begin PostScript mode */

/* Send following Quickdraw text as PostScript */
PicComment(194, 0, 0l); /* this is postscript escape font */
DrawText("/pgsave initgraphics");
DrawText("\p/Times-BoldItalic findfont 27 scalefont setfont");
DrawText("\p/rays");
.../* add postscript commands */
DrawText("\pgrestore");

PicComment(191, 0, 0l); /* End PostScript mode */
close picture;

Print Manager Bug

The fillrect simply draws a white rectangle to get around a bug in the print manager which causes it to think this is a blank page unless it sees at least one quickdraw drawing command. The white rectangle on white obviously won't do anything we can see, but it will force the Print Manager to then show our postscript stuff rather than a blank page.

These PicComment calls are intercepted by the Printing Manager. Comments 190 and 191 bracket the PostScript, and comment 194 tells the Printing Manger that the following text is set in the PostScript Escape font, so the Printing Manager simply forwards all of the text to the Laserwriter.

The Parkhurst Picture

What else does the Printing Manager do? A while back Bill Parkhurst, author of the T/Maker's ClickArt Effects package, argued that each QuickDraw Picture should have two forks - a QuickDraw fork and a PostScript fork. When such a picture is drawn on the screen or printed on the ImageWriter, only the QuickDraw fork is used. When it is printed on a PostScript printer, only the PostScript is used. You get the best of both worlds, good looking printed documents and good screen approximations without the need for a PostScript interpreter resident on the Macintosh. Apparently, version 3.1 has some support for the Parkhurst Picture, but details have yet to be documented, and there is some doubt whether the implementation will work in the current version. It is not known if Apple is planning to support this untested code features.

Downloadable font problems: With this implementation of PostScript escape, a needed downloaded font will not be donwloaded unless the font is used in the regular quickdraw portion of the file.

Laserwriter Plus RAM memory problems: One of the great mysteries is why Apple did not increase the RAM memory in the Laserwriter Plus so that downloadable fonts could be supported. As it is now, only one small font can be downloaded at a time due to the fact that only about 50K of RAM is left. Application programs could be designed to get around this problem by imaging the page one font at a time, rather than composing all the page at once. The page should be reorganzied by the application by font, so that each font component is sent only once to the printer. An ascii postscript file sort program that sorts the postscript by font and sends it to the printer in the sorted order, using one font at a time on a page basis would be a great utility program. It also would be great to design this abilitiy into existing page makeup software.

Another fix is to use the note operator which allows drawing in a smaller area on the page in one of three page sizes: letter, note and legal. Using note size, the RAM previously allocated for the whole page area is now smaller by 100K, which can be used by fonts so up to 4 downloadable fonts can be supported, but you have to use the note operator in your own postscript file. The Print Manager uses the note operator automatically. The Page Setup allows you select between note size (7.7 by 10.2 on a page 8.5 by 11) and legal size (6.7 by 13 on an 8.5 by 14 inch page). Letter size (8 by 11 on a 8.5 by 11 inch page is not supported by the Print Manager, which is why you can't print to the edge of the page. The note operator can select letter size in a custom postscript file however. Aldus prep does not use the note operator. Because there is not enough RAM memory in the Laserwriter Plus or the Laserwriter, you can't have both a full size page and downloadable fonts.

 
AAPL
$431.77
Apple Inc.
+0.00
MSFT
$34.98
Microsoft Corpora
+0.00
GOOG
$900.62
Google Inc.
+14.37

MacTech Search:
Community Search:

Software Updates via MacUpdate

Apple Java 2013-004 - For OS X 10.7 and...
Apple Java for OS X 2013-004 supersedes all previous versions of Java for OS X. This release updates the Apple-provided system Java SE 6 to version 1.6.0_51 and is for OS X versions 10.7 or later.... Read more
Google Chrome 27.0.1453.116 - 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
EarthDesk 6.2 - Striking animated image...
EarthDesk replaces your static desktop picture with a rendered image of Earth showing correct sun, moon and city illumination. With an Internet connection, EarthDesk displays near real-time global... Read more
Apple Configurator 1.3 - Configure and d...
Apple Configurator makes it easy for anyone to mass configure and deploy iPhone, iPad, and iPod touch in a school, business, or institution. Three simple workflows let you prepare new iOS devices... Read more
Apple Java for Mac OS X 10.6 Update 16 -...
Apple Java for Mac OS X 10.6 Update 16 delivers improved security, reliability, and compatibility by updating Java SE 6 to 1.6.0_51.Version Update 16: See http://support.apple.com/kb/HT5744 for more... Read more
Neat 4.0.3 - Digital filing system for r...
Neat (formerly NeatWorks) is a powerful scanning and digital filing system that enables you to scan and organize receipts, business cards, and documents. Unlike other scanning software, NeatWorks... Read more
Adobe Muse CC 5.0 - Design and publish H...
Adobe Muse enables designers to create websites as easily as creating a layout for print. Design and publish original HTML pages using the latest Web standards, and without writing code. Now in beta... Read more
Adobe Creative Cloud 1.0 - Everything ne...
Adobe Creative Cloud costs $49.99/month (or less if you're a previous Creative Suite customer). Creative Suite 6 is still available for purchase (without a monthly plan) if you prefer. Introducing... Read more
Adobe Flash Professional CC 13.0.0.759 -...
Flash Professional CC is available as part of Adobe Creative Cloud for as little as $19.99/month (or $9.99/month if you're a previous Flash Professional customer). Flash Professional CS6 is still... Read more
Adobe InCopy CC 9.0 - Create streamlined...
InCopy CC is available as part of Adobe Creative Cloud for as little as $19.99/month (or $9.99/month if you're a previous InCopy customer). InCopy CS6 is still available for purchase (without a... Read more

Latest Forum Discussions

See All

World War Z Game Drops Its Price To A Bu...
World War Z Game Drops Its Price To A Buck For The Movie’s Release Posted by Andrew Stevens on June 18th, 2013 [ permalink ] | Read more »
Runaway: A Road Adventure Review
Runaway: A Road Adventure Review By Campbell Bird on June 18th, 2013 Our Rating: :: COMBINE ITEMS TO WINUniversal App - Designed for iPhone and iPad Runaway is a classic, old-school adventure experience, for better and for worse.   | Read more »
Pinball Rocks HD Review
Pinball Rocks HD Review By Blake Grundman on June 18th, 2013 Our Rating: :: QUARTER MUNCHERUniversal App - Designed for iPhone and iPad When players have the chance to buy free balls at the end of a game, that speaks volumes about... | Read more »
Minecraft Realms Server Slots Are Beginn...
Minecraft Realms Server Slots Are Beginning To Open, But Slowly Posted by Andrew Stevens on June 18th, 2013 [ permalink ] | Read more »
Videon Review
Videon Review By Jennifer Allen on June 18th, 2013 Our Rating: :: GREAT ALL-ROUNDERiPhone App - Designed for the iPhone, compatible with the iPad Offering mostly everything one could want from a video recording app, Videon is quite... | Read more »
The Portable Podcast, Episode 190
Flatter than ever! In This Episode: Carter and co-host Brett Nolan talk about the big announcements from WWDC, including iOS 7. Will it be a huge change to iOS? As well, the announcement of MFi gamepad support in iOS is discussed – will it herald... | Read more »
Apple Approved Game Controllers Only Mak...
I’m all for game controllers for iOS devices, for what it’s worth. I’ve got a few of them, and they are all gathering dust. The issue with controllers for mobile devices is that they never get used. Not even for the games that are better when played... | Read more »
CIA: Operation Ajax Gives Readers Free A...
CIA: Operation Ajax Gives Readers Free Access To The Interactive Comic Posted by Andrew Stevens on June 18th, 2013 [ permalink ] | Read more »
Youda Survivor Drops Its Price For A Mag...
Youda Survivor Drops Its Price For A Magical, Limited Time Only Posted by Andrew Stevens on June 18th, 2013 [ permalink ] iPad Only App - Designed for the iPad | Read more »
Galaxy At War Online Review
Galaxy At War Online Review By Rob Rich on June 18th, 2013 Our Rating: :: THE FAMILIAR FRONTIERUniversal App - Designed for iPhone and iPad Galaxy At War Online has all the familiar trappings of many compelling freemium games. The... | Read more »

Price Scanner via MacPrices.net

iFixIt Tears Down mid-2013 11.6-inch MacBook Air
iFixIt Chief Information Architect Miroslav Djuric says: The epic week of disassembly continues: Today, the MacBook Air 11″ found its way onto our teardown table and was soon just another Apple in... Read more
Mature Consumers Know When They Need a PC
Tech.Pinions’ Ben Bajarin sensibly observes that one of the fundamental characteristics of a mature market is mature consumers – mature in the sense that they know what they want and more importantly... Read more
Windows 8 Continues Ascension in User Popularity R...
Softpedia’s Bogdan Popa notes that Windows 8 is now the fourth most popular operating system in the world, and according to some new statistics, it continues to gain new users every day. Popa cites... Read more
Apple iOS and OS X Updates Put Bluetooth Smart Rea...
From its Worldwide Developers Conference last week, Apple announced unprecedented integration of Bluetooth technology into its operating systems – a move that sets the bar for Bluetooth integration... Read more
Buy a 13″ MacBook Pro, get AppleCare for as little...
Adorama has 13″ MacBook Pros bundled with 3-year AppleCare Protection Plans for as little as $40 extra (AppleCare has an MSRP of $249 for 13-inch MacBook Pros). Shipping is free, and Adorama charges... Read more
Updated MacBook Price Trackers
We’ve updated our MacBook Price Trackers with the latest information on prices, bundles, and availability on MacBook Airs, MacBook Pros, and the MacBook Pros with Retina Displays from Apple’s... Read more
Save $140 on the 15″ 2.3GHz MacBook Pro
B&H Photo has the 15″ 2.3GHz MacBook Pro on sale for $1659 including free shipping. Their price is $140 off MSRP. B&H will include free copies of Parallels Desktop, Bento Database, and LoJack... Read more
15-inch Retina MacBook Pros on sale for $200 off M...
 B&H Photo has 15″ Retina MacBook Pros on sale for $200 off MSRP including free shipping. B&H will also include free copies of Parallels Desktop, Bento Database, and LoJack for Laptops... Read more
Apple refurbished iMacs available for up to $330 o...
Apple has Apple Certified Refurbished 2012 iMacs in stock today for up to $330 off MSRP – 15% off. Each iMac comes with an Apple one-year warranty, and shipping is free: - 21″ 2.7GHz iMac: $1099 $100... Read more
Save up to $200 on MacBook Pros with Apple Educati...
Purchase a new MacBook Pro at The Apple Store for Education, and take up to $200 off MSRP. All teachers, students, and staff of any educational institution qualify for the discount. Shipping is free... Read more

Jobs Board

*Apple* At-Home Team Manager - Apple (U...
Changing the world is all in a day's work at Apple . If you love innovation, here's your chance to make a career of it. You'll work hard. But the job comes with more than Read more
*Apple* Retail - Manager - Apple (Unite...
Job SummaryKeeping an Apple Store thriving requires a diverse set of leadership skills, and as a Manager, youre a master of them all. In the stores fast-paced, dynamic Read more
*Apple* - Solution Architect - CompuCom...
Job Location: US-TX-Dallas Posted Date: 4/18/2013 Overview: The Apple Solution Architect (SA) will be responsible for supporting pre-sales and post-sales solutions in Read more
*Apple* Support Technician; Mid-level -...
A Kforce client in Washington, DC area is seeking an Apple Support Technician. This contractor will have the following types of responsibilities including, but not Read more
Systems Engineer - *Apple* TV - Apple...
Job Summary The Apple TV team is looking for an experienced engineer with a passion for delivering first in class home entertainment solutions. The individual must be Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.