PDF Reference, Second Edition

Total Page:16

File Type:pdf, Size:1020Kb

PDF Reference, Second Edition PDF Reference second edition Adobe Portable Document Format Version 1.3 Adobe Systems Incorporated ADDISON–WESLEY Boston • San Francisco • New York • Toronto • Montreal London • Munich • Paris • Madrid Capetown • Sydney • Tokyo • Singapore • Mexico City Library of Congress Cataloging-in-Publication Data Adobe portable document format, version 1.3 / Adobe Systems Incorporated. — 2nd ed. p. cm. Includes bibliographical references and index. ISBN 0-201-61588-6 1. Text processing (Computer science). 2. Adobe Acrobat. 3. Portable document software. I. Adobe Systems. QA76.76.T49 A36 2000 005.7′2—dc21 00-040581 © 1985–2000 Adobe Systems Incorporated. All rights reserved. NOTICE: All information contained herein is the property of Adobe Systems Incorporated. No part of this publication (whether in hardcopy or electronic form) may be reproduced or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written consent of the publisher. 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 Incorporated unless otherwise stated. The name PostScript also is used as a product trademark for Adobe Systems’ implementation of the PostScript language interpreter. Except as other- wise stated, any mention of a “PostScript output device,” “PostScript printer,” “PostScript soft- ware,” or similar item refers to a product that contains PostScript technology created or licensed by Adobe Systems Incorporated, not to one that purports to be merely compatible. Adobe, the Adobe logo, Acrobat, the Acrobat logo, Adobe Garamond, Aldus, Distiller, Extreme, FrameMaker, Illustrator, InDesign, Minion, Myriad, PageMaker, Photoshop, Poetica, and PostScript are trademarks of Adobe Systems Incorporated. Apple, Mac, Macin- tosh, QuickDraw, and TrueType are trademarks of Apple Computer, Inc., registered in the United States and other countries. ITC Zapf Dingbats is a registered trademark of Interna- tional Typeface Corporation. Helvetica and Times are registered trademarks of Linotype-Hell AG and/or its subsidiaries. Microsoft and Windows are either registered trademarks or trade- marks of Microsoft Corporation in the United States and/or other countries. Times New Roman is a trademark of The Monotype Corporation registered in the U.S. Patent and Trade- mark Office and may be registered in certain other jurisdictions. Ryumin Light is a trademark of Morisawa & Co., Ltd. UNIX is a registered trademark of The Open Group. PANTONE is a registered trademark and Hexachrome is a trademark of Pantone, Inc. QuarkXPress is a trade- mark of Quark, Inc. and/or certain of the Quark Affiliated Companies, Reg. U.S. Pat. & Tm. Off. and in many other countries. Unicode is a registered trademark of Unicode, Inc. All other trademarks are the property of their respective owners. This publication and the information herein are furnished AS IS, are subject to change with- out notice, and should not be construed as a commitment by Adobe Systems Incorporated. Adobe Systems Incorporated assumes no responsibility or liability for any errors or inaccura- cies, makes no warranty of any kind (express, implied, or statutory) with respect to this pub- lication, and expressly disclaims any and all warranties of merchantability, fitness for particular purposes, and noninfringement of third-party rights. 1 2 3 4 5 6 7 8 9-MA-0403020100 First printing, July 2000 iii Contents Preface xv Chapter 1: Introduction 1 1.1 About This Book 1 1.2 Introduction to PDF 1.3 Features 3 1.3 Related Publications 4 1.4 Copyright Permission 5 Chapter 2: Overview 7 2.1 Imaging Model 8 2.2 Other General Properties 12 2.3 Using PDF 17 2.4 PDF and the PostScript Language 19 Chapter 3: Syntax 21 3.1 Lexical Conventions 22 3.2 Objects 25 3.3 Details of Filtered Streams 41 3.4 File Structure 55 3.5 Encryption 64 3.6 Document Structure 71 3.7 Content Streams and Resources 82 3.8 Common Data Structures 86 3.9 Functions 95 3.10 File Specifications 107 Chapter 4: Graphics 119 4.1 Graphics Objects 120 4.2 Coordinate Systems 124 4.3 Graphics State 134 4.4 Path Construction and Painting 147 4.5 Color Spaces 157 4.6 Patterns 200 4.7 External Objects 243 4.8 Images 244 4.9 Form XObjects 263 4.10 PostScript XObjects 267 iv Contents Chapter 5: Fonts 269 5.1 Organization and Use of Fonts 269 5.2 Text State Parameters and Operators 278 5.3 Text Objects 285 5.4 Introduction to Font Data Structures 291 5.5 Simple Fonts 293 5.6 Composite Fonts 310 5.7 Font Descriptors 330 5.8 Embedded Font Programs 339 5.9 ToUnicode CMaps 342 Chapter 6: Rendering 347 6.1 CIE-Based Color to Device Color 348 6.2 Conversions among Device Color Spaces 350 6.3 Transfer Functions 354 6.4 Halftones 356 6.5 Scan Conversion Details 377 Chapter 7: Interactive Features 383 7.1 Viewer Preferences 383 7.2 Document-Level Navigation 384 7.3 Page-Level Navigation 391 7.4 Annotations 398 7.5 Actions 420 7.6 Interactive Forms 434 7.7 Sounds 468 7.8 Movies 470 Chapter 8: Document Interchange 473 8.1 Procedure Sets 473 8.2 Document Information Dictionary 474 8.3 File Identifiers 476 8.4 Application Data 477 8.5 Web Capture 507 8.6 Prepress Support 524 Appendix A: Operator Summary 539 Appendix B: Operators in Type 4 Functions 543 B.1 Arithmetic Operators 543 B.2 Relational, Boolean, and Bitwise Operators 544 B.3 Conditional Operators 544 B.4 Stack Operators 544 v Contents Appendix C: Implementation Limits 545 C.1 General Implementation Limits 546 C.2 Implementation Limits Affecting Web Capture 547 Appendix D: Character Sets and Encodings 549 D.1 Latin Character Set and Encodings 551 D.2 Expert Set and MacExpertEncoding 555 D.3 Symbol Set and Encoding 558 D.4 ZapfDingbats Set and Encoding 561 Appendix E: PDF Name Registry 563 Appendix F: Linearized PDF 565 F.1 Background and Assumptions 567 F.2 Linearized PDF Document Structure 569 F.3 Hint Tables 581 F.4 Access Strategies 591 Appendix G: Example PDF Files 597 G.1 Minimal PDF File 597 G.2 Simple Text String Example 600 G.3 Simple Graphics Example 602 G.4 Page Tree Example 605 G.5 Outline Tree Example 610 G.6 Updating Example 614 Appendix H: Compatibility and Implementation Notes 623 H.1 PDF Version Numbers 624 H.2 Dictionary Keys 625 H.3 Implementation Notes 625 Bibliography 643 Index 649 vii Figures 2.1 Creating PDF files using PDF Writer 18 2.2 Creating PDF files using Acrobat Distiller 19 3.1 PDF components 22 3.2 Initial structure of a PDF file 55 3.3 Structure of an updated PDF file 63 3.4 Structure of a PDF document 72 3.5 Inheritance of attributes 81 3.6 Mapping with the Decode array 101 4.1 Graphics objects 122 4.2 Device space 125 4.3 User space 127 4.4 Relationships among coordinate systems 129 4.5 Effects of coordinate transformations 130 4.6 Effect of transformation order 131 4.7 Miter length 141 4.8 Cubic Bézier curve generated by the c operator 151 4.9 Cubic Bézier curves generated by the v and y operators 151 4.10 Nonzero winding number rule 155 4.11 Even-odd rule 156 4.12 Color specification 158 4.13 Color rendering 159 4.14 Component transformations in a CIE-based ABC color space 166 4.15 Component transformations in a CIE-based A color space 167 4.16 Quadtone image using Indexed DeviceN 193 4.17 Output from Example 4.19 208 4.18 Output from Example 4.20 212 4.19 Radial shading 224 4.20 Starting a new triangle in a free-form Gouraud-shaded triangle mesh 227 4.21 Connecting triangles in a free-form Gouraud-shaded triangle mesh 228 4.22 Varying the value of the edge flag to create different shapes 229 4.23 Lattice-form triangular meshes 230 4.24 Coordinate mapping from a unit square to a four-sided Coons patch 233 4.25 Painted area and boundary of a Coons patch 234 4.26 Color values and edge flags in Coons patch meshes 236 4.27 Edge connections in a Coons patch mesh 237 viii Contents 4.28 Control points in a tensor-product mesh 239 4.29 Typical sampled image 244 4.30 Source image coordinate system 247 4.31 Mapping the source image 248 5.1 Glyphs painted in 50% gray 273 5.2 Glyph outlines treated as a stroked path 274 5.3 Graphics clipped by a glyph path 275 5.4 Glyph metrics 276 5.5 Metrics for horizontal and vertical writing modes 278 5.6 Character spacing in horizontal writing 281 5.7 Word spacing in horizontal writing 281 5.8 Horizontal scaling 282 5.9 Leading 282 5.10 Text rise 285 5.11 Operation of TJ operator in horizontal writing 289 5.12 Output from Example 5.9 304 5.13 Characteristics represented in the Flags entry of a font descriptor 333 6.1 Various halftoning effects 363 6.2 Halftone cell with a nonzero angle 369 6.3 Angled halftone cell divided into two squares 370 6.4 Halftone cell and two squares tiled across device space 370 6.5 Tiling of device space in a type 16 halftone 372 6.6 Flatness tolerance 378 6.7 Rasterization without stroke adjustment 381 7.1 Presentation timing 397 7.2 Open annotation 399 7.3 Coordinate adjustment with the NoRotate flag 404 7.4 Square and circle annotations 413 7.5 QuadPoints specification 414 7.6 FDF file structure 461 8.1 Simple Web Capture file structure 510 8.2 Complex Web Capture file structure 511 8.3 Page boundaries 526 8.4 Trapping example 529 G.1 Visual representation of Example G.3 603 G.2 Page tree for 62-page document 605 G.3 Document outline as displayed in Example G.5 610 G.4 Document outline as displayed in Example G.6 612 ix Tables 3.1 White-space characters 24 3.2 Escape sequences in literal strings 28 3.3 Examples of literal names using the # character
Recommended publications
  • Printer Driver Switching in Windows Operating Systems
    Europaisches Patentamt (19) J European Patent Office Office europeen des brevets (11) EP 0 864 964 A2 (12) EUROPEAN PATENT APPLICATION (43) Date of publication: (51) |nt. CI.6: G06F 3/1 2 16.09.1998 Bulletin 1998/38 (21) Application number: 97116646.7 (22) Date of filing: 24.09.1997 (84) Designated Contracting States: (72) Inventor: Snyders, Lawrence M. AT BE CH DE DK ES Fl FR GB GR IE IT LI LU MC Boise, Idaho 83702 (US) NL PT SE Designated Extension States: (74) Representative: AL LT LV RO SI Schoppe, Fritz, Dipl.-lng. Schoppe & Zimmermann (30) Priority: 13.03.1997 US 816978 Patentanwalte Postfach 71 08 67 (71) Applicant: 81458 Munchen (DE) Hewlett-Packard Company Palo Alto, California 94304 (US) (54) Printer driver switching in windows operating systems (57) An information distributing apparatus for oper- ating within a computer network environment (12). The CSTART OF SYSTEMS > s; information distributing apparatus includes a computer (10) having an operating system and is configured to operate within the computer network environment (12). APPLICATION PRINTS -S2 The apparatus has an application (36) configured for running on the computer (10) via the operating system, S4 the application (36) configured to generate a source job GDI GENERATES DATA IN INTERMEDIATE DRAWING ORIGINAL PRINTER DRIVER (28) in the form of an intermediate file format comprising INSTRUCTIONS (ENHANCED PROVIDE DEVICE META FILE) INFORMATION an output instruction file (42). The apparatus includes a print processor (50) in the form of an intermediate exe- SJ cutable code for operating on the output instruction file The also includes at least ENHANCED META (42).
    [Show full text]
  • CSS Font Stacks by Classification
    CSS font stacks by classification Written by Frode Helland When Johann Gutenberg printed his famous Bible more than 600 years ago, the only typeface available was his own. Since the invention of moveable lead type, throughout most of the 20th century graphic designers and printers have been limited to one – or perhaps only a handful of typefaces – due to costs and availability. Since the birth of desktop publishing and the introduction of the worlds firstWYSIWYG layout program, MacPublisher (1985), the number of typefaces available – literary at our fingertips – has grown exponen- tially. Still, well into the 21st century, web designers find them selves limited to only a handful. Web browsers depend on the users own font files to display text, and since most people don’t have any reason to purchase a typeface, we’re stuck with a selected few. This issue force web designers to rethink their approach: letting go of control, letting the end user resize, restyle, and as the dynamic web evolves, rewrite and perhaps also one day rearrange text and data. As a graphic designer usually working with static printed items, CSS font stacks is very unfamiliar: A list of typefaces were one take over were the previous failed, in- stead of that single specified Stempel Garamond 9/12 pt. that reads so well on matte stock. Am I fighting the evolution? I don’t think so. Some design principles are universal, independent of me- dium. I believe good typography is one of them. The technology that will let us use typefaces online the same way we use them in print is on it’s way, although moving at slow speed.
    [Show full text]
  • Opentype Postscript Fonts with Unusual Units-Per-Em Values
    Luigi Scarso VOORJAAR 2010 73 OpenType PostScript fonts with unusual units-per-em values Abstract Symbola is an example of OpenType font with TrueType OpenType fonts with Postscript outline are usually defined outlines which has been designed to match the style of in a dimensionless workspace of 1000×1000 units per em Computer Modern font. (upm). Adobe Reader exhibits a strange behaviour with pdf documents that embed an OpenType PostScript font with A brief note about bitmap fonts: among others, Adobe unusual upm: this paper describes a solution implemented has published a “Glyph Bitmap Distribution Format by LuaTEX that resolves this problem. (BDF)” [2] and with fontforge it’s easy to convert a bdf font into an opentype one without outlines. A fairly Keywords complete bdf font is http://unifoundry.com/unifont-5.1 LuaTeX, ConTeXt Mark IV, OpenType, FontMatrix. .20080820.bdf.gz: this Vle can be converted to an Open- type format unifontmedium.otf with fontforge and it Introduction can inspected with showttf, a C program from [3]. Here is an example of glyph U+26A5 MALE AND FEMALE Opentype is a font format that encompasses three kinds SIGN: of widely used fonts: 1. outline fonts with cubic Bézier curves, sometimes Glyph 9887 ( uni26A5) starts at 492 length=17 referred to CFF fonts or PostScript fonts; height=12 width=8 sbX=4 sbY=10 advance=16 2. outline fonts with quadratic Bézier curve, sometimes Bit aligned referred to TrueType fonts; .....*** 3. bitmap fonts. ......** .....*.* Nowadays in digital typography an outline font is almost ..***... the only choice and no longer there is a relevant diUer- .*...*.
    [Show full text]
  • Installation of Printer Driver
    Installation of Printer Driver This unit contains an installer (RPM package) to install a Linux printer driver on your computer. This installer will install and upgrade your printer driver. It creates a print queue after the installation. Downloading the Installer There are 2 types of installer (RPM package), described below. These files can be downloaded from our website onto your computer. Installer File name Description Printer driver fxlinuxprint-x.x.x-1.i386.rpm Linux printer driver Print setup utility fxlinuxprintutil-x.x.x-1.i386.rpm Utility to setup printing functions of the Linux printer driver Note: “x.x.x” represents the current version of the installer. Our company website is as follows. Please note that communication costs associated with accessing this site shall be borne by the customer. http://www.fujixerox.co.jp/ Installing/Upgrading Printer Driver Select and run the RPM package from the terminal software command prompt to install or upgrade. Note: Description below is for new installation. If you are upgrading the already installed printer driver, replace the rpm command option “-ivh” with “-Uvh” for Steps 3 and 5. 1. Start terminal and login as Superuser. Note: Terminal start method may vary depending on the distributor. Please refer to the distributor’s manual. 2. If necessary, move to the directory where the RPM package is being stored. Note: If you wish to work in a directory where the RPM package is not stored, designate a path to the RPM package in Steps 3 and 5. 3. Run the following command to install the printer driver (replace “x.x.x” with installer version).
    [Show full text]
  • Windows 8.X and 10 Compatibility with Xerox® Equipment
    ® ® Microsoft Windows 8.x and 10 Compatibility with Xerox® Equipment December 2016 2016 Xerox Corporation. All rights reserved. Xerox®, Xerox and Design®, ColorQube®, DocuColor®, DocuPrint®, DocuSP®, DocuTech®, FreeFlow®, iGen®, iGen3®, iGen4®, Phaser®, WorkCentre® and Xerox Nuvera® are trademarks of or licensed to Xerox Corporation in the United States and/or other countries. Changes are periodically made to this document. Changes, technical inaccuracies and typographic errors will be corrected in subsequent editions. 12/16 SFTWP-03UE Contents Xerox® Product Compatibility with Microsoft® Windows® 8.x and 10 ............................................................................................. 2 Legend ....................................................................................................... 2 Compatibility Matrix .................................................................. 3 What was new in Windows® 8.x? ............................................ 19 New types of print drivers. ........................................................................ 19 How to obtain print drivers. ....................................................................... 20 How to install the new types of print drivers. ............................................. 21 How to use the new types of print drivers. .............................. 29 How to Print from a Windows® 8/10 Desktop App with a V3 or V4 Driver. 29 How to Print from a Windows® 8/10 Modern UI or Universal App with a V4 or V3 Driver. ............................................................................................
    [Show full text]
  • HP Universal Print Driver Solution and Feature Guide
    HP Universal Print Driver Solution and Feature Guide Technology for better business outcomes CONTENTS Getting to know the HP Universal Print Driver .................................................................1 How the HP Universal Print Driver works ........................................................................2 Top features ...............................................................................................................3 Flexible driver installation.........................................................................................4 Broad device support ..............................................................................................9 Full-featured, bidirectional communication ................................................................10 Easy to manage and configure ...............................................................................11 Customizable deployment ......................................................................................15 Effortless color performance....................................................................................16 Environmental responsibility ...................................................................................17 Industry-leading security.........................................................................................18 For more information.................................................................................................19 CONTENTS i ii GETTING TO KNOW THE HP UNIVERSAL PRINT DRIVER Welcome
    [Show full text]
  • Digitale Typografie
    Digitale Typografie Andreas F. Borchert Universität Ulm 7. Juli 2016 Syllabus 2 Inhalte: • Einführung und historischer Überblick • Von der geometrisch definierten Fläche zum Pixelraster mit einer Einführung in PostScript und MetaPost • Digitale Repräsentierungen von Schriften • Einführung in die Typografie • Ausgewählte Algorithmen und Verfahrenstechniken Was ist Typografie? 3 • »Typography exists to honor content.« (Robert Bringhurst) • »Typografie ist keine Kunst. Typografie ist keine Wissenschaft. Typografie ist Handwerk.« (Hans Peter Willberg) • »Typografie, das ist die Inszenierung einer Mitteilung in der Fläche, so die kürzeste Definition, die ich kenne.« (Erik Spiekermann) • »Good typography therefore is a silent art; not its presence but rather its absence is noticeable.« (Mittelbach and Rowley: The pursuit of quality – How can automated typesetting achieve the highest standards of craft typography?) Wozu dient Typografie? 4 Robert Bringhurst fasst es folgendermaßen zusammen: »[...] typography should perform these services for the reader: I invite the reader into the text; I reveal the tenor and the meaning of the text; I clarify the structure and the order of the text; I link the text with other existing elements; I induce a state of energetic repose, which is the ideal condition for reading.« Was ist digitale Typografie? 5 • »Digital typography is the technology of using computers for the design, preparation, and presentation of documents, in which the graphical elements are organized, positioned, and themselves created under digital control.« (Richard Rubinstein) • »[...] the problem of printing beautiful books had changed from a problem of metallurgy to a problem of optics and then to a problem of computer science. [...] The future of typography depends on the people who know the most about creating patterns of 0s and 1s; it depends on mathematicians and computer scientists.« (Donald E.
    [Show full text]
  • KYOCERA KX DRIVER 6.X USER GUIDE
    KYOCERA KX DRIVER 6.x USER GUIDE Version 6.x Generic Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from the use of this product, regardless of the information herein. Regarding Trademarks Microsoft®, Windows®, Windows 8®, Windows 7®, Windows Vista®, Windows XP®, Windows Server®, Word®, and Powerpoint® are registered trademarks of Microsoft Corporation in the U.S. and/or other countries. KPDL is a trademark of Kyocera Corporation. PCL® is a trademark of Hewlett-Packard Company. TrueType® and Mac OS® are registered trademark of Apple Inc. Adobe®, Acrobat®, Adobe Reader®, Photoshop® and PostScript® are trademarks of Adobe Systems, Incorporated. UNIX® is a trademark in the United States and other countries, licensed exclusively through X/Open Company Limited. All other brand and product names herein are registered trademarks or trademarks of their respective companies. Examples of the operations given in this guide support the Windows 7 printing environment. Essentially the same operations are used for Microsoft Windows 8, Windows Vista, Windows XP, Windows Server 2003, Windows Server 2008, and Windows Server 2012 environments. This user guide and its contents were developed for the 6.0 driver. © 2013 KYOCERA Document Solutions Table of Contents Chapter 1 Installation Preparing to Install the Driver .......................................................................................................
    [Show full text]
  • Printer Driver
    2-659-571-11 (1) Printer Driver Installation Guide This guide describes installation and use of the Printer Drivers for Windows XP and Windows 2000. Before Using this Software Before using the printer driver, be sure to read the “ReadMe” file located on the CD-ROM. UP-990AD UP-970AD © 2006 Sony Corporation Windows 2000 Microsoft and Windows are registered trademarks of Microsoft Corporation. Table of Contents Other company names and product names mentioned in Confirming the Operating Environment .............3 this guide are also trademarks and registered Explanations in this Guide ....................................3 trademarks. Installation with Windows XP ..............................4 Before Installing the Printer Driver ....................4 Installing the Printer Driver ................................4 Installation with Windows 2000 ...........................6 Before Installing the Printer Driver ....................6 Installing the Printer Driver ................................7 Removing the Printer Driver ................................9 Configuring the Printer .........................................9 [Layout] Tab .......................................................9 [Density Adjust] Tab .........................................10 [Settings] Tab ....................................................10 [Message] Tab ...................................................11 2 Confirming the Explanations in this Operating Environment Guide To use the printer driver, the computer you are using All the explanations requiring the
    [Show full text]
  • Software Setup Guide SSG-ALL-EX-Z1
    SoftwareSoftware SetupSetup GuideGuide BEFORE INSTALLING THE SOFTWARE SETUP IN A WINDOWS ENVIRONMENT SETUP IN A MACINTOSH ENVIRONMENT TROUBLESHOOTING Thank you for purchasing this product. This manual explains how to install and configure the software that allows the machine to be used as a printer or scanner for a computer. If the software is not installed correctly or you need to remove the software, see "4. TROUBLESHOOTING" (page 38). Please note • The explanations in this manual assume that you have a working knowledge of your Windows or Macintosh computer. • For information on your operating system, please refer to your operating system manual or the online Help function. • The explanations of screens and procedures in this manual are primarily for Windows 7® in Windows® environments, and Mac OS X v10.8 in Macintosh environments. The screens may vary depending on the version of the operating system. • Wherever "MX-xxxx" appears in this manual, please substitute your model name for "xxxx". • In some cases it may not be possible to use the software described in this manual. This depends on the model and the expansion kits that are installed. • This manual contains references to the fax function. However, please note that the fax function is not available in some countries and regions. • This manual contains explanations of the PC-Fax driver and PPD driver. However, please note that the PC-Fax driver and PPD driver are not available and do not appear on the software for installation in some countries and regions. In this case, please install the English version if you want to use these drivers.
    [Show full text]
  • 12Ppm Laser Printer Compuprint S.P.A
    User Guide 12ppm laser printer Compuprint S.p.A. Via Martiri d’Italia, 26 10014 Caluso (TO) Italy ©2001 Compuprint - CPG International. Compuprint, Genicom and Genicom International and the identifying product names and numbers herein are trademarks of Compuprint, Genicom LLC and CPG International. Copyright protection claimed includes all forms and matters of copyrightable materials and information now allowed by statutory or judicial law or hereinafter granted, including without limitation material generated from the software programs which are displayed on the screen such as icons, screen display tools, etc. Product names used in this guide may be trademarks or registered trademarks of their respective companies and are hereby acknowledged. All non- Compuprint - Genicom brands and product names are trademarks or registered trademarks of their respective companies. TABLE OF CONTENTS English TABLE OF CONTENTS Thank you for purchasing the Compuprint - Unpacking 1-2 Genicom 12ppm laser printer. In this guide Printer Components 1-3 you will find information essential for Connections 1-4 setting up and operating your laser printer. Control Panel 1-4 Cartridge Installation 1-5 Loading Paper 1-7 Installing Software 1-9 Print Driver Features 1-12 Multi-Purpose Tray Printing 1-13 Printer Specifications 1-15 Troubleshooting 1-16 Installing Memory 1-20 Getting More Information 1-22 Printer Certifications 1-24 User Guide 1.1 UNPACKING Unpacking AC Power Cord PC Parallel Cable Included in some countries. (meets IEEE 1284 specifications) 12ppm laser printer Note: Carefully remove any shipping tape from the printer. Print Cartridge P RIN CD User Guide Note: The 12ppm laser printer is equipped with Note: Place the printer on a flat, stable surface a parallel port for use with IBM Compatible leaving 6 inches (15cm) around the printer and computers (with a 100mhz Pentium or higher 1 foot (30cm) of space in front.
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]