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.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Whitethorn Games combines two completely...
If you have ever gone fishing then you know that it is a lesson in patience, sitting around waiting for a bite that may never come. Well, that's because you have been doing it wrong, since as Whitehorn Games now demonstrates in new release Skate... | Read more »
Call of Duty Warzone is a Waiting Simula...
It's always fun when a splashy multiplayer game comes to mobile because they are few and far between, so I was excited to see the notification about Call of Duty: Warzone Mobile (finally) launching last week and wanted to try it out. As someone who... | Read more »
Albion Online introduces some massive ne...
Sandbox Interactive has announced an upcoming update to its flagship MMORPG Albion Online, containing massive updates to its existing guild Vs guild systems. Someone clearly rewatched the Helms Deep battle in Lord of the Rings and spent the next... | Read more »
Chucklefish announces launch date of the...
Chucklefish, the indie London-based team we probably all know from developing Terraria or their stint publishing Stardew Valley, has revealed the mobile release date for roguelike deck-builder Wildfrost. Developed by Gaziter and Deadpan Games, the... | Read more »
Netmarble opens pre-registration for act...
It has been close to three years since Netmarble announced they would be adapting the smash series Solo Leveling into a video game, and at last, they have announced the opening of pre-orders for Solo Leveling: Arise. [Read more] | Read more »
PUBG Mobile celebrates sixth anniversary...
For the past six years, PUBG Mobile has been one of the most popular shooters you can play in the palm of your hand, and Krafton is celebrating this milestone and many years of ups by teaming up with hit music man JVKE to create a special song for... | Read more »
ASTRA: Knights of Veda refuse to pump th...
In perhaps the most recent example of being incredibly eager, ASTRA: Knights of Veda has dropped its second collaboration with South Korean boyband Seventeen, named so as it consists of exactly thirteen members and a video collaboration with Lee... | Read more »
Collect all your cats and caterpillars a...
If you are growing tired of trying to build a town with your phone by using it as a tiny, ineffectual shover then fear no longer, as Independent Arts Software has announced the upcoming release of Construction Simulator 4, from the critically... | Read more »
Backbone complete its lineup of 2nd Gene...
With all the ports of big AAA games that have been coming to mobile, it is becoming more convenient than ever to own a good controller, and to help with this Backbone has announced the completion of their 2nd generation product lineup with their... | Read more »
Zenless Zone Zero opens entries for its...
miHoYo, aka HoYoverse, has become such a big name in mobile gaming that it's hard to believe that arguably their flagship title, Genshin Impact, is only three and a half years old. Now, they continue the road to the next title in their world, with... | Read more »

Price Scanner via MacPrices.net

B&H has Apple’s 13-inch M2 MacBook Airs o...
B&H Photo has 13″ MacBook Airs with M2 CPUs and 256GB of storage in stock and on sale for up to $150 off Apple’s new MSRP, starting at only $849. Free 1-2 day delivery is available to most US... Read more
M2 Mac minis on sale for $100-$200 off MSRP,...
B&H Photo has Apple’s M2-powered Mac minis back in stock and on sale today for $100-$200 off MSRP. Free 1-2 day shipping is available for most US addresses: – Mac mini M2/256GB SSD: $499, save $... Read more
Mac Studios with M2 Max and M2 Ultra CPUs on...
B&H Photo has standard-configuration Mac Studios with Apple’s M2 Max & Ultra CPUs in stock today and on Easter sale for $200 off MSRP. Their prices are the lowest available for these models... Read more
Deal Alert! B&H Photo has Apple’s 14-inch...
B&H Photo has new Gray and Black 14″ M3, M3 Pro, and M3 Max MacBook Pros on sale for $200-$300 off MSRP, starting at only $1399. B&H offers free 1-2 day delivery to most US addresses: – 14″ 8... Read more
Department Of Justice Sets Sights On Apple In...
NEWS – The ball has finally dropped on the big Apple. The ball (metaphorically speaking) — an antitrust lawsuit filed in the U.S. on March 21 by the Department of Justice (DOJ) — came down following... Read more
New 13-inch M3 MacBook Air on sale for $999,...
Amazon has Apple’s new 13″ M3 MacBook Air on sale for $100 off MSRP for the first time, now just $999 shipped. Shipping is free: – 13″ MacBook Air (8GB RAM/256GB SSD/Space Gray): $999 $100 off MSRP... Read more
Amazon has Apple’s 9th-generation WiFi iPads...
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
Discounted 14-inch M3 MacBook Pros with 16GB...
Apple retailer Expercom has 14″ MacBook Pros with M3 CPUs and 16GB of standard memory discounted by up to $120 off Apple’s MSRP: – 14″ M3 MacBook Pro (16GB RAM/256GB SSD): $1691.06 $108 off MSRP – 14... Read more
Clearance 15-inch M2 MacBook Airs on sale for...
B&H Photo has Apple’s 15″ MacBook Airs with M2 CPUs (8GB RAM/256GB SSD) in stock today and on clearance sale for $999 in all four colors. Free 1-2 delivery is available to most US addresses.... Read more
Clearance 13-inch M1 MacBook Airs drop to onl...
B&H has Apple’s base 13″ M1 MacBook Air (Space Gray, Silver, & Gold) in stock and on clearance sale today for $300 off MSRP, only $699. Free 1-2 day shipping is available to most addresses in... Read more

Jobs Board

Medical Assistant - Surgical Oncology- *Apple...
Medical Assistant - Surgical Oncology- Apple Hill Location: WellSpan Medical Group, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Read more
Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel 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
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
Business Analyst | *Apple* Pay - Banco Popu...
Business Analyst | Apple PayApply now " Apply now + Apply Now + Start applying with LinkedIn Start + Please wait Date:Mar 19, 2024 Location: San Juan-Cupey, PR Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.