Tips for Working with Postscript Printer Driver for Macintosh

Total Page:16

File Type:pdf, Size:1020Kb

Tips for Working with Postscript Printer Driver for Macintosh ® Tips for Working with the New PostScript Printer ®®Driver for Macintosh Adobe Developer Support Technical Note #5134 2 April 1993 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/ PN LPS5134 Copyright 1993 by Adobe Systems Incorporated. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written consent of the publisher. Any software referred to herein is furnished under license and may only be used or copied in accordance with the terms of such license. PostScript is a registered trademark of Adobe Systems Incorporated. All instances of the name PostScript in the text are references to the PostScript language as defined by Adobe Systems Incorpo- rated unless otherwise stated. The name PostScript also is used as a product trademark for Adobe Sys- tems’ implementation of the PostScript language interpreter. Any references to a “PostScript printer,” a “PostScript file,” or a “PostScript driver” refer to printers, files, and driver programs (respectively) which are written in or support the PostScript language. The sentences in this book that use “PostScript language” as an adjective phrase are so constructed to rein- force that the name refers to the standard language definition as set forth by Adobe Systems Incorpo- rated. Adobe, PostScript, the PostScript logo, and Display PostScript are trademarks of Adobe Systems Incorporated which may be registered in certain jurisdictions. Apple, AppleTalk, LaserWriter, Mac, and Macintosh are registered trademarks and QuickDraw is a trademark of Apple Computer, Inc. This publication and the information herein is furnished AS IS, is subject to change without notice, and should not be construed as a commitment by Adobe Systems Incorporated. Adobe Systems Incorpo- rated assumes no responsibility or liability for any errors or inaccuracies, makes no warranty of any kind (express, implied or statutory) with respect to this publication, and expressly disclaims any and all warranties of merchantability, fitness for particular purposes and noninfringement of third party rights. Contents Tips for Working with the New PostScript Printer Driver for Macintosh 5 1 Introduction 5 Who Should Read This Document 5 2New Driver Overview 6 3Driver Architecture 8 2 Pass design 8 The md Dictionary 9 PostScript Interpreter Graphics State Management 9 Page Setup and Print Dialogs 10 4 Compatibility Issues 11 Determining the Identity of the Driver 12 Use of LaserPrep procedures 12 Flushing the QuickDraw Graphics State into a QuickDraw Picture 13 PostScript Language PicComments 14 Emitting Device Setup Code 17 EPS File Generation and Import 18 Emitting Binary Data 21 5New PrGeneral Calls 22 Obtaining the PPD File for the Target Printer 23 Obtaining Information about the Target Printer 24 6 References 28 General References 28 PostScript Language References 29 Index 31 iii iv Contents (2 Apr 93) Tips for Working with the New PostScript Printer Driver for Macintosh 1 Introduction Adobe Systems Incorporated and Apple Computer have jointly developed a new PostScript™ printer driver for Macintosh®. This driver, referred to here as PSPrinter, is a replacement for the existing Apple® LaserWriter® driver. PSPrinter is not a modified LaserWriter driver but is a complete rewrite. The architecture and code generation strategy of PSPrinter is significantly differ- ent than the existing LaserWriter driver and allows for the generated Post- Script language code to be more efficient and to conform to conventions for structured PostScript language code. This technical note is intended to alert application writers to the differences between the PSPrinter driver and the existing Apple LaserWriter driver (referred to here as the ‘old LaserWriter driver’, meaning all LaserWriter drivers prior to version 8.0) from the viewpoint of application writers. It highlights areas where compatibility issues exist and how developers can avoid compatibility problems. Most of the compatibility problems are due to techniques, used by application developers, which have long been discour- aged by Apple. Other areas are more subtle, and application writers may not be aware of their dependencies on the old Apple LaserWriter driver architec- ture. 1.1 Who Should Read This Document Most of this document is intended to aid application developers who generate their own custom PostScript language code via one of several mechanisms available to Macintosh applications. Typically these are the application devel- opers who either knowingly or unknowingly take advantage of the structure and operation of the old LaserWriter driver. This document tries to address some of the architectural differences between PSPrinter and the old Laser- Writer driver and how these differences may impact the PostScript language code an application emits. Section 2 discusses some of the design objectives of the new driver. Section 3 gives a brief overview of the architecture of the driver, laying the groundwork for discussion of areas where application writers might encounter differences 5 between PSPrinter and the old LaserWriter driver. Section 4 goes into depth on specific compatibility issues which have been identified and discusses ideas for avoiding these compatibility problems. Section 5 discusses new PrGeneral selectors and how they may be used to allow applications to gather more information about the current print job and target printer. Finally section 6 gives a list of references which may be useful to Macintosh applica- tion writers, both those who generate custom PostScript language code during printing and those who allow the driver to generate all the PostScript language code. Application writers who allow the driver to generate all the PostScript lan- guage code during the printing process should read the following: •section 3.4 discussing the page setup and print dialogs •section 4.6 discussing EPS file generation • the relevant documents listed in section 6 which discuss aspects of print- ing and print driver compatibility which are not necessarily specific to printing through PSPrinter or the old LaserWriter driver. Writers of applications who generate any custom PostScript language code while printing with the old LaserWriter driver are encouraged to carefully read this complete document, especially section 4. 2New Driver Overview The new driver completely replaces the old LaserWriter driver. The principal design goals of the new driver were: •To make full use of the new capabilities available in PostScript Level 2 software (such as data compression, improved pattern rendering, rectangle drawing primitives, and device-independent color calibration) while main- taining compatibility with older, Level 1 output devices •To improve performance when printing to all PostScript printers •To provide user access to all device-specific features of any chosen output device through a dynamically extensible user interface •To allow for future expansion and adaptation through a modular architec- ture for network communications •To improve flexibility and compatibility by allowing PostScript language files to be saved in a variety of portable formats, including Encapsulated PostScript language file format (EPS). 6 Tips for Working with the New PostScript Printer Driver for Macintosh (2 Apr 93) •To generate output files conforming to Adobe’s document structuring con- ventions (DSC). While some of the improvements available with PSPrinter may not be obvi- ous at the user interface level of the driver, such as improved performance and PostScript Level 2 software support, there are several improvements which provide new functionality to end users. The ability to handle 2-up and 4-up printing (see Figure 1) is a direct result of PSPrinter’s generation of con- forming PostScript language code. The ability to allow for extended paper sizes and paper bin support (see Figure 2) is due to the driver’s use of Post- Script Printer Description (PPD) files for configuring the user interface and generating device specific code. The ability to generate EPS files (see Figure 3) is available, again because of PSPrinter’s generation of conforming Post- Script language code. Figure 1 Page Setup Dialog Figure 2 Print Dialog 2 New Driver Overview 7 Figure 3 Print to Disk Dialog 3 Driver Architecture This section includes a short summary of the PSPrinter architecture. This dis- cussion describes the way the new driver functions. This is necessary in order to discuss the application compatibility issues described in section 4. 3.1 2 Pass design PSPrinter is by design a 2-pass driver. In order to optimize the generated PostScript language code, it first spools the application drawing to disk as a sequence of QuickDraw™ pictures, one for each page. When the application calls PrCloseDoc the driver completes writing the spool file to disk. The set- ting of foreground printing or background printing controls when the second pass is completed. If Background printing is Off, then the application’s call to PrCloseDoc causes PSPrinter to perform the second pass of printing before PrCloseDoc returns. PSPrinter opens the connection to the printer, performs queries for fonts and other information, calls DrawPicture on each picture in the spool file, and converts the resulting QuickDraw calls to PostScript lan- guage code. When all the pages have been sent to the printer, PSPrinter closes
Recommended publications
  • Mac OS 8 Update
    K Service Source Mac OS 8 Update Known problems, Internet Access, and Installation Mac OS 8 Update Document Contents - 1 Document Contents • Introduction • About Mac OS 8 • About Internet Access What To Do First Additional Software Auto-Dial and Auto-Disconnect Settings TCP/IP Connection Options and Internet Access Length of Configuration Names Modem Scripts & Password Length Proxies and Other Internet Config Settings Web Browser Issues Troubleshooting • About Mac OS Runtime for Java Version 1.0.2 • About Mac OS Personal Web Sharing • Installing Mac OS 8 • Upgrading Workgroup Server 9650 & 7350 Software Mac OS 8 Update Introduction - 2 Introduction Mac OS 8 is the most significant update to the Macintosh operating system since 1984. The updated system gives users PowerPC-native multitasking, an efficient desktop with new pop-up windows and spring-loaded folders, and a fully integrated suite of Internet services. This document provides information about Mac OS 8 that supplements the information in the Mac OS installation manual. For a detailed description of Mac OS 8, useful tips for using the system, troubleshooting, late-breaking news, and links for online technical support, visit the Mac OS Info Center at http://ip.apple.com/infocenter. Or browse the Mac OS 8 topic in the Apple Technical Library at http:// tilsp1.info.apple.com. Mac OS 8 Update About Mac OS 8 - 3 About Mac OS 8 Read this section for information about known problems with the Mac OS 8 update and possible solutions. Known Problems and Compatibility Issues Apple Language Kits and Mac OS 8 Apple's Language Kits require an updater for full functionality with this version of the Mac OS.
    [Show full text]
  • Develop-19 9408 September 1994.Pdf
    develop E D I T O R I A L S T A F F T H I N G S T O K N O W C O N T A C T I N G U S Editor-in-Cheek Caroline Rose develop, The Apple Technical Feedback. Send editorial suggestions Managing Editor Cynthia Jasper Journal, a quarterly publication of or comments to Caroline Rose at Technical Buckstopper Dave Johnson Apple Computer’s Developer Press AppleLink CROSE, Internet Bookmark CD Leader Alex Dosher group, is published in March, June, [email protected], or fax September, and December. develop (408)974-6395. Send technical Our Boss Greg Joswiak articles and code have been reviewed questions about develop to Dave His Boss Dennis Matthews for robustness by Apple engineers. Johnson at AppleLink JOHNSON.DK, Review Board Pete (“Luke”) Alexander, Dave Internet [email protected], CompuServe Radcliffe, Jim Reekes, Bryan K. (“Beaker”) This issue’s CD. Subscription issues 75300,715, or fax (408)974-6395. Or Ressler, Larry Rosenstein, Andy Shebanow, of develop are accompanied by the write to Caroline or Dave at Apple Gregg Williams develop Bookmark CD. The Bookmark Computer, Inc., One Infinite Loop, Contributing Editors Lorraine Anderson, CD contains a subset of the materials M/S 303-4DP, Cupertino, CA 95014. Steve Chernicoff, Toni Haskell, Judy on the monthly Developer CD Series, Helfand, Jody Larson, Joe Williams which is available from APDA. Article submissions. Ask for our Indexer Marc Savage Included on the CD are this issue and Author’s Guidelines and a submission all back issues of develop along with the form at AppleLink DEVELOP, A R T & P R O D U C T I O N code that the articles describe.
    [Show full text]
  • Important for All Apple Printing and Graphics Developers: the Information in This Technote Is Still Relevant up to and Including
    TN 1057 - Querying PS Printers at dtp Creation Time the GX Page: 1 Way NOTE: This Technical Note has been retired. Please see the Technical Notes page for current documentation. CONTENTS Important for all Apple Printing and Graphics Developers: Necessary Requirements for Querying Your Printer Implementing Message Overrides The information in this Technote is still relevant up to and including Mac OS 7.6 Additional Dialog Handling Functions with QuickDraw GX 1.1.5. Beginning with The Query Code the release of Mac OS 8.0, however, Apple plans to deliver a system which Summary incorporates QuickDraw GX graphics and typography only. QuickDraw GX printer References drivers and GX printing extensions will Downloadables not be supported in Mac OS 8.0 or in future Mac OS releases. Apple's goal is to simplify the user experience of printing by unifying the Macintosh graphic and printing architectures and standardizing on the classic Printing Manager. For details on Apple's official announcement, refer to </technotes/gxchange.html> For some time now, Apple developers have asked how they can query their PostScript printers at dtp creation time using the same methods as the LaserWriter GX printer driver. This Technote discusses how the LaserWriter GX driver does it at query time and provides you with the printing messages you need to override in order to achieve the same functionality. You may need to change or add to the code TN 1057 - Querying PS Printers at dtp Creation Time the GX Page: 2 Way in this Note. For example, if you want to query for the number of paper trays or query for an envelope tray, you will need to modify this code, as explained later in this Note.
    [Show full text]
  • Macintosh System 7.5 Upgrade Guide 1994.Pdf
    Macintosh ••••••••••••••••••••••••••• Upgrade Guide <-»·' c:_ 1 - '--~ I · · ····~ f~··~~ \ ,{"&.--;:... (}.. ... Macintosh • • • Upgrade Guide • Apple Compute.r, Inc. © 1994 Apple Computer, Inc. All rights reserved . Under the copyright laws. this manual may not be copied, in whole or in part. wi thout the written consent of Apple. Your rights to the software are governed by the accompanying soft ware li cense agreement. The Apple logo is a trademark of Apple Computer, Inc., registered in !he U.S. and olher count ries. Use of the "keybomd" Apple logo (Option-Shi 1"1 -K) for commercial purposes witJwut the prior wrillen consenl of Apple may constitule lrademark infringement and unfair compel ilion in violation or federal and state laws. Every efforl has been made to ensure tlult the informati on in this manual is accurate. Apple is not responsib le for printi ng or clerical errors. Apple Computer. Inc. I Infinite Loop Cuperti no. CA 950 14-2084 (408) 996- 10 I0 Apple, the Apple logo, AppleTalk, LaserWritcr, Mac intosh. and PowerBook are trademarks of Apple Computer. Inc., registered in the U.S. and other countries. AppleMail. AppleScri pt. At Ease. Balloon Help, ColorSync, Finder. Plai nTalk, PowerShare, PowerTalk, Quick Draw. QuickTime, and TrucTypc arc trademarks of Apple Computer. Inc. Adobe, Adobe Ill ustrator. Adobe Photoshop. Adobe Type Manager. and PostScript are trademarks of Adobe Systems Incorporated, which may be registered in certain jurisdict ions. Exposure is a registered tmdemark of Preferred Publi shers, Inc. Helvetica and Times are regislered trademarks of Linotype Company. QMS is a registered lrademark of QMS. Inc. Quark X Press is a registered trademark of Quark, Inc.
    [Show full text]
  • Mac OS 8 Revealed
    •••••••••••••••••••••••••••••••••••••••••••• Mac OS 8 Revealed Tony Francis Addison-Wesley Developers Press Reading, Massachusetts • Menlo Park, California • New York Don Mills, Ontario • Harlow, England • Amsterdam Bonn • Sydney • Singapore • Tokyo • Madrid • San Juan Seoul • Milan • Mexico City • Taipei Apple, AppleScript, AppleTalk, Color LaserWriter, ColorSync, FireWire, LocalTalk, Macintosh, Mac, MacTCP, OpenDoc, Performa, PowerBook, PowerTalk, QuickTime, TrueType, and World- Script are trademarks of Apple Computer, Inc., registered in the United States and other countries. Apple Press, the Apple Press Signature, AOCE, Balloon Help, Cyberdog, Finder, Power Mac, and QuickDraw are trademarks of Apple Computer, Inc. Adobe™, Acrobat™, and PostScript™ are trademarks of Adobe Systems Incorporated or its sub- sidiaries and may be registered in certain jurisdictions. AIX® is a registered trademark of IBM Corp. and is being used under license. NuBus™ is a trademark of Texas Instruments. PowerPC™ is a trademark of International Business Machines Corporation, used under license therefrom. SOM, SOMobjects, and System Object Model are licensed trademarks of IBM Corporation. UNIX® is a registered trademark of Novell, Inc. in the United States and other countries, licensed exclusively through X/Open Company, Ltd. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and Addison-Wesley was aware of a trademark claim, the designations have been printed in initial capital letters or all capital letters. The author and publisher have taken care in the preparation of this book, but make no express or implied warranty of any kind and assume no responsibility for errors or omissions. No liability is assumed for incidental or consequential damages in connection with or arising out of the use of the information or programs contained herein.
    [Show full text]
  • Develop-22 9506 June 1995.Pdf
    develop E D I T O R I A L S T A F F T H I N G S T O K N O W C O N T A C T I N G U S Editor-in-Cheek Caroline Rose develop, The Apple Technical Feedback. Send editorial suggestions Managing Editor Toni Moccia Journal, a quarterly publication of or comments to Caroline Rose at Technical Buckstopper Dave Johnson Apple Computer’s Developer Press AppleLink CROSE, Internet group, is published in March, June, [email protected], or fax Bookmark CD Leader Alex Dosher September, and December. develop (408)974-6395. Send technical Able Assistant Meredith Best articles and code have been reviewed questions about develop to Dave Our Boss Greg Joswiak for robustness by Apple engineers. Johnson at AppleLink JOHNSON.DK, His Boss Dennis Matthews Internet [email protected], CompuServe This issue’s CD. Subscription issues Review Board Pete “Luke” Alexander, Dave 75300,715, or fax (408)974-6395. Or of develop are accompanied by the Radcliffe, Jim Reekes, Bryan K. “Beaker” write to Caroline or Dave at Apple develop Bookmark CD. This CD contains Ressler, Larry Rosenstein, Andy Shebanow, Computer, Inc., 1 Infinite Loop, M/S a subset of the materials on the monthly Gregg Williams 303-4DP, Cupertino, CA 95014. Developer CD Series, available from Contributing Editors Lorraine Anderson, APDA. Included on the CD are this Article submissions. Ask for our Steve Chernicoff, Toni Haskell, Jody Larson, issue and all back issues of develop along Author’s Guidelines and a submission Cheryl Potter with the code that the articles describe.
    [Show full text]
  • Apple Directions 06/96
    The Developer Business Report June 1996 AppleDirections CONTENTS APPLE NEWS STRATEGY MOSAIC IBM Licenses the Mac OS 1 IBM Licenses Why Mac OS 8 Strategy Mosaic: Why Mac OS 8 is Important 1 the Mac OS Is Important Editor’s Note: Too Much News 2 New Mac OS Sublicensees By Gregg Williams, Apple Directions staff IndustryWatch 5 Also Announced New Apple Developer Relations Part 1: Backward Compatibility Charter, Organization 12 and the Mac OS 8 Architecture Taking another large step forward in its Apple Multimedia Program Becomes expanding Mac OS licensing program, Apple Apple Media Program 13 Computer, Inc., recently licensed the Mac OS Mac OS 8 (formerly known by the code name New Release Schedule for Mac OS 8 13 to IBM. As a result of the agreement, Apple and Copland) is a big step in the ongoing evolu- IBM expect to work together to expand Power tion of the Mac OS, even bigger than the tran- New QuickTime VR 1.0 Tools Made PC microprocessor and Mac OS market share sition from System 6 to System 7. With Mac Available as Apple Plans Next far beyond what it is today by offering OS 8, Apple Computer, Inc., is stepping away QuickTime VR Release 13 customers additional sources and greater from an operating system designed in the choices for Mac OS–based systems. mid-1980s and moving toward a later version Apple Licenses Sun’s Java 14 According to the agreement, IBM will be that will serve the Mac OS platform well past Technical Support Now Available to able to sublicense the Mac OS with IBM Power the year 2000.
    [Show full text]
  • HISTORY of APPLE[Tm] MACINTOSH[Tm] OPERATING SYSTEM
    HISTORY OF APPLE[tm] MACINTOSH[tm] OPERATING SYSTEM LisaDesk : released, on January 1983, for Apple Lisa computer. On January 1985, Lisa 2-10, outfitted with MacWorks, was renamed Macintoh XL. System 1 (1.0 and 1.1) : released respectively on January 1984 and May 1984, both versions were directly derived from LisaDesk offered less functionality, in favor of being more stable. Certain functions of LisaDesk were included in later versions of Mac[tm] OS, including Mac[tm] OS X. System 2 (1.2 to 2.1) : while integrating new functions, the principal objective of this system was to allow a better management to compensate for the absence of a hard disk on first models of Macintosh. System 3 (2.2 to 3.3) : this system accompanied, on 1986, the new Macintosh models. This system had more facility and was more powerful, it allowed the integration of new file format HFS, of new communications functionality, and laser printer support. System 4 & 5 (4.0 to 5.1) : these systems accompanied the first Macintosh models with colour monitors, and allowed transition between mono-task system and cooperative multi-task system with first generation of Multifinder which made possible to manage several applications simultaneously. System 6 (6.0 to 6.0.8) : improvements to the cooperative multi-task system with second generation of Multifinder. It was released in many specialized versions according to the model which was equipped to meet specific needs, particularly for graphic applications. System 7 (7.0 to 7.6.1) : complete integration of cooperative multi-task processing inside the system, this system gradually integrated increasingly significant functionality concerning multimedia applications and Internet.
    [Show full text]
  • Quickdraw GX and the Macintosh Environment 1
    CHAPTER 1 QuickDraw GX and the Macintosh Environment 1 This chapter describes those aspects of QuickDraw GX that relate specifically to the Macintosh Toolbox, Macintosh programming environment, and Macintosh image data 1 format. The chapter addresses the following topics: GX and the Macintosh Environment QuickDraw ■ the Macintosh interface to QuickDraw GX ■ the QuickDraw–to–QuickDraw GX translator Before reading this chapter, you should be generally familiar with QuickDraw GX and QuickDraw GX objects, as described in the chapter “Introduction to QuickDraw GX” in Inside Macintosh: QuickDraw GX Objects. Additional specific information related to view ports and view devices is in the “View-Related Objects” chapter in Inside Macintosh: QuickDraw GX Objects. Because this chapter describes the interface between QuickDraw GX and the rest of the Macintosh Toolbox, it uses many terms defined elsewhere. For a general picture of the Macintosh Toolbox, see Inside Macintosh: Overview or the introductory chapter of Inside Macintosh: Macintosh Toolbox Essentials. For information on Macintosh windows, see the chapter “Window Manager” in Inside Macintosh: Macintosh Toolbox Essentials. Mouse location and mouse handling is described in the chapter “Event Manager” in Inside Macintosh: Macintosh Toolbox Essentials. QuickDraw, QuickDraw coordinates, the QuickDraw picture format, picture comments, graphics ports, and Macintosh graphics devices are all described in Inside Macintosh: Imaging With QuickDraw. About QuickDraw GX and the Macintosh Environment 1 QuickDraw GX provides a number of useful functions that assist your application development on the Macintosh computer. The Macintosh interface provides functions specific to the Macintosh platform that allow you to use information provided by other parts of Macintosh system software.
    [Show full text]
  • Phaser 340 Color Printer Using Phaser GX Driver
    Using the Phaser 340 GX driver If you are using Apple Macintosh QuickDraw GX and System Software 7.5 or later, use the Phaser 340 GX driver to print to your Phaser 340 printer. ■ The Phaser 340 GX driver works with QuickDraw GX and non-QuickDraw GX applications. ■ QuickDraw GX does not work with non-QuickDraw GX printer drivers. If you want to print from non-QuickDraw GX applications with a driver such as the LaserWriter 8.x, you must first disable QuickDraw GX; see Disabling QuickDraw GX for instructions. Click on the following topics for more information: ■ System requirements ■ Installing the Phaser 340 GX printer driver ■ Creating a desktop printer ■ Setting up unique desktop printers ■ Printing with a desktop printer ■ Using the Printing menu ■ Setting up a shared printer ■ Using a shared printer ■ Printing from QuickDraw GX applications ■ Printing from non-QuickDraw GX applications ■ Viewing printer status ■ Disabling QuickDraw GX System requirements Note You must have an optional PhaserShare card installed in the printer before using the installed software. The Tektronix Phaser 340 GX printer driver requires the following hardware and software: ■ An Apple Macintosh II computer, or later ■ At least 8 Mbytes of RAM ■ QuickDraw GX and System Software version 7.5 or later Installing the Phaser 340 GX printer driver Use the installer application to install the Phaser 340 GX printer driver. Select one of the standard options to automatically install all of the printer’s software, or select the Phaser 340 GX printer driver option. The driver is only installed if you are running QuickDraw GX on your Macintosh.
    [Show full text]
  • Quicktime File Format.Pdf
    QuickTime File Format Specification, May 1996 Developer Press © Apple Computer, Inc. 1996 Apple Computer, Inc. Adobe, Acrobat, and PostScript are Some states do not allow the exclusion or © 1996 Apple Computer, Inc. trademarks of Adobe Systems limitation of implied warranties or liability All rights reserved. Incorporated or its subsidiaries and for incidental or consequential damages, so the above limitation or exclusion may not No part of this publication or the may be registered in certain apply to you. This warranty gives you software described in it may be jurisdictions. specific legal rights, and you may also have reproduced, stored in a retrieval Helvetica and Palatino are registered other rights which vary from state to state. system, or transmitted, in any form or trademarks of Linotype-Hell AG and/ by any means, mechanical, electronic, or its subsidiaries. photocopying, recording, or otherwise, ITC Zapf Dingbats is a registered without prior written permission of trademark of International Typeface Apple Computer, Inc., except in the Corporation. normal use of the software or to make a QuickView™ is licensed from Altura backup copy of the software or Software, Inc. documentation. The same proprietary and copyright notices must be affixed to Simultaneously published in the United any permitted copies as were affixed to States and Canada. the original. This exception does not allow copies to be made for others, LIMITED WARRANTY ON MEDIA AND whether or not sold, but all of the REPLACEMENT material purchased (with all backup copies) may be sold, given, or loaned to If you discover physical defects in the another person. Under the law, copying manual or in the media on which a software includes translating into another product is distributed, ADC will replace the language or format.
    [Show full text]
  • HP Designjet 2500CP Printing Guide for Macintosh, C4704-90091
    Adobe PS Printer Driver 3.0—Win 1/22/97 18:58 frontcov.fra HP DesignJet 2500CP Printing Guide for Macintosh Right master page Adobe PS Printer Driver 3.0—Win 1/22/97 18:58 frontcov.fra TRADEMARK ACKNOWLEDGMENTS Adobe, PostScript, PhotoShop and the PostScript Logo and are trademarks of Adobe Systems, Inc. which may be registered in certain jurisdictions. Apple, AppleTalk, Chooser, TrueType and Macintosh are registered trademarks and Finder is a trademark of Apple Computer, Inc. PANTONE® is PANTONE, Inc.'s check-standard trademark for color and is a registered trademark of PANTONE, Inc. QuarkXPress® is a registered trademark of Quark, Inc. TrueType is a trademark of Apple Computers, Inc. QuarkXPress® is a registered trademark of Quark, Inc. Left master page Adobe PS Printer Driver 3.0—Win 1/22/97 18:59 macguide.toc Contents Introduction & Guide Overview . 1 Chapter 1: Installing the HP DesignJet PostScript Drivers for Macintosh . 5 System Requirements 5 Special notes for QuarkXPress users 6 Chapter 2. Choosing your driver setup instructions . 7 Chapter 3. Non-QDGX: Setting up your driver . 9 Chapter 4. Non-QDGX: Manually configuring your printer . 13 Chapter 5. Non-QDGX: Using the PSPrinter 8.3.1 Driver . 17 Chapter 6. QDGX: Creating your Desktop Printer . 19 Chapter 7. QDGX: Using your Desktop Printer . 21 Chapter 8. The HP LaserJet Utility 3.2 . 23 Chapter 9. Working with color . 24 Chapter 10. Working with fonts . 25 Chapter 11. Troubleshooting . 27 Ordering Drivers 27 Troubleshooting Information 28 Right master page Adobe PS Printer Driver 3.0—Win 1/22/97 18:59 macguide.toc Left master page Adobe PS Printer Driver 3.0—Win 1/22/97 18:59 intro.fra 1 Introduction & Guide Overview f you have not yet installed your printer driver, you should do so before continuing.
    [Show full text]