Adding a TIFF Preview to Encapsulated Postscript Graphics Within the SAS® System Gerhardt Pohl, Eli Lilly and Company, Indianapolis, IN

Total Page:16

File Type:pdf, Size:1020Kb

Adding a TIFF Preview to Encapsulated Postscript Graphics Within the SAS® System Gerhardt Pohl, Eli Lilly and Company, Indianapolis, IN Adding a TIFF Preview to Encapsulated PostScript Graphics within the SAS® System Gerhardt Pohl, Eli Lilly and Company, Indianapolis, IN ABSTRACT Contrast the behavior of a CGM graphic with that of an EPS graphic There is increasing use within the pharmaceutical industry of PDF when inserted into MS Word (Figure 2). The underlying code for the (Portable Document Format) for clinical trial reports and other EPS graphic is embedded in the MS Word document file without regulatory documents. The natural graphics format for figures to be any translation. When the document file is then rendered as a PDF, included in such documents is PostScript. Unfortunately, in work the code is passed through the rendering software without environments where Microsoft Word is the primary authoring tool, translation. The exact graphic code at creation is the same code PostScript graphics can be problematic. PostScript graphics are not visualized by the final audience assuring fidelity. visible in Microsoft Word documents prior to printing or rendering as a PDF. To overcome this difficulty, a visible preview of the graphic can be inserted into the Encapsulated PostScript (EPS) file prior to Figure 2: EPS avoids translation when inserted into MSWord and insertion into MS Word. A technique will be demonstrated using the subsequently rendered into PDF DATA step to bind SAS/GRAPH® EPS and TIFF files into an EPS file with TIFF preview. When inserted into MS Word the TIFF portion of the file is displayed while the EPS portion passes without *.EPS translation or distortion into the final PDF. File System INTRODUCTION Insert Filter EPS provides an important advantage over other graphics transport formats when the final destination is a PDF. Since PostScript is the native graphics format for figures in PDF, graphics in this format do not need to be translated in order to appear within the PDF. To EPS demonstrate this, consider the pathway for a CGM graphic which is Word output from SAS/GRAPH, inserted into MS Word and then rendered Document into a PDF (Figure 1). During this process the graphic is actually PDF Rendering translated twice from CGM to WMF by the insert filter in MSWord and from WMF to PS by the PDF rendering software. The translation to WMF allows the graphic to be visible and edited within Microsoft Office, but multiple translations increase the possibility of PS error. Indeed, features of the original format may not exist in the PDF following formats forcing substitutions of graphics primitives to simulate features. Minimizing the number of translations is an effective strategy to avoid errors giving the author assurance that the graphic seen by the final reader is the same graphic that was seen The challenge in using EPS in an environment where MS Word is at creation. the primary authoring tool is that since the graphic is not translated to WMF, it is not visible onscreen within MS Word. Instead, a placeholder box is visible (Figure 3). This placeholder box has the Figure 1: Translation of a CGM when inserted into MS Word and dimensions of the final graphic assuring proper space is reserved subsequently rendered into PDF and maintaining correct pagination. The box contains useful information explaining what is occurring. In particular, the viewer is reassured that the code for the graphic is, indeed, being held within *.CGM the document file and will be visible when printed to a PostScript File printer. If printed to a non-PostScript printer, however, only the System placeholder box and comments will be visible. Note also that within Print Preview in MS Word that the placeholder box and not the Insert Filter graphic is visible. EPS graphics can be resized within Microsoft Office but cannot be otherwise edited. This provides an added measure of security in the document preparation process. WMF Word Document PDF Rendering PS PDF Figure 3: Placeholder box in MSWord for EPS file without Figure 5: Adding a TIFF preview to an EPS graphic with embedded preview GhostView. Title: PS PROC GPLOT File Creator: System Preview: GhostView This EPS picture was not saved with a preview included in it. Comment: PS TIFF This EPS picture will print to a File PostScript printer, but not to System other types of printers. Insert Filter PS TIFF Word Document PDF Rendering PS PDF GhostView produces a relatively good preview; however, In a production environment where large numbers of figures are generated, the extra steps and burden of maintaining additional software are cumbersome. This paper discusses a method to add a TIFF preview to a SAS/GRAPH EPS using only SAS software. DETAILS OF METHOD At a high level the method consists of generating an EPS file without preview in SAS/GRAPH, generating a matching TIFF graphic also within SAS/GRAPH, then using the DATA step as a file editor to embed the TIFF graphic into the EPS file to create an EPS with PREVIEWS IN EPS TIFF preview. Details of these processes are discussed with The EPS file specification allows for the inclusion of either a TIFF ( example code. or WMF preview of the PS graphic. As shown in schematic form, an EPS file is essentially a PS file with optional binary header material CREATING A TIFF DRIVER and an optional preview (Figure 4). When an EPS with preview is A necessary first step in the process is to create a TIFF driver that inserted into MS Word, MS Word displays the preview rather than can create previews in the sizes to match those possible in the the placeholder box. SAS/GRAPH EPS drivers. Detailed code for this is given as this is a step that may be unfamiliar to most SAS software users. Users unfamiliar with the location or functioning of their SAS software Figure 4: Structure of an encapsulated PostScript file installations are encouraged to seek help from their system administrators. The example code was written for SAS version 6.12 under the Windows 95 operating system. Appropriate changes may Header PS Portion Optional Preview be necessary to adapt to other platforms. libname gdevice0 "c:\sas\graph"; proc gdevice c=gdevice0.devices nofs; Having previews is useful when assembling large documents with copy tiffb multiple figures. Otherwise one cannot be certain which graphic has from=sashelp.devices been inserted in each location. A preview allows one to see the newname=tiffprev; graphics confirming that each is in the proper position. SAS/GRAPH modify tiffprev des="TIFF for EPS Preview" does not currently support creation of a preview for EPS graphics. gsflen=1024 There are a number of third party solutions that one can use to bind xmax=11 in a preview to a SAS/GRAPH EPS. SAS technical support ymax=11 in documents recommend the freeware program GhostView (Figure 5). xpixels=1045 ypixels=1045 lcols=130 lcols=130 prows=130 pcols=130 cback=white colors=(black) ; input; run; if _n_=1 then lfile=length+1; quit; else lfile=lfile+length+1; CREATING AN EPS GRAPHIC FILE call symput("leps",lfile); Most details of the GOPTIONS and PROC GPLOT are omitted for run; space. Note the device and the recommendation to use hardware fonts (hwps001) rather than simulated software fonts (swiss). Use of data _null_; retain lfile; hardware fonts results in scalable, high quality text without jagged infile tiff recfm=f lrecl=1024 nopad; edges and dramatically smaller file sizes. input; if _n_=1 then lfile=1024; filename eps "c:\test.eps"; else lfile=lfile+1024; GOPTIONS gsfname=eps call symput("ltiff",lfile); device=psepsf run; ftext=hwpsl009 ftitle=hwpsl009; ; When writing the final EPS file with preview, the header is written PROC GPLOT DATA=DATA1; first including the file size parameters. Next the original EPS file is PLOT _YVAR*_XVAR = GRPVAR; added; and, finally, the TIFF preview is written. Note that the TITLE1 'This is Title'; comment shows the binary header format for an EPS with preview. run; The technique is the same as demonstrated above for reading and copying external files. The result of this code is an EPS file named test.eps. filename withprev 'c:\withprev.eps'; CREATING A MATCHING TIFF FILE * Start with binary header; The remainder of the code steps are best realized as a macro that is called after the creation of the original EPS graphic. The data _null_; GOPTIONS HSIZE and VSIZE of the original EPS graph can be file withprev recfm=n; captured using system functions. The TIFF version of the graphic is then created using PROC GREPLAY using the SAS catalog entry * Bytes 0-4: Marker for binary header; from the previous EPS graphic. * Bytes 4-7: Byte position in file of PostScript language section; %let * Bytes 8-11: Byte length of PostScript oldhsize=%sysfunc(getoption(hsize,keyword)); language section; %let * Bytes 12-15: Byte position in file for oldvsize=%sysfunc(getoption(vsize,keyword)); start of WMF screen representaion; * Bytes 16-19: Byte length of WMF section; filename tiff 'c:\test.tif'; * Bytes 20-23: Byte position of TIFF goptions device=tiffprev representation; gsfname=tiff * Bytes 24-27: Byte length of TIFF section; gsfmode=replace * Bytes 28-29: Checksum of header &oldhsize (XOR of 0-27) -- Not used; &oldvsize; b0_4='C5D0D3C6'x; * Replay graphic as an output TIFF file; b4_7=put(31,ib4.); greplay nofs; b8_11=put(&leps,ib4.); replay _last_; b12_15=put(0,ib4.); run; b16_19=put(0,ib4.); quit; b20_23=put(31+&leps,ib4.); b24_27=put(&ltiff,ib4.); OVERLAY FOR TIFF b28_29='FFFF'x; The TIFF graph generated from the previous code is a coarse put @1 b0_4 rendition of the original EPS graphic. This may be disturbing to @5 b4_7 viewers of a MS Word document into which it is inserted.
Recommended publications
  • Supported File Types
    MyFax Supported File Formats Document Type Versions Extensions Adobe Portable Document Format (PDF) All Versions PDF Adobe Postscript All Versions PS Adobe Photoshop v. 3.0 and above PSD Amiga Interchange File Format (IFF) Raster Bitmap only IFF CAD Drawing Exchange Format (DXF) All AutoCad compatible versions DXF Comma Separated Values Format All Versions CSV Compuserve Graphics Interchange Format GIF87a, GIF89a GIF Corel Presentations Slide Show v. 96 and above SHW Corel Word Perfect v. 5.x. 6, 7, 8, 9 WPD, WP5, WP6 Encapsulated Postscript All Versions EPS Hypertext Markup Language HTML only with base href tag required HTML, HTM JPEG Joint Photography Experts Group All Versions JPG, JPEG Lotus 1-2-3 v. 2, 3, 4, 5, 96, 97, 9.x 123, WK1, WK3, WK4 Lotus Word Pro v. 96, 97, 9.x LWP Microsoft Excel v. 5, 95, 97, 2000, 2003, 2007 XLS, XLSX Microsoft PowerPoint v. 4 and above PPT, PPTX Microsoft Publisher v. 98, 2000, 2002, 2003, 2007 PUB Microsoft Windows Write All Versions WRI Microsoft Word Win: v. 97, 2000, 2003, 2007 Mac: v. 4, 5.x, 95, 98 DOC, DOCX Microsoft Word Template Win: v. 97, 2000, 2003, 2007 Mac: v. 4, 5.x, 95, 98 DOT, DOTX Microsoft Works Word Processor v. 4.x, 5, 6, 7, 8.x, 9 WPS OpenDocument Drawing All Versions ODG OpenDocument Presentation All Versions ODP OpenDocument Spreadsheet All Versions ODS OpenDocument Text All Versions ODT PC Paintbrush Graphics (PCX) All Versions PCX Plain Text All Versions TXT, DOC, LOG, ERR, C, CPP, H Portable Network Graphics (PNG) All Versions PNG Quattro Pro v.
    [Show full text]
  • XMP SPECIFICATION PART 3 STORAGE in FILES Copyright © 2016 Adobe Systems Incorporated
    XMP SPECIFICATION PART 3 STORAGE IN FILES Copyright © 2016 Adobe Systems Incorporated. All rights reserved. Adobe XMP Specification Part 3: Storage in Files 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 Adobe Systems Incorporated. Adobe, the Adobe logo, Acrobat, Acrobat Distiller, Flash, FrameMaker, InDesign, Illustrator, Photoshop, PostScript, and the XMP logo are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. MS-DOS, Windows, and Windows NT are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries. Apple, Macintosh, Mac OS and QuickTime are trademarks of Apple Computer, Inc., registered in the United States and other countries. UNIX is a trademark in the United States and other countries, licensed exclusively through X/Open Company, Ltd. All other trademarks are the property of their respective owners. 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. Contents 1 Embedding XMP metadata in application files .
    [Show full text]
  • Encapsulated Postscript File Format Specification
    ® Encapsulated PostScript File Format Specification ®® Adobe Developer Support Version 3.0 1 May 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/ PN LPS5002 Copyright 1985–1988, 1990, 1992 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. PostScript, the PostScript logo, Display PostScript, Adobe, the Adobe logo, Adobe Illustrator, Tran- Script, Carta, and Sonata are trademarks of Adobe Systems Incorporated registered in the U.S.A. and other countries. Adobe Garamond and Lithos are trademarks of Adobe Systems Incorporated.
    [Show full text]
  • Encapsulated Postscript Application Guide for Mac And
    Encapsulated PostScript Encapsulated PostScript Application Guide for the Macintosh and PCs Peter Vollenweider Manager User Services Universi1y of Zurich A ·Carl Hanser .Verlag :II Prentice Hall First published in German 1989 by Carl Hanser Verlag under the title EPS-Handbuch: Encapsulated PostScript First published in English 1990 by Prentice Hall International (UK) Ltd 66 Wood Lane End, Hemel Hempstead Hertfordshire HP2 4RG A division of Simon & Schuster International Group ©Carl Hanser Verlag, Munich and Vienna 1989 ©Carl Hanser Verlag and Prentice Hall 1990 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, witliout prior permission, in writing, from the publisher. For permission within the United States of America contact Prentice Hall, Inc., Englewood Cliffs, NJ 07632. The Sonata clef design on the cover shows the mixing of randomly placed Sonata font types, smoothed curves and patterns; courtesy of John F. Sherman, ND Design Program, University of Notre Dame, Indiana 46556, USA. Printed and bound in Great Britain by Dotesios Printers Ltd, Trowbridge, Wiltshire. Library of Congress Cataloging-in-Publication Data Vollenweider, Peter. (Encapsulated PostScript. English) Encapsulated PostScript : application guide for the Macintosh and PC's I Peter Vollenweider. p. em. Includes bibliographical references. ISBN 0-13-275843-1 1. PostScript (Computer program language) I. Title. QA76.73.P67V65 1990 005 .265-dc20 90-35469 CIP British Library Cataloguing-in-Publication Data Vollenweider, Peter Encapsulated PostScript : application guide for the Macintosh and PC's. 1. Microcomputer systems. Software packages I.
    [Show full text]
  • Understanding Image Formats and When to Use Them
    Understanding Image Formats And When to Use Them Are you familiar with the extensions after your images? There are so many image formats that it’s so easy to get confused! File extensions like .jpeg, .bmp, .gif, and more can be seen after an image’s file name. Most of us disregard it, thinking there is no significance regarding these image formats. These are all different and not cross‐ compatible. These image formats have their own pros and cons. They were created for specific, yet different purposes. What’s the difference, and when is each format appropriate to use? Every graphic you see online is an image file. Most everything you see printed on paper, plastic or a t‐shirt came from an image file. These files come in a variety of formats, and each is optimized for a specific use. Using the right type for the right job means your design will come out picture perfect and just how you intended. The wrong format could mean a bad print or a poor web image, a giant download or a missing graphic in an email Most image files fit into one of two general categories—raster files and vector files—and each category has its own specific uses. This breakdown isn’t perfect. For example, certain formats can actually contain elements of both types. But this is a good place to start when thinking about which format to use for your projects. Raster Images Raster images are made up of a set grid of dots called pixels where each pixel is assigned a color.
    [Show full text]
  • Image & File Type Cheat Sheet
    Vecto� Raste� WEB USES SOURCE flies OUTPUT flies for logos, charts, icons, or for most web graphics IMAGE & any hard-edged graphics displayed on the screen FILE TYPE PRINT USES SOURCE files HI-RES flies CHEAT SHEET to be sent to the printer can be printed at 300dpi FILE TYPES .ai .eps .pdf .svg .jpg .gif .png .tif WEB PRINT MORE ABOUT FILE TYPES .ai Adobe Illustrator Default file typeof Illustrator, a popular vector-based program .eps Encapsulated Postscript Vector file which can be opened outside of Illustrator .pdf Portable Document Format Self-contained document which preservesvector images as 72dpl 300 dpl well as fonts or graphics needed to display correctly Images intended for the web Images intended for print only need to have a need to have a resolutlon of resolution of 72 dpi (dots per 300 dpi (dots per inch), as .svg Scaleable Vector Graphics inch), which is the maximum the printing process allows XML-based vector image format supportedby modern web resolution of monitors for much greater detail browsers .jpg Joint Photographic Experts Group WHEN SENDING IMAGES TO A DESIGNER••• Sometimes displayed as .jpeg-this raster image format is best fordisplaying photographic images on web browsers Don't put images in a Word doc It is difficult to extract them and results in lower quality. .gif Graphics Interchange Format Raster image format best forsimple images made up of solid Always send a larger image than needed colors with no gradients Raster images can be sized down without a loss in quality,but when an image is stretched to larger than its original size, a .png Portable Network Graphics significant loss in quality occurs.
    [Show full text]
  • Web Compatible SAS/GRAPH Output the Easy
    Web Compatible SAS/GRAPH® Output the Easy Way Ahsan Ullah, Pinkerton Computer Consultants, Inc., Alexandria, VA ABSTRACT • Proper use of colors is a must to make the image attractive. • (TM) This paper describes some concepts and analyses required If there is an option to print the image, a PostScript to create SAS/GRAPH images for use in WEB pages. It file needs to be tagged along with the image which will deals with an automated SAS/AF® Frame system designed to keep the usual form of the printed output create and print a number of graphs and produce suitable • In order to print a hard copy of the graph from the graph image files for inclusion on WEB pages. Topics internet, a PostScript color or black and white with discussed include drill-down design, programming minimum of 0.5 X 0.5 inch margin should be selected. (TM) techniques for creating GIF files, and the creation of custom Most Hewlett Packard printers satisfy the SAS Device Drivers. requirements. INTRODUCTION A user-friendly SAS/AF Frame system needs to be created to perform the following functions: • Interactive or batch process to create images. SAS software is a major leader in information and • Support the selection of device drivers to print or management systems. It has powerful features that support transport postscript or GIF file. the creation of customized hard copy output that includes • both data and graphic output. Until now, SAS custom graphs Automatically add HTML code to create Web-ready could not take their place in the Web world because of: graph images • Sophistication of SAS custom graphs • True portability across platforms Device Drivers • Interactive way to create and process graphs A GIF device driver is needed for SAS software to create a GIF Image file of the graph.
    [Show full text]
  • Making TIFF Files from Drawing, Word Processing, Powerpoint And
    Making TIFF and EPS files from Drawing, Word Processing, PowerPoint and Graphing Programs In the worlds of electronic publishing and video production programs, the need for TIFF or EPS formatted files is a necessity. Unfortunately, most of the imaging work done in research for presen- tation is done in PowerPoint, and this format simply cannot be used in most situations for these three ends. Files can be generally be saved or exported (by using either Save As or Export under File) into TIFF, PICT or JPEG files from PowerPoint, drawing, word processing and graphing programs—all called vector programs—but the results are often poor in resolution (in Photoshop these are shown as having a resolution of 72dpi when opening the Image Size dialogue box: under Image on the menu select Image Size). Here are four ways to save as TIFF (generally the way in which image files are saved) or EPS (gen- erally the way in which files are saved which contain lines or text): Option 1. Use the Program’s Save As or Export option. If it exists, use the Export or Save As option in your vector program. This only works well when a dialogue box appears so that specific values for height, width and resolution can be typed in (as in the programs Canvas and CorelDraw). Anti-aliasing should be checked. Resolution values of 300 dots per inch or pixels per inch is for images, 600 dpi is for images with text and 1200 dpi is for text, graphs and drawings. If no dialogue box exists to type in these values, go to option 2 - 4.
    [Show full text]
  • Easy Conversion Between Postscript and PDF
    Epspdf: Easy conversion between PostScript and PDF Siep Kroonenberg∗ Rijksuniversiteit Groningen Department of Economics Groningen, the Netherlands siepo at cybercomm dot nl Abstract This article introduces epspdf, a converter between eps, PostScript and pdf, which can be run either via a graphical interface or from the command-line. Introduction When preparing a LATEX document, it is often con- venient to have graphics available both in eps and in pdf format. Epspdf2 improves on previous solutions by having both a CLI (command-line interface) and a GUI, by converting both ways, using pdftops from the xpdf suite,3 and by various new options, which were made possible by round-tripping between Post- Script and pdf. Sample applications Case 1: Converting a PowerPoint slide to pdf and eps A.U. Thor writes a paper in LATEX and creates his illustrations with PowerPoint. He likes to turn these into pdf graphics, so that he can process his paper with pdflatex. From PowerPoint, he `prints' to an eps file (see the appendix). The Windows Print dialog is rather insistent on giving the eps file an extension `.prn'. He loads the graphic in epspdftk (see figure 1), where the .prn file is accurately identified as eps. He checks the `Compute tight boundingbox' option, se- lects pdf output format, and clicks `Convert and Figure 1: Main window of epspdftk (MS Windows) save'. Some annoying black boxes flit across his screen, but soon a message `Conversion completed' appears. He presses the `View' button and Adobe Options menu, and with either option checked, he Reader displays what he hoped to see.
    [Show full text]
  • Adobe Type 1 Font Format Adobe Systems Incorporated
    Type 1 Specifications 6/21/90 final front.legal.doc Adobe Type 1 Font Format Adobe Systems Incorporated Addison-Wesley Publishing Company, Inc. Reading, Massachusetts • Menlo Park, California • New York Don Mills, Ontario • Wokingham, England • Amsterdam Bonn • Sydney • Singapore • Tokyo • Madrid • San Juan Library of Congress Cataloging-in-Publication Data Adobe type 1 font format / Adobe Systems Incorporated. p. cm Includes index ISBN 0-201-57044-0 1. PostScript (Computer program language) 2. Adobe Type 1 font (Computer program) I. Adobe Systems. QA76.73.P67A36 1990 686.2’2544536—dc20 90-42516 Copyright © 1990 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 permission of Adobe Systems Incorporated and Addison-Wesley, Inc. Printed in the United States of America. Published simultaneously in Canada. The information in this book is furnished for informational use only, 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 that may appear in this book. The software described in this book is furnished under license and may only be used or copied in accordance with the terms of such license. Please remember that existing font software programs that you may desire to access as a result of information described in this book may be protected under copyright law. The unauthorized use or modification of any existing font software program could be a violation of the rights of the author.
    [Show full text]
  • EXT EX Product Family Product Family for Occasional Graphics Users and Comparison Comparison Creative Consumers
    TEXT EX Product Family Product Family For occasional graphics users and Comparison Comparison creative consumers For graphics hobbyists and home businesses For occasional For graphics For graphics graphics users and hobbyists and professionals in small Full-featured suite creative consumers home businesses to large businesses for graphics professionals in small to large businesses Main Applications Most Popular CorelDRAW® 2020 Corel PHOTO-PAINT™ 2020 Corel Font Manager™ 2020 PowerTRACE™ (Quick Trace only) (included as part of the CorelDRAW application) CAPTURE™ CorelDRAW.app™ Key Features & Tools (Highlights) Corel AfterShot™ 3 HDR Bevel tool, Shadow tools, Spiral, Smooth and Smear tool, Contour tool Key Features & Tools (Highlights) Clone Tool, Artistic Media Bevel tool, Shadow tools, Spiral, Smooth and Smear tool, Contour tool Key Features & Tools (Highlights) Dimension dockers, Alignment guides Clone Tool, Artistic Media Symmetry drawing mode, Block Shadow tool, Impact tool, Pointillizer, Dimension dockers, Alignment guides PhotoCocktail Barcode Wizard Symmetry drawing mode, Block Professional Print options Duplexing Wizard Shadow tool, Impact tool, Pointillizer, Remove (CMYK features, Composite, Color PhotoCocktail separations, Postscript, Prepress tabs) GPL Ghostscript for enhanced EPS Advanced page layout: left & right master Object styles, Color styles, Color harmonies and PS support pages, custom placeholder text, image rendering above 150dpi Professional Print options (CMYK features, Composite, Color separations, Postscript, Enhanced
    [Show full text]
  • File Types and Their Uses
    FILE TYPES AND THEIR USES When working with a print or electronic PSD is excellent for print but will not work designe r(electronic designers design things to The PSD (Adobe Photoshop) file is for the web. A Vector file can be well be displayed on a monitor, TV, etc), one may a file that can be used for print but described by first describing a bitmap encounter the need to work with the designer cannot be used for the web. Although, file. When one zooms in on a bitmap by providing them with multiple types of files. one can convert Photoshop files into file, one will notice many squares of There are many different types of digital files many different bitmap file types that solid color. Basically, every bitmap file but they fit into two categories, bitmap and can be put on the web. Also, amazingly is composed of tiny squares (pixels) vector. It will benefit those in collaboration if there are paths (2D lines) created that are a solid color. When these tiny with the designer to know the common file within the Photoshop file, one can squares of color are put together and types. Once one understands the differences, even export a vector file. one stands back to see, they make identifying (by simply analyzing the file suffix: up the entire image. A vector file on .png, .jpg, etc) the files a designer may need JPEG the other hand, is not made up of tiny squares of color. When a vector from you becomes easy and time is saved The JPEG (Joint Photographic Experts graphic is zoomed in on, it will never because the designer will not need to explain Group) is a used very often on the lose its quality.
    [Show full text]