Supporting Level 2 Functionality

Size: px
Start display at page:

Download "Supporting Level 2 Functionality"

Transcription

1 Supporting Level 2 Functionality Adobe Developer Support Technical Note # March 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA PN LPS5110

2 Copyright 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, the PostScript logo, Display PostScript, Adobe, and the Adobe logo are trademarks of Adobe Systems Incorporated which may be registered in certain jurisdictions. AppleTalk is a registered trademark of Apple Computer, Inc. Other brand or product names are the trademarks or registered trademarks of their respective holders. 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 Incorporated 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.

3 Contents Supporting Level 2 Functionality 5 1 Introduction 5 2 Deciding Which Features to Support 5 Level 1 Support 6 Level 1/Level 2 PostScript 7 Level 1/Level 2 Binary Support 9 Advanced PostScript Level 2 Support 10 3 Deciding the Type of Code to Output 12 Target Printer Issues 12 Save-to-Disk Issues 13 Spooler Issues 13 Typical Scenarios 13 Appendix: Changes Since Earlier Versions 15 Index 17 iii

4 iv Contents (31 Mar 92)

5 Supporting Level 2 Functionality 1 Introduction With the advent of PostScript Level 2, powerful new printer features have become available for use by applications. This raises an obvious question for an engineer who is writing or upgrading the PostScript printer driver for an application: How can the driver provide language-level compatibility in an environment in which both Level 1 and Level 2 printers co-exist? After all, the strongest feature of the PostScript language is its device independence. As in the past, there should be only one PostScript language driver for all PostScript printers. This paper is a starting point. It examines strategies for providing support for both Level 1 and Level 2 in the same driver. It emphasizes a step-by-step approach starting with a basic driver and adding functionality. We suggest that you add features to the driver only if they are important to the application. New Level 2 language features that can be emulated in Level 1 are examined first and then features specific to Level 2 are discussed. Because printers have differing capabilities, the type of output to generate differs depending on the output scenario. Whether the output is going directly to the target printer, is saved to disk, or is sent to a spooler will affect its format. 2 Deciding Which Features to Support There are many Level 2 features and extensions to Level 1 that can be part of a new or revised driver. It can be difficult to decide which features to support and how to provide backwards compatibility. This section discusses a structured approach for improving an already existing driver and adding new functionality. This also applies to new drivers. It is important to build a driver that generates quality PostScript language code and then improve the functionality in logical steps. 5

6 2.1 Level 1 Support Most of the PostScript printer drivers in existence support the base level of functionality, PostScript Level 1. Drivers undergoing a rewrite or revision to add Level 2 support might need to be re-examined. A solid basic driver is the key to adding functionality properly. This is also true if a driver is being written for the first time. Fonts Fonts and their proper usage are important in the creation of a successful driver. Layout of text and font usage optimization is discussed in PostScript Language Program Design, Chapter 7, The Mechanics of Setting Text, and in Technical Note #5041, Simple Text Setting Calculations for PostScript Language Drivers. An overview of the issues involved in using downloadable fonts with Post- Script interpreters is given in Technical Note #5040, Supporting Downloadable PostScript Fonts. Related issues concerning memory allocation are presented in PostScript Language Program Design, Chapter 13, Memory and File Resource Management. Optimization How you optimize your driver will largely depend on where your driver can stand improvement. Optimization of an existing driver is dealt with in Technical Note #5042, PostScript Printer Driver Optimization Case Study. Other optimizing techniques are discussed in Technical Note #5126, PostScript Language Code Optimization: Rectangles. See Technical Note #5120, Timing Techniques for a discussion on timing the execution speed of the output from your driver. 6 Supporting Level 2 Functionality (31 Mar 92)

7 Printer Specific Features Printer specific features such as using multiple paper trays, stapling, duplex, binding, and so forth, are useful options that should be available to the user of an application. Technical Note #5117, Supporting Device Features, discusses how to determine and activate the features available on the target printer. The PostScript Printer Description Files Specification, Version 4.0 describes PPD files that detail the device specific features available on each printer. In general, PostScript Level 1 language files offer the benefit of being printable on any PostScript device and, if written correctly, can be completely portable. The major disadvantage to using strictly Level 1 code is the inability to use newer PostScript language features that optimize performance for specific types of pages. 2.2 Level 1/Level 2 PostScript After ensuring a robust basic driver, a first step in adding functionality is to consider adding support for features of Level 2 that can also be used under Level 1. Patterns, forms, rectangles, automatic stroke adjustment, calibrated RGB, indexed color spaces (color lookup tables), accurate halftone screens, and resources can all be satisfactorily emulated. The disadvantage to using emulations is that they are rarely as efficient as their Level 2 counterparts. If the target printer is a Level 1 printer, the emulations are included in the PostScript language code at the time it is sent to the printer. If the target printer is a Level 2 printer, only the PostScript language code is sent to the printer. If the language level of the target printer is unknown or the file is being saved to disk, the driver should output configurable procset code. Note Some veneer definitions might need to be included as well. Veneer definitions allow for consistent syntax when using Level 2 features under both Level 1 and Level 2. Configurable procset code defines procedures using the Level 2 features, if available, and installs the Level 1 emulations if they are not. Whether or not a particular procedure refers to the Level 2 operator or its Level 1 emulation should be transparent to the driver; this results in a consistent interface and simpler PostScript drawing code. Appendix D, Compatibility Strategies, in the PostScript Language Reference Manual, Second Edition, outlines how to create an emulation and define configurable code. 2 Deciding Which Features to Support 7

8 The following is a list of emulations written by Adobe Systems Developer Support that can be added easily to a base driver. Refer to the individual technical papers for in-depth information about the emulation and its usage. Patterns Patterns allow the painting of a shape with a replicated pattern cell, much in the same way that a color is used. Both colored and uncolored patterns are available, along with different tiling types and stepping values that can be combined for a variety of effects. More information about the use of patterns under Level 2 can be found in section 4.9, Patterns, of the PostScript Language Reference Manual, Second Edition. A pattern emulation and performance analysis are presented in Technical Note #5112, Emulation of the makepattern and setpattern Operators. Forms Forms are self-contained descriptions of graphical objects that are painted multiple times on each of several pages or several times at different locations on a single page. A good example of a form is a name badge or a 1040 tax form. More information about using forms under Level 2 can be found in section 4.7, Forms, of the PostScript Language Reference Manual, Second Edition. A discussion of when to use forms, a forms emulation, and a performance analysis are presented in Technical Note #5113, Emulation of the execform Operator. Rectangles Rectangles are used frequently in document, and a set of operators has been created to paint rectangles more quickly and conveniently. More information about using rectangles under Level 2 can be found in section 4.6.5, Rectangles, in the PostScript Language Reference Manual, Second Edition, and a sample emulation of rectangle operators can be found in Appendix D, Compatibility Techniques, in the same manual. Automatic Stroke Adjustment Automatic stroke adjustment produces strokes of uniform thickness to compensate for uneven line widths due to rasterization effects. This can be especially useful for applications that produce graphics. More information about activating automatic stroke adjustment under Level 2 can be found in section 6.5.2, Automatic Stroke Adjustment, in the PostScript Language Reference Manual, Second Edition. A setstrokeadjust emulation for Level 1 and a performance analysis can be found in Technical Note #5111, Emulation of the setstrokeadjust Operator. 8 Supporting Level 2 Functionality (31 Mar 92)

9 Choosing to use a Level 1/Level 2 support strategy can result in additional features being available for use on Level 1 printers and faster performance of print jobs on Level 2 printers. 2.3 Level 1/Level 2 Binary Support One of the main performance factors in some printer communications environments is simply transmitting the PostScript language file to the printer. A significant reduction in transmission time can occur if binary data is used when downloading fonts (especially composite fonts) and image data (including images used in forms and patterns). Slower transmission channels like serial channels can obtain good performance gains from a driver that supports binary data. A side benefit to binary data is reduced storage costs for PostScript language files on the host system or spooler. The major disadvantage to representing data as binary is that it is inherently less portable. Using binary data on a transparent channel (for example, AppleTalk ) is relatively simple. Binary support becomes more difficult on channels where certain 8-bit values can interfere with the communications protocol (for example, parallel and serial). One strategy for downloading font and image data involves converting the binary data to hex to avoid conflicts with the communications protocol. This has the disadvantage of expanding the binary data by a factor of two, increasing the file size and transmission time. This strategy works on all PostScript Level 1 and Level 2 devices, but does not make full use of the binary capabilities of some printers. There are a variety of printers (some Level 1 and all Level 2) that have the ability to use the Adobe Binary Communications Protocol. This protocol defines an escape character (ASCII SOH) to quote binary values that would interfere with normal communications. For more information about how to activate and use the binary communications protocol, see Technical Note #5081, Adobe Binary Communications Protocol. Supporting binary data in the transmission of fonts and images is an easy modification to make to a driver and can result in an immediate performance improvement. 2 Deciding Which Features to Support 9

10 2.4 Advanced PostScript Level 2 Support Many of the new features incorporated into Level 2 are extensions created for PostScript Level 1. Your driver may already support some Level 2 features. Extensions to PostScript Level 1 include support for CMYK color, the Display PostScript system, and composite fonts. These extensions are now part of the base functionality for Level 2, that is, they are found in all Level 2 printers. In this section we discuss features of Level 2 that cannot be emulated satisfactorily in Level 1. In these cases, the driver must determine whether to output a Level 1 or a Level 2 data stream at print time, rather than outputting a data stream that is compatible with a self-configuring Level 1/Level 2 emulation as discussed in section 2.2, Level 1/Level 2 PostScript. Features that cannot be emulated satisfactorily include user paths, ASCII base-85 representations of binary data, data compression and other data filters, binary token protocol, CIE color spaces, and device independent color. Because these features cannot be used on Level 1 printers, the driver must take care when generating output: It must either restrict user choices or substitute an equivalent when the target printer is Level 1. For example, CIE color space values can be mapped to RGB device space values before the job is sent to a Level 1 printer and the setrgbcolor operator can be used instead of setcolor. The following include technical papers written by Adobe Systems Developer Support that discuss when and how to use these more advanced features. User Paths User paths are a special way of defining a path so that it can be cached and drawn more quickly. This feature delivers performance improvements of approximately 10% to 250% depending on the printing situation. Information about using user paths under Level 2 can be found in section 4.6, User Paths, of the PostScript Language Reference Manual, Second Edition. An in-depth look at user paths, including binary and encoded user paths, along with a performance analysis, usage hints, and sample code can be found in Technical Note #5114, Advanced Path Construction Using Level 2 Features. 10 Supporting Level 2 Functionality (31 Mar 92)

11 ASCII Base-85 ASCII base-85 is an encoding of binary strings in a base 85 ASCII representation that incurs an expansion penalty of 1.25 as opposed to hex s 2.0. This means that font, image, rectangle, color space, and user path data can be portable across communications channels (among Level 2 printers) and are less bulky than hex. The technical papers dealing with filters and advanced path construction also discuss using ASCII base-85. Filters Filters provide a special operation that applies a transformation to the data from a file or procedure as it passes through the filter. This transformation can be any combination of several image compression schemes, or hexadecimal or ASCII base-85 data representations. Filters can be concatenated, so that a driver can output a compressed data stream that is 7-bit compatible by using both a compression such as LZW (Lempel-Ziv-Welch) and a representation filter such as ASCII base-85. Information about using filters under Level 2 can be found in section 3.13, Filtered Files Details, of the PostScript Language Reference Manual, Second Edition. An in-depth look at filters, including CCITT fax, run length encoding, ASCII 85, hexadecimal, and LZW compression methods, along with a performance analysis, usage hints, and sample code can be found in Technical Note #5115, Supporting Data Compression in PostScript Level 2 and the filter Operator. A discussion of the DCT filter can be found in Technical Note #5116, Supporting the DCT Filters in PostScript Level 2. Binary Token Encoding Binary token encoding (BTE) is method of writing out numeric data and PostScript language operators as binary tokens. This results in a smaller output file size with no change in execution time. For producers of large PostScript language files this might be a good feature to exploit. Information about the use of binary token encoding under Level 2 can be found in section , Binary Tokens, of the PostScript Language Reference Manual, Second Edition. Technical Note #5114, Advanced Path Construction Using Level 2 Features, also discusses BTE and presents sample code for conversion of data and operators to BTE format. 2 Deciding Which Features to Support 11

12 3 Deciding the Type of Code to Output Now that the driver supports a variety of features including Level 1/Level 2 code and some Level 2 specific features, there is the question about the type of code to generate at print time: Level 1, Level 1/Level 2, or strictly Level 2 PostScript language code. Three situations arise when generating the output file: Output is either sent to the target printer, saved to disk, or sent to a spooler. 3.1 Target Printer Issues A driver must determine the characteristics of the target printer. Is it a Level 2 printer? Does it support certain Level 1 extensions? What is the communications channel? What type of features does it support? The answers to these questions determines the type of code sent to the printer. One way to answer these questions is through a PostScript language query sent over a bidirectional communications channel immediately prior to sending the print job. A query is a special type of print job that requests that information about the printer be sent back to the driver. Query strategies and issues are discussed in the PostScript Language Reference Manual, Second Edition, Appendix D, Compatibility Strategies, and in Appendix G.8, Document Structuring Conventions. Another method of determining printer capabilities is to read the PostScript Printer Description (PPD) file for the target printer. This file is installed on the host computer in a special directory for use by the driver. These files can be invaluable when constructing the user interface for the driver. PPD files are specified in the PostScript Printer Description File Specification, Version 4.0. An in-depth look at PPD files and their use can be found in Technical Note #5117, Supporting Device Features. A PPD parser is provided in source code in the PostScript Language Software Development Kit and is described in Technical Note #5127, PPD File Parser: Application Programmer s Interface. Now that the capabilities of the printer are known, the driver must decide how to satisfy the feature requests of the application. If a Level 1 printer is the target printer, emulation code might have to be sent along with the print job. Some features cannot be used at all; appropriate adjustments must be made. For example, user paths are not available on Level 1 printers. The driver must output regular paths instead of user paths. If a Level 2 printer is the target, however, advanced features can be used and emulations are unnecessary. 12 Supporting Level 2 Functionality (31 Mar 92)

13 3.2 Save-to-Disk Issues Saving an output file to disk is often considered a worst case scenario. It is not known what the user will do with the file once it has been generated. It can be sent down to a printer at a later time, it can be archived or sent to a different corporate site, or it can be sent to a service bureau for final printing. Portability is a key issue. We suggest that Level 1/Level 2 configurable code be the default output format in these situations because this retains the greatest PostScript language functionality while still being portable. 3.3 Spooler Issues An intelligent spooler might know the type of destination printer currently available for printing, the capabilities of the ultimate target printer, and be able to respond to queries. It can also act as a virtual printer itself. Target printer issues become important if this type of spooler is detected. On the other hand, the spooler might not be able to answer queries or know where the file will ultimately be printed. In this case, sending output to the spooler should be similar to saving an output file to disk. More information about spoolers can be found in the following documents: Appendix G, Document Structuring Conventions Version 3.0, of the PostScript Language Reference Manual, Second Edition Chapter 13, Writing a Print Spooler, of PostScript Language Program Design 3.4 Typical Scenarios If the driver supports Level 1/Level 2 PostScript only, no user interface issues should exist. If it s possible for your application to determine the language support of the target printer, either the PostScript Level 1 or Level 2 code should be sent to the printer. If the target printer is not known (for example, save-to-disk or dumb spooler), then use self-configuring code. Using configurable procset code will ensure that the user receives the best performance and highest level of functionality, whether the file is ultimately sent to a PostScript Level 1 or a Level 2 printer. If the driver supports binary output (for example, binary data in fonts and images), a dialog with the user of the application may be necessary. When the target printer and the type of communications channel are known, the driver can generate binary data as appropriate. In save-to-disk or dumb spooler situations, the driver may ask the user to choose between binary and 3 Deciding the Type of Code to Output 13

14 ASCII output. The user is then responsible for the format of the generated PostScript file and can still take advantage of the space and time savings that binary data offers. In the case of a driver that supports Level 2-only features such as image compression and device-independent color, the user might be presented with another set of choices. As in the previous scenarios, if the target printer and its capabilities are known, the driver can choose the appropriate type of PostScript language code and features. If the target printer is not known, the driver might present a dialog box to the user describing the various output options available. Figure 1 Sample dialog box File Format Level 1/Level 2 Level 2 ASCII Binary OK If the user definitely wants to use special Level 2 features, then the user can select the Level 2 radio button. This indicates to the driver that PostScript Level 2-only code can be generated without regard for emulation for or conversion to PostScript Level 1. If the user knows that an 8-bit transparent channel is the only type of channel to be used, the user can select the binary radio button. The driver is then free to generate binary PostScript language code. 14 Supporting Level 2 Functionality (31 Mar 92)

15 Appendix: Changes Since Earlier Versions Changes since May 3, 1991 version Expanded the section on Optimization in section 2.1, Level 1 Support. Document was reformatted in the new document layout and minor editorial changes were made. 15

16 16 Appendix: Changes Since Earlier Versions (31 Mar 92)

17 Index A Adobe Binary Communications Protocol 9 ASCII base automatic stroke adjustment 8 B binary data 9 converting to hex 9 reduced storage costs 9 transparent channel 9 binary token encoding 11 BTE. See binary token encoding C configurable procset code 7 D driver 14 supporting binary output 13 supporting PostScript Level 1 and Level 2 13 supporting PostScript Level 2 only 14 E emulations automatic stroke adjustment 8 forms 8 patterns 8 rectangles 8 F filters 11 forms 8 P portability 13 PostScript language file transmitting to printer 9 PostScript Level 1 fonts 6 optimization 6 printer specific features 7 supporting functionality 6 PostScript Level 1 and Level 2 adding functionality 7 binary support 9 emulations, disadvantage 7 PostScript Level 2 advanced support 10 ASCII base binary token encoding 11 driver improving 6 features that cannot be emulated 10 filters 11 patterns 8 supporting functionality 5 14 user paths 10 PostScript Printer Description files 12 PPD. See PostScript Printer Description files Q query 12 17

18 R rectangles 8 S save-to-disk issues 13 setrgbcolor 10 setstrokeadjust 8 spooler issues 13 T target printer issues 12 U user paths 10 V veneer definition 7 18 Index (31 Mar 92)

Level 2 Compatibility: The setscreen and currentscreen Operators

Level 2 Compatibility: The setscreen and currentscreen Operators Level 2 Compatibility: The setscreen and currentscreen Operators Adobe Developer Support Technical Note #5119 31 March 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose,

More information

Using save Outside the Server Loop

Using save Outside the Server Loop Using save Outside the Server Loop Adobe Developer Support Technical Note #5129 14 February 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/

More information

Simple Text Setting Calculations for PostScript Language Drivers

Simple Text Setting Calculations for PostScript Language Drivers Simple Text Setting Calculations for PostScript Language Drivers Adobe Developer Support Technical Note #5041 31 March 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose,

More information

Supporting Data Compression in PostScript Level 2 and the filter Operator

Supporting Data Compression in PostScript Level 2 and the filter Operator Supporting Data Compression in PostScript Level 2 and the filter Operator Adobe Developer Support Technical Note #5115 31 March 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue

More information

Font Switching Optimizations

Font Switching Optimizations Font Switching Optimizations Adobe Developer Support Technical Note #5048 31 March 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/

More information

The StemSnap Hint Operator for Type 1 Font Programs

The StemSnap Hint Operator for Type 1 Font Programs The StemSnap Hint Operator for Type 1 Font Programs Adobe Developer Support Technical Note #5049 31 March 1992 Adobe Systems Incorporated Corporate Headquarters 1585 Charleston Road PO Box 7900 Mountain

More information

CID-Keyed Font Technology Overview

CID-Keyed Font Technology Overview CID-Keyed Font Technology Overview Adobe Developer Support Technical Note #5092 12 September 1994 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/

More information

Emulation of the setstrokeadjust Operator

Emulation of the setstrokeadjust Operator Emulation of the setstrokeadjust Operator Adobe Developer Support Technical Note #5111 31 March 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/

More information

Improving Image Performance by Using Color Lookup Tables

Improving Image Performance by Using Color Lookup Tables Improving Image Performance by Using Color Lookup Tables Adobe Developer Support Technical Note #5121 31 March 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA

More information

Adobe Serial and Parallel Communications Protocols Specification

Adobe Serial and Parallel Communications Protocols Specification Adobe Serial and Parallel Communications Protocols Specification Adobe Developer Support 20 November 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/

More information

Supporting Device Features

Supporting Device Features Supporting Device Features Adobe Developer Support Technical Note #5117 31 March 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/

More information

HP DesignJet 3500CP Printing Guide for Windows

HP DesignJet 3500CP Printing Guide for Windows HP DesignJet 3500CP Printing Guide for Windows Adobe, Adobe Illustrator, Adobe Type Manager, ATM, PageMaker,and PostScript are trademarks of Adobe Systems Incorporated or its subsidiaries and may be registered

More information

Acrobat Widths-Only CIDFont Tutorial ADOBE SYSTEMS INCORPORATED

Acrobat Widths-Only CIDFont Tutorial ADOBE SYSTEMS INCORPORATED bbc Acrobat Widths-Only CIDFont Tutorial Technical Note #5412 ADOBE SYSTEMS INCORPORATED Corporate Headquarters 345 Park Avenue San Jose, CA 95110-2704 (408) 536-6000 http://partners.adobe.com April 12,

More information

Printer Systems-Based Separations

Printer Systems-Based Separations Printer Systems-Based Separations Adobe Developers Association 9 October 1997 Technical Note #5606 LanguageLevel 3 Corporate Headquarters 345 Park Avenue San Jose, CA 95110-2704 (408) 536-6000 Eastern

More information

Emulation of the execform Operator

Emulation of the execform Operator Emulation of the execform Operator Adobe Developer Support Technical Note #5113 31 March 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/

More information

Timing Techniques. Adobe Developer Support. Technical Note # March Adobe Systems Incorporated

Timing Techniques. Adobe Developer Support. Technical Note # March Adobe Systems Incorporated Timing Techniques Adobe Developer Support Technical Note #5120 31 March 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/ PN LPS5120

More information

Photofont Start 2.0. for Macintosh and Windows. User Manual

Photofont Start 2.0. for Macintosh and Windows. User Manual Photofont Start 2.0 for Macintosh and Windows User Manual PhotoFont Start Copyright 1992-2007 by Fontlab, Ltd. All rights reserved. No part of this publication may be reproduced, stored in a retrieval

More information

Recording Output Intentions for Color Critical Workflows ADOBE SYSTEMS INCORPORATED

Recording Output Intentions for Color Critical Workflows ADOBE SYSTEMS INCORPORATED bbc Recording Output Intentions for Color Critical Workflows Technical Note #5413 Version : 1.0 ADOBE SYSTEMS INCORPORATED Corporate Headquarters 345 Park Avenue San Jose, CA 95110-2704 (408) 536-6000

More information

FREEHAND PDF PROCEDURES

FREEHAND PDF PROCEDURES ~ FreeHand PDF Procedures ~ These instructions are to assist you in creating FreeHand MX Postscript files for producing high quality press ready PDF files. These instructions vary from other suppliers

More information

Tips for Working with the New PostScript Printer Driver for Macintosh

Tips for Working with the New 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

More information

HP LF Printing Knowledge Center

HP LF Printing Knowledge Center HP LF Printing Knowledge Center Proof a press with CMYK Application: QuarkXPress 6.5 Printer: HP Designjet 30/130 series Software: HP Software RIP Operating System: Windows 1. First recommendations: See

More information

The Adobe-CNS1-6 Character Collection

The Adobe-CNS1-6 Character Collection Adobe Enterprise & Developer Support Adobe Technical Note # bc The Adobe-CNS- Character Collection Introduction The purpose of this document is to define and describe the Adobe-CNS- character collection,

More information

By default, PS fonts do not include the Euro Currency Symbol. This allows it to be printed even though we are using a PS font.

By default, PS fonts do not include the Euro Currency Symbol. This allows it to be printed even though we are using a PS font. Substitute Fonts. Disabling this will help solve problems of missing characters, or different characters printing. Do Not Use Printer Fonts may cause slower throughput, but in general is safer. By default,

More information

FontLab. TECHNICAL NOTE #002 (Mac) Keyboard shortcuts. Copyright 2001 FontLab Ltd. THE DIGITAL TYPE DESIGN TOOLKIT

FontLab. TECHNICAL NOTE #002 (Mac) Keyboard shortcuts. Copyright 2001 FontLab Ltd. THE DIGITAL TYPE DESIGN TOOLKIT FontLab THE DIGITAL TYPE DESIGN TOOLKIT TECHNICAL NOTE #002 (Mac) Keyboard shortcuts Copyright 2001 FontLab Ltd. Copyright 1992-2001 by FontLab, Ltd. All rights reserved. No part of this publication may

More information

version 2.0 Release Notes English Spire CXP3535/CXP3535e Color Server for Xerox DocuColor 3535 Printer-Copier Service Pack Version 2.

version 2.0 Release Notes English Spire CXP3535/CXP3535e Color Server for Xerox DocuColor 3535 Printer-Copier Service Pack Version 2. Release Notes English Spire CXP3535/CXP3535e Color Server for Xerox DocuColor 3535 Printer-Copier Service Pack Version 2.0 SP1 version 2.0 739-00139A-EN www.creo.com Copyright Copyright 2005 Creo Inc.

More information

PostScript User Guide

PostScript User Guide PostScript User Guide ME3614E4-1 2006 by Fuji Xerox Co., Ltd. All rights reserved. Copyright protection claimed includes all forms and matters of copyrighted material and information now allowed by statutory

More information

Thank you very much for purchasing this product.

Thank you very much for purchasing this product. Quick Start Guide Thank you very much for purchasing this product. To ensure correct and safe usage with a full understanding of this product's performance, please be sure to read through this manual completely

More information

Adobe Acrobat Reader Help

Adobe Acrobat Reader Help Adobe Acrobat Reader Help This help file contains the basic information you need to open, navigate, and print PDF files using Adobe Acrobat Reader. If you need more help, you can download and install the

More information

Microsoft Dynamics GP. Inventory Kardex

Microsoft Dynamics GP. Inventory Kardex Microsoft Dynamics GP Inventory Kardex Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

Printer Drivers Guide

Printer Drivers Guide Printer Drivers Guide For Macintosh Release 6.3 February 1, 2006 Xerox Corporation Global Knowledge and Language Services 800 Phillips Road, Bldg. 0845-17S Webster, New York 14580 USA Copyright 2002-2005

More information

PDF Production with Adobe Acrobat Distiller 4.05

PDF Production with Adobe Acrobat Distiller 4.05 PDF Production with Adobe Acrobat Distiller 4.05 Adobe s Portable Document File (PDF) format allows GB Printing to output your files with great accuracy, if they are built correctly. Our experience has

More information

PostScript: An Overview

PostScript: An Overview University of Waterloo July 11, 2016 1 History and Introduction 2 3 4 Before Adobe History and Introduction In 1976, John Warnock worked on a page description language for handling graphics being printed

More information

PostScript3. Operating Instructions. PostScript 3 - Setting Up for Printing Printer Utility for Mac Appendix

PostScript3. Operating Instructions. PostScript 3 - Setting Up for Printing Printer Utility for Mac Appendix Operating Instructions PostScript3 2 3 PostScript 3 - Setting Up for Printing Printer Utility for Mac Appendix Read this manual carefully before you use this machine and keep it handy for future reference.

More information

Software Installation Guide

Software Installation Guide Software Installation Guide Xanté Corporation 2800 Dauphin St., Suite 100 Mobile, AL 36606-2400 P.O. Box 16526, Mobile, AL 36616-0526 Phone: 800-926-8839, 251-473-6502 Fax: 251-473-6503 Web Site: www.xante.com

More information

RISO Controller PS7R-9000/5000

RISO Controller PS7R-9000/5000 RISO Controller PS7R-9000/5000 for Printer Driver 00E Preface The RISO PS7R Controller Printer Driver is a dedicated printer driver for the RISO PS7R Controller. This manual describes various functions

More information

Microsoft Dynamics GP. Purchase Vouchers

Microsoft Dynamics GP. Purchase Vouchers Microsoft Dynamics GP Purchase Vouchers Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

Adobe. Type Manager 4.1. User Guide

Adobe. Type Manager 4.1. User Guide Adobe Type Manager 4.1 User Guide 1999 Adobe Systems Incorporated. All rights reserved. Adobe Type Manager 4.1 User Guide for Windows This manual, as well as the software described in it, is furnished

More information

Copyright Roland DG Corporation

Copyright Roland DG Corporation Quick Start Guide Thank you very much for purchasing this product. To ensure correct and safe usage with a full understanding of this product's performance, please be sure to read through this manual completely

More information

x10data Smart Client 6.5 for Windows Mobile Installation Guide

x10data Smart Client 6.5 for Windows Mobile Installation Guide x10data Smart Client 6.5 for Windows Mobile Installation Guide Copyright Copyright 2009 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright

More information

Xerox CX Print Server, Powered by Creo Color Server Technology,

Xerox CX Print Server, Powered by Creo Color Server Technology, Release Notes English Xerox CX Print Server, Powered by Creo Color Server Technology, for the Xerox Color 550/560 Printer Version 1.0 739-00607A-EN Rev A Copyright Eastman Kodak Company, 2010. All rights

More information

KIMOTO K I M O S E T T E R R I P. Kimosetter RIP User Guide 1. Revised: February 2015 U SER GUID E (FOR W INDOWS 7 )

KIMOTO K I M O S E T T E R R I P. Kimosetter RIP User Guide 1. Revised: February 2015 U SER GUID E (FOR W INDOWS 7 ) KIMOTO K I M O S E T T E R R I P U SER GUID E (FOR W INDOWS 7 ) Revised: February 2015 Kimosetter RIP User Guide 1 COPYRIGHT AND TRADEMARKS Kimosetter RIP User Guide Copyright Notices for the Software

More information

StorageGRID Webscale NAS Bridge Management API Guide

StorageGRID Webscale NAS Bridge Management API Guide StorageGRID Webscale NAS Bridge 2.0.3 Management API Guide January 2018 215-12414_B0 doccomments@netapp.com Table of Contents 3 Contents Understanding the NAS Bridge management API... 4 RESTful web services

More information

Quick Reference Manual

Quick Reference Manual Quick Reference Manual 100-100555 Trademarks XANTÉ is a registered trademark of XANTÉ CORPORATION. Adobe ; Adobe PageMaker ; Adobe PostScript, the PostScript, and Adobe logos are registered trademarks

More information

Electronic Artwork Information for Authors Glossary and definitions

Electronic Artwork Information for Authors Glossary and definitions Electronic Artwork Information for Authors Glossary and definitions Bitmap An image stored in a pixel-by-pixel fashion. Continuous tone images are stored in this format. Sometimes used to denote an image

More information

Quick Reference Manual

Quick Reference Manual Quick Reference Manual 100-100578 Trademarks XANTÉ is a registered trademark of XANTÉ CORPORATION. Adobe ; Adobe PageMaker ; Adobe PostScript, the PostScript, and Adobe logos are registered trademarks

More information

SW MAPS TEMPLATE BUILDER. User s Manual

SW MAPS TEMPLATE BUILDER. User s Manual SW MAPS TEMPLATE BUILDER User s Manual Copyright (c) 2017 SOFTWEL (P) Ltd All rights reserved. Redistribution and use in binary forms, without modification, are permitted provided that the following conditions

More information

Document Centre 286/236 Series PostScript User Guide

Document Centre 286/236 Series PostScript User Guide Document Centre 286/236 Series PostScript User Guide The AppleTalk protocols and computer programs are licenced from Apple Computer, Inc. AppleTalk, EtherTalk, Apple and Macintosh are trademarks of Apple

More information

Application Notes Adobe PDF Print Engine (APPE)

Application Notes Adobe PDF Print Engine (APPE) Application Notes Adobe PDF Print Engine (APPE) Adobe PDF Print Engine (APPE) ErgoSoft AG Moosgrabenstr. CH-8595 Altnau, Switzerland 0 ErgoSoft AG, All rights reserved. The information contained in this

More information

Storage Device Manager User s Guide

Storage Device Manager User s Guide 59384701_cvr.jpg Copyright Information Copyright 2006 by Oki Data. All Rights Reserved Document Information P/N 59384701, Revision 1.1 February, 2006 Disclaimer Every effort has been made to ensure that

More information

Printer Drivers Guide

Printer Drivers Guide Printer Drivers Guide For Macintosh Release 6.0 January 14, 2005 Xerox Corporation Global Knowledge and Language Services 800 Phillips Road, Bldg. 0845-17S Webster, New York 14580 USA Copyright 2002-2005

More information

Legal Notes. Regarding Trademarks. Models supported by the KX printer driver. Copyright 2009 KYOCERA MITA Corporation All rights reserved.

Legal Notes. Regarding Trademarks. Models supported by the KX printer driver. Copyright 2009 KYOCERA MITA Corporation All rights reserved. Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change for improvement without notice. We cannot be held liable for any problems

More information

GIrtlProof Reference Manual Windows NT 4.0 / Win 2k / Win XP

GIrtlProof Reference Manual Windows NT 4.0 / Win 2k / Win XP GIrtlProof Reference Manual Windows NT 4.0 / Win 2k / Win XP Version 3.27 RIP Version 6.0 Copyright by Xitron, Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval

More information

PDF and Accessibility

PDF and Accessibility PDF and Accessibility Mark Gavin Appligent, Inc. January 11, 2005 Page 1 of 33 Agenda 1. What is PDF? a. What is it not? b. What are its Limitations? 2. Basic Drawing in PDF. 3. PDF Reference Page 2 of

More information

PopInGraphics.com. 285 Cowbridge Road West, Cardiff, CF5 5TD

PopInGraphics.com. 285 Cowbridge Road West, Cardiff, CF5 5TD These artwork guidelines are published to allow our clients to supply us with artwork that will be reproduced to the highest standards and to minimise problems encountered during conversion / production.

More information

Aras Innovator 11. Backup and Recovery Procedures

Aras Innovator 11. Backup and Recovery Procedures Document #: 11.0.02015040601 Last Modified: 1/4/2018 Copyright Information Copyright 2018 Aras Corporation. All Rights Reserved. Aras Corporation 300 Brickstone Square Suite 700 Andover, MA 01810 Phone:

More information

IC-309 Print Controller, Powered by Creo Server Technology, for the Konica Minolta bizhub PRESS C1070/C1070P/C1060

IC-309 Print Controller, Powered by Creo Server Technology, for the Konica Minolta bizhub PRESS C1070/C1070P/C1060 Release Notes English IC-309 Print Controller, Powered by Creo Server Technology, for the Konica Minolta bizhub PRESS C1070/C1070P/C1060 Version 1.0 653-01929A-EN Rev A Copyright Trademarks Eastman Kodak,

More information

DIGITAL COLOR PRESS DIGITAL ENVELOPE PRESS DIGITAL PRODUCTION PRESS. Utilities Guide

DIGITAL COLOR PRESS DIGITAL ENVELOPE PRESS DIGITAL PRODUCTION PRESS. Utilities Guide DIGITAL COLOR PRESS DIGITAL ENVELOPE PRESS DIGITAL PRODUCTION PRESS Utilities Guide Xanté Corporation 2800 Dauphin St., Suite 100 Mobile, AL 36606-2400 P.O. Box 16526, Mobile, AL 36616-0526 Phone: 251-473-6502

More information

Xerox CentreWare Printer Drivers Guide for Macintosh

Xerox CentreWare Printer Drivers Guide for Macintosh Xerox CentreWare Printer Drivers Guide for Macintosh 2010 Xerox Corporation. All rights reserved. Xerox and the sphere of connectivity design, CentreWare, WorkCentre, and ColorQube are trademarks of Xerox

More information

Using the printer with Windows 95

Using the printer with Windows 95 Using the printer with Windows 95 For better performance and added features when printing from Windows 95, it is recommended that you use the Windows 95 printer driver and not the Windows 3.1 printer driver.

More information

Xerox FreeFlow Print Server Clear Dry Ink User Guide Bring out the shine!

Xerox FreeFlow Print Server Clear Dry Ink User Guide Bring out the shine! Helpful Tips when Designing with Clear Dry Ink Xerox Color 800/1000 Presses FreeFlow Print Server Clear Dry Ink User Guide Dry Ink in itself adds a certain amount of sheen to the page. To maximize the

More information

Printing System Driver User Guide

Printing System Driver User Guide Printing System Driver User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change for improvement without notice. We

More information

Microsoft Dynamics GP. Extender User s Guide

Microsoft Dynamics GP. Extender User s Guide Microsoft Dynamics GP Extender User s Guide Copyright Copyright 2009 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without

More information

Printer Drivers Guide

Printer Drivers Guide Printer Drivers Guide For Macintosh Release 7.0 Xerox Corporation Global Knowledge and Language Services 800 Phillips Road, Bldg. 0845-17S Webster, New York 14580 USA Copyright 2002-2007 by Xerox Corporation.

More information

Conversion SDK v11 32-bit and 64-bit

Conversion SDK v11 32-bit and 64-bit Conversion SDK v11 32-bit and 64-bit API Reference PDF SDK for Developers Copyright 1995-2016 Visual Integrity LLC/Square One bv. All rights reserved. NOTICE: All information contained herein is the property

More information

Cisco TEO Adapter Guide for Microsoft Windows

Cisco TEO Adapter Guide for Microsoft Windows Cisco TEO Adapter Guide for Microsoft Windows Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800

More information

Release Notes Fiery X3eTY 35C-KM version 2.01 and Fiery X3eTY 30C-KM version 1.01

Release Notes Fiery X3eTY 35C-KM version 2.01 and Fiery X3eTY 30C-KM version 1.01 Release Notes Fiery X3eTY 35C-KM version 2.01 and Fiery X3eTY 30C-KM version 1.01 This document contains information about the Fiery X3eTY 35C-KM version 2.01 and the Fiery X3eTY 30C-KM version 1.01. Before

More information

color bit depth dithered

color bit depth dithered EPS The EPS (Encapsulated PostScript) format is widely accepted by the graphic arts industry for saving images that will be placed into programs such as Adobe Illustrator and QuarkXPress. It is used on

More information

Océ User manual. Printer drivers. Printer driver installation

Océ User manual. Printer drivers. Printer driver installation Océ User manual Printer drivers Printer driver installation Océ-Technologies B.V. Copyright 2005, Océ-Technologies B.V. Venlo, The Netherlands. All rights reserved. No part of this work may be reproduced,

More information

Document Centre C450/C360/C250 PostScript User Guide

Document Centre C450/C360/C250 PostScript User Guide Document Centre C450/C360/C250 PostScript User Guide The AppleTalk protocols and computer programs are licenced from Apple Computer, Inc. AppleTalk, EtherTalk, Apple and Macintosh are trademarks of Apple

More information

Format Type Support Thru. vector (with embedded bitmaps)

Format Type Support Thru. vector (with embedded bitmaps) 1. Overview of Graphics Support The table below summarizes the theoretical support for graphical formats within FOP. In other words, within the constraints of the limitations listed here, these formats

More information

Setting up the DR Series System on Acronis Backup & Recovery v11.5. Technical White Paper

Setting up the DR Series System on Acronis Backup & Recovery v11.5. Technical White Paper Setting up the DR Series System on Acronis Backup & Recovery v11.5 Technical White Paper Quest Engineering November 2017 2017 Quest Software Inc. ALL RIGHTS RESERVED. THIS WHITE PAPER IS FOR INFORMATIONAL

More information

Adobe Acrobat Weblink Plug-in

Adobe Acrobat Weblink Plug-in Adobe Acrobat Weblink Plug-in This online guide contains all the information you need to use the Adobe Acrobat Weblink plug-in with Acrobat Reader and Acrobat Exchange. Click one of the following topics

More information

AR-C262M AR-BC320. OPERATION MANUAL (for printer) DIGITAL FULL COLOUR MULTIFUNCTIONAL SYSTEM MODEL

AR-C262M AR-BC320. OPERATION MANUAL (for printer) DIGITAL FULL COLOUR MULTIFUNCTIONAL SYSTEM MODEL MODEL AR-C262M AR-BC320 DIGITAL FULL COLOUR MULTIFUNCTIONAL SYSTEM OPERATION MANUAL (for printer) Be sure to become thoroughly familiar with this manual to gain the maximum benefit from the product. Before

More information

Ad Creation Guide. Table of Contents

Ad Creation Guide. Table of Contents Ad Creation Guide Table of Contents BEST PRACTICES 2 INDESIGN USERS 4 QUARKXPRESS 4, 5, AND 6 USERS 5 QUARKXPRESS 7, 8, AND 9 USERS 7 DISTILLING 9 INDESIGN PRESET DETAILS 10 QUARKXPRESS PRINT STYLE DETAILS

More information

Programs We Support. We accept files created in these major design and layout programs. Please contact us if you do not see your program listed below.

Programs We Support. We accept files created in these major design and layout programs. Please contact us if you do not see your program listed below. Prepress Guidelines HAMILTON GRAPHICS ~ PREPRESS DEPARTMENT Phone: (513) 737-1413 Fax: (513)-737-7483 E-mail: bberne@hamiltongp.com or ddodson@hamiltongp.com Our Prepress Department considers customers

More information

VTR-S1000. Quick-Start Guide. - Decoder Kit. Evaluation and Product Development Platform. Revision SOC Technologies Inc.

VTR-S1000. Quick-Start Guide. - Decoder Kit. Evaluation and Product Development Platform. Revision SOC Technologies Inc. VTR-S1000 Evaluation and Product Development Platform Quick-Start Guide - Decoder Kit Revision 1.0 2017.03.29 2017 SOC Technologies Inc. SOC is disclosing this user manual (the "Documentation") to you

More information

HP Velocity User Guide for Thin Clients

HP Velocity User Guide for Thin Clients HP Velocity User Guide for Thin Clients Copyright 2012 Hewlett-Packard Development Company, L.P. Microsoft and Windows are U.S. registered trademarks of Microsoft Corporation. The information contained

More information

Using the printer with Windows 3.1

Using the printer with Windows 3.1 Using the printer with Windows 3.1 The following procedure automatically installs the Adobe PS3 printer driver and PostScript printer description files (PPDs) required by some applications. The Adobe PS3

More information

PostScript User Guide

PostScript User Guide CopyCentre WorkCentre WorkCentre Pro PostScript User Guide 604P18089 Prepared by: The Document Company Xerox GKLS European Operations Bessemer Road Welwyn Garden City Hertfordshire AL7 1HE ENGLAND 2005

More information

Wwise Installation and Migration Guide

Wwise Installation and Migration Guide Wwise 2015.1.9 Installation and Migration Guide Wwise 2015.1.9 Wwise 2015.1.9: Installation and Migration Guide Wwise 2015.1.9 Revision 1910 Copyright 2016 Audiokinetic Inc. All rights reserved. Patents

More information

MC17 STEP User Guide

MC17 STEP User Guide MC17 STEP User Guide MC17 STEP User Guide 72E-103347-01 Rev. A August 2007 ii STEP User Guide 2007 by Motorola, Inc. All rights reserved. No part of this publication may be reproduced or used in any form,

More information

Xanté is a registered trademark of Xanté Corporation.

Xanté is a registered trademark of Xanté Corporation. Xanté is a registered trademark of Xanté Corporation. Adobe ; Adobe PageMaker ; Adobe PostScript, the PostScript, and Adobe logos are registered trademarks of Adobe Systems Incorporated. Adobe Acrobat

More information

III-6Exporting Graphics (Windows)

III-6Exporting Graphics (Windows) Chapter III-6 III-6Exporting Graphics (Windows) Overview... 96 Metafile Formats... 96 BMP Format... 97 PDF Format... 97 Blurry Images in PDF... 97 Encapsulated PostScript (EPS) Format... 97 SVG Format...

More information

PrimoPDF Enterprise User Guide, Version 5.0

PrimoPDF Enterprise User Guide, Version 5.0 Table of Contents Installation... 3 Reference Links... 3 Uninstallation... 4 Creating PDF Documents... 4 PrimoPDF Document Settings... 5 PDF Creation Profiles... 5 Document Properties... 6 PDF Security...

More information

Fiery Driver for Windows

Fiery Driver for Windows 2017 Electronics For Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 27 April 2017 Contents 3 Contents...5 Fiery Driver Updater...5 Create custom Fiery

More information

UniPrint User s Guide

UniPrint User s Guide UniPrint User s Guide UniPrint Client Version 4.0 Released: June 2009 Revised: 8 June 2009 11:55 am ii UniPrint Client Version 4.0 Copyright Notice UniPrint, a division of GFI Business Solutions Inc. and

More information

Creating PDF Files: QuarkXPress 7 thru 10 Mac

Creating PDF Files: QuarkXPress 7 thru 10 Mac 1. PPD (PostScript Printer Description) Instructions for obtaining and setting up the Prinergy Refiner PPD are included in the file named PageFileSpecs.pdf. This file is available for download through

More information

AR-PK6. SOFTWARE SETUP GUIDE (for printer)

AR-PK6. SOFTWARE SETUP GUIDE (for printer) SOFTWARE SETUP GUIDE (for printer) MODEL AR-PK6 PS EXPANSION KIT INTRODUCTION REQUIREMENTS FOR WINDOWS REQUIREMENTS FOR MACINTOSH SECTIONS OF THE OPERATION MANUALS THAT ARE RELATED TO THE PS EXPANSION

More information

EMC ApplicationXtender Reports Management 6.0

EMC ApplicationXtender Reports Management 6.0 EMC ApplicationXtender Reports Management 6.0 Administrator s Guide 300-008-283 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 1994-2009 EMC

More information

RFID Tag Command Generator

RFID Tag Command Generator RFID Tag Command Generator Version 1.0 User s Guide December 2017 www.lexmark.com 2 Contents Overview... 3 Deployment readiness checklist... 4 Running the utility...5 Using the utility...6 Generating tag

More information

Spectrum. Spectrum-Specific Setup User Guide for Minisoft eformz Support. November 2015/1.0

Spectrum. Spectrum-Specific Setup User Guide for Minisoft eformz Support. November 2015/1.0 Spectrum-Specific Setup User Guide for Minisoft eformz Support 2015-2016, Inc. or its affiliates. All rights reserved. This work is confidential and its use is strictly limited. Use is permitted only in

More information

Océ Engineering Exec. Advanced Import and Index

Océ Engineering Exec. Advanced Import and Index Océ Engineering Exec Advanced Import and Index Océ-Technologies B.V. Copyright 2004, Océ-Technologies B.V. Venlo, The Netherlands All rights reserved. No part of this work may be reproduced, copied, adapted,

More information

Printing to Splash v4.0 From Windows NT

Printing to Splash v4.0 From Windows NT Printing to Splash v4.0 From Windows NT January 18, 1999 Splash Technology, Inc. Sunnyvale, California USA Trademarks and Copyright Splash and the Splash logo are trademarks of Splash Technology, Inc.

More information

753 Broad Street Phone: Suite 200 Fax: Augusta, GA Copyrights

753 Broad Street Phone: Suite 200 Fax: Augusta, GA Copyrights Ipswitch, Inc. Web: www.imailserver.com 753 Broad Street Phone: 706-312-3535 Suite 200 Fax: 706-868-8655 Augusta, GA 30901-5518 Copyrights 1995-2011 Ipswitch, Inc. All rights reserved. IMail Collaboration

More information

Quest Enterprise Reporter 2.0 Report Manager USER GUIDE

Quest Enterprise Reporter 2.0 Report Manager USER GUIDE Quest Enterprise Reporter 2.0 Report Manager USER GUIDE 2014 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

PostScript Language File Transmission (PSFT) Specification. Adobe Developer Support. 02 April Adobe Systems Incorporated

PostScript Language File Transmission (PSFT) Specification. Adobe Developer Support. 02 April Adobe Systems Incorporated postc PostScript Language File Transmission (PSFT) Specification Adobe Developer Support Version 1.0 02 April 1993 Adobe Systems Incorporated Corporate Headquarters 1585 Charleston Road PO Box 7900 Mountain

More information

Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007

Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007 Cisco TEO Adapter Guide for Microsoft System Center Operations Manager 2007 Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

UniPrint User s Guide

UniPrint User s Guide UniPrint User s Guide UniPrint Client 5 Released: December 2011 Revised: 1 December 2011 6:03 pm ii UniPrint Client 5 Copyright Notice UniPrint, a division of GFI Solutions Inc. and its affiliates, makes

More information

User and training guides and related documentation from Parametric Technology Corporation and its subsidiary companies (collectively "PTC") are

User and training guides and related documentation from Parametric Technology Corporation and its subsidiary companies (collectively PTC) are Arbortext IsoView Installation Guide Arbortext IsoView 7.3 May 2012 Copyright 2012 Parametric Technology Corporation and/or Its Subsidiary Companies. All Rights Reserved. User and training guides and related

More information

x10data Smart Client 7.0 for Windows Mobile Installation Guide

x10data Smart Client 7.0 for Windows Mobile Installation Guide x10data Smart Client 7.0 for Windows Mobile Installation Guide Copyright Copyright 2009 Automated Data Capture (ADC) Technologies, Incorporated. All rights reserved. Complying with all applicable copyright

More information