DLI Implementation and Reference Guide

Total Page:16

File Type:pdf, Size:1020Kb

DLI Implementation and Reference Guide Implementation and Reference Guide Datalogics Interface Datalogics® Datalogics DATALOGICS INTERFACE Implementation and Reference Guide This guide is part of the Adobe® PDF Library v7.0Plus suite; 08/17/06. Copyright 1999-2006 Datalogics Incorporated. All Rights Reserved. Use of Datalogics software is subject to the applicable license agreement. DL Interface is a trademark of Datalogics Incorporated. Other products mentioned herein as Datalogics prod- ucts are also trademarks or registered trademarks of Datalogics, Incorporated. Adobe, Adobe PDF Library, Portable Document Format (PDF), PostScript, Acrobat, Distiller, Exchange and Reader are trademarks of Adobe Systems Incorporated. HP and HP-UX are registered trademarks of Hewlett Packard Corporation. IBM, AIX, AS/400, OS/400, MVS, and OS/390 are registered trademarks of International Business Machines. Java, J2EE, J2SE, J2ME, all Java-based marks, Sun and Solaris are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. Linux is a registered trademark of Linus Torvalds. Microsoft, Windows and Windows NT are trademarks or registered trademarks of Microsoft Corporation. SAS/C is a registered trademark of SAS Institute Inc. UNIX is a registered trademark of The Open Group. VeriSign® is a registered trademark of VeriSign, Inc. in the United States and/or other countries. All other trademarks and registered trademarks are the property of their respective owners. For additional information, contact: Datalogics, Incorporated 101 North Wacker Drive, Suite 1800 Chicago, Illinois 60606-7301 Phone: 312-853-8200 Fax: 312-853-8282 www.datalogics.com [email protected] Table of Contents 1 Getting Started 1.1 An Introduction to DLI 1.2 How to Create a PDF Document with DLI 1.2 How to Use this Book 1.4 What’s New in This Release 1.9 What’s New in Previous Releases 1.9 2 Initializing and Terminating the Library 2.1 Overview 2.2 Adobe PDF Library Data Structure 2.2 Adobe PDF Library Version Control 2.5 Files In Memory Activation 2.7 Initializing and Terminating via DLI 2.7 Writing PDF Output to Memory 2.13 API Comparison 2.16 3 Beginning and Ending a Document 3.1 Overview 3.2 4 Fonts 4.1 PDF Font Overview 4.2 Structure of a DLI Font 4.3 Font Creation Calls 4.5 Predefined Font Encodings 4.9 Unicode Text Support 4.10 Code Page Support 4.10 Performance Considerations 4.11 Accessing Fonts 4.11 5 Multibyte Text Work 5.1 Introduction 5.2 Loading and Creating Fonts 5.3 Creating DLPDFTEXT Areas 5.4 Working With DLPDFTEXT Areas 5.6 Performance Considerations 5.9 6 Working with Pages 6.1 Introduction to Page Interface 6.2 Page Interface Calls 6.2 7 Containers within Pages 7.1 What are Containers? 7.2 TOC.ii DLI Implementation and Reference Guide 8 Working with Content 8.1 Overview of Content Interface 8.2 Content Interface Calls 8.3 9 Working with Forms 9.1 Overview of Forms 9.2 Form Calls 9.2 10 Displaying Line Drawings 10.1 Overview 10.2 Approaches to Line Drawing 10.2 Graphic State and Line Drawing 10.14 11 Image Display 11.1 Overview 11.2 Graphic Image Structures 11.2 Graphic Image Forms 11.3 Image Creation Methods 11.5 Creating Transparent Graphics 11.11 12 Color and its Use 12.1 Library Color Descriptions 12.2 Colors in Images 12.2 Creating and Destroying Color Spaces 12.3 Values for Color Channels 12.5 Basic Color Spaces 12.5 Advanced Color Spaces 12.8 Building Patterned Color Spaces 12.10 Conversion between Models 12.12 13 Annotations and Links 13.1 Overview 13.2 Annotation Components 13.2 Modifying the Link Cos Object 13.8 14 Bookmark Creation 14.1 Overview 14.2 15 Digital Signatures 15.1 Overview 15.2 Public and Private Keys 15.2 Digital Signature Calls 15.3 Table of Contents TOC.iii 16 Error Testing and Recovery 16.1 Overview 16.2 OS/390 Platform Concerns 16.3 17 Samples and Links 17.1 Running DLI Sample Applications 17.2 A DLI Reference Guide A.1 TOC.iv DLI Implementation and Reference Guide 1 Getting Started This chapter introduces the Datalogics Interface. Experienced users may want to skip directly to the section “What’s New in This Release” on page 1.9 for information on the latest enhancements and additions. 1.1 1.2 DLI Implementation and Reference Guide An Introduction to DLI The Datalogics Interface (DLI) facilitates the rapid creation of PDF documents and improves performance, throughput and graphics handling. It does this by bypassing many of the functions of the PDF Edit layer and eliminating redundant calls to the COS layer used in the Adobe® PDF Library. For information on the various layers of Adobe PDF Library please see the Acrobat Core API Overview. How to Create a PDF Document with DLI The DLI package exists at the output end of the page creation process. As such, most of the intricacies of line breaking, page breaking and general composition are outside of its scope. The process of writing pages is where this package fits into an application. An overview of this process follows: 1 Initialize DLI. (start of all processing) 2 Define the document. 3 Define fonts: i.e. Identify and describe each font to be used in the job to DLI. These can be done as encountered, if so desired. 4 Define forms: i.e. Identify and describe each form to be used in the job to DLI. These can be done as encountered, if so desired. 5 Define graphics: i.e. Identify and define each graphic to be used multiple times to DLI. These can be done as encountered, if so desired. 6 For each page: • Create a dlpdfpage object. • Create a dlpdfcontent object. 7 Generate the content of a single page: • For each graphic reference on the page, create the graphic in content. • For each text line on the page, create the text in content. 8 End the content and inform DLI that the content is complete. 9 End the page and inform DLI that the page is complete. 10 End the document. 11 End the job. Error handling during application execution is handled through the raising and handling of exceptions, as defined by the Adobe PDF Library. These are similar to operation exceptions in C++. For details on handling exceptions, please see the chapter “Error Testing and Recovery” on page 16.1. Getting Started 1.3 What You Should Know This document is intended for programmers who are familiar with text composition and the creation of output drivers, or by application designers who are constructing an application based on the DLI package. You should have access to the Adobe PDF Library Applications Programming Interface (API) manual and the Adobe PDF Specifications manual for your system. For Adobe PDF Library v6.x releases, Adobe PDF Specification 1.5 is appropriate. For Adobe PDF Library v7.x releases, Adobe PDF Specification 1.6 is appropriate. NOTE: Some structures permitted in Adobe PDF Specification 1.6 may not be permitted in Adobe PDF Specification 1.5, and some structures defined in Adobe PDF Specification 1.5 are not available in Adobe PDF Specification 1.4. The explanations, assumptions and samples provided in this guide refer to Adobe PDF Library v7.0.5Plus and DLI v7.0 or higher. DLI Initialization Required Starting with DLI v2.1, the initialization process was simplified to enable initialization of the Adobe PDF Library automatically when DLI itself was initialized. Though it may be functionally possible to bypass the initialization of DLI for versions 2.1 and higher, an application should not do so. Using the DLI initialization and termination routines not only simplifies application programming but also allows the use of the Datalogics Files In Memory (FIM) System, and the enabling of certain optimizations in jobs which span multiple documents. NOTE: The Adobe PDF Library and DLI are not intended to be initialized more than once within a single instance of an application. Doing so can produce undesirable results. Versions of Adobe PDF Library prior to v6.1 are not thread-safe. gcc Compilation Version Adobe compiles their PDF Library components with gcc 3.2 on the Solaris® and Linux® operating systems, and with Visual Age (xlC) 6.0 on the AIX® system. Datalogics does not recompile Adobe components on any other compiler on these operating systems. This information is subject to change at any time, so for the latest details on supported operating-system compilers and versions, please see the readme.txt file of last-minute updates accompanying your software release files, or the Datalogics website System Requirements page at http://www.datalogics.com/pdflibrary- requirements.asp. 1.4 DLI Implementation and Reference Guide Unix Compiler Run-Time Libraries For clients who are using native (i.e. platform-resident) UNIX® compilers, the run-time libraries for each of these operating systems are available from the Free Software Foundation. Any clients wishing to integrate the Adobe PDF Library and DLI components with their natively-compiled applications can retrieve these run-time libraries free of charge from the Free Software Foundation at http:// www.gnu.org/software/gcc/. How to Use this Book This book has been created to guide you through the process of creating PDF documents with DLI. It consists of two main sections: • An Implementation section • A Reference Guide appendix The Implementation section begins with Chapter 1: Getting Started. It follows the steps needed to create PDF and introduces DLI in relation to the Adobe PDF Library, explains the methods used in DLI, how they fit together, and provides various samples.
Recommended publications
  • Adobe PDF Library Developer Overview 1
    Developer Overview Adobe PDF Library v7.0 Datalogics® Datalogics ADOBE PDF LIBRARY Developer Overview This guide is part of the Adobe PDF Library v7.0.5 suite; 08/17/06. Copyright 1999-2006 Datalogics Incorporated. All Rights Reserved. Use of Datalogics software is subject to the applicable license agreement. Datalogics Interface (DLI) is a trademark of Datalogics Incorporated. Other products mentioned herein as Datalogics products are also trademarks or registered trademarks of Datalogics, Incorporated. Adobe, Adobe PDF Library, PostScript, Acrobat, Distiller, Exchange and Reader are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States or other countries. HP and HP-UX are registered trademarks of Hewlett Packard Corporation. IBM, AIX, AS/400, OS/400, MVS, and OS/390 are registered trademarks of International Business Machines. Java, J2EE, J2SE, J2ME, all Java-based marks, Sun and Solaris are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. Linux is a registered trademark of Linus Torvalds. Microsoft, Windows and Windows NT are trademarks or registered trademarks of Microsoft Corporation. SAS/C is a registered trademark of SAS Institute Inc. UNIX is a registered trademark of The Open Group. All other trademarks and registered trademarks are the property of their respective owners. For additional information, contact: Datalogics, Incorporated 101 North Wacker Drive, Suite 1800 Chicago, Illinois 60606-7301 Phone: 312-853-8200 Fax: 312-853-8282
    [Show full text]
  • DLI Implementation and Reference Guide
    Implementation and Reference Guide Datalogics Interface Datalogics® Datalogics DATALOGICS INTERFACE Implementation and Reference Guide This guide is part of the Adobe® PDF Library v6.1.1Plus suite; 02/15/05. Copyright 1999-2005 Datalogics Incorporated. All Rights Reserved. Use of Datalogics software is subject to the applicable license agreement. DL Interface is a trademark of Datalogics Incorporated. Other products mentioned herein as Datalogics prod- ucts are also trademarks or registered trademarks of Datalogics, Incorporated. Adobe, Adobe PDF Library, Portable Document Format (PDF), PostScript, Acrobat, Distiller, Exchange and Reader are trademarks of Adobe Systems Incorporated. HP and HP-UX are registered trademarks of Hewlett Packard Corporation. IBM, AIX, AS/400, OS/400, MVS, and OS/390 are registered trademarks of International Business Machines. Java, J2EE, J2SE, J2ME, all Java-based marks, Sun and Solaris are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. Linux is a registered trademark of Linus Torvalds. Microsoft, Windows and Windows NT are trademarks or registered trademarks of Microsoft Corporation. SAS/C is a registered trademark of SAS Institute Inc. UNIX is a registered trademark of The Open Group. VeriSign® is a registered trademark of VeriSign, Inc. in the United States and/or other countries. All other trademarks and registered trademarks are the property of their respective owners. For additional information, contact: Datalogics, Incorporated 101 North Wacker
    [Show full text]
  • Are Your Pdfs Print-Ready?
    Are your PDFs Print-Ready? How to save time and money with print-optimized workflows Meet the Presenter Scott Urchell Sales Engineering | Datalogics Technical lead, Business Development team What will be covered • Why & how to improve your print workflows • Good vs Bad PDFs • Internal PDF structures • Color management • Transparencies • PDF/X Why improve your print workflows? Why improve your print workflows? • Reduce time to print • Improve quality • Save money and resources • You don’t want to find a problem with your files when you are going to press What can you improve? What can you improve? • Files • Processes • Tools Not all PDFs are created equal PDF files are created for different purposes • Print-specific • Online distribution • General PDFs Bad PDFs (malformed) • Malformed files / syntax issues Internal PDF structure • Acrobat Preflight –> Report PDF Syntax Internal PDF structure • Acrobat Preflight –> Browse Internal Structure Bad PDFs (content) • Missing fonts • Image quality • Color problems • Affect how your customers communicate with their audience Common pre-print processes Preflight • Split & Merge • Color conversion -RGB to CMYK, Spot colors • Transparency Flattening • Preflight Color management • Conversion to CMYK targeting specific profiles • Render intent • Colorimetric (Absolute, Relative) • Perceptual, Saturation • Output Intent Transparency • Should you flatten transparencies? The importance of PDF/X A subset of the PDF standard supporting a variety of print production workflows • PDF/X-1 - CMYK and spot colors,
    [Show full text]
  • Adobe PDF Library (APDFL) Overview Functionality
    Datasheet Adobe PDF Library (APDFL) Overview Functionality The Adobe PDF Library is a Software Development The Adobe PDF Library is a Software Development Kit (SDK) and library of Application Programming Kit (SDK) and library of Application Programming Interfaces (API) for working with the PDF document Interfaces (API) for working with the PDF document format. format. Software developers and systems integrators use the Software developers and systems integrators use the Library to build their own third-party applications that Library to build their own third-party applications that they use to open and render, create, change, process, they use to open and render, create, change, process, review, print, and manage PDF files. review, print, and manage PDF files. Adobe, Inc. used the Adobe PDF Library as the basis for Adobe, Inc. used the Adobe PDF Library as the basis for creating their popular Adobe Acrobat software tool and so the Library is fully compatible with Acrobat DC and creating their popular Adobe Acrobat software tool and with the Adobe Reader. so the Library is fully compatible with Acrobat DC and with the Adobe Reader. In-Depth Look The Adobe PDF Library is an excellent choice of the application used to generate them or for high-volume processing functions such the platform used to render them. as document management, knowledge The Adobe PDF Library was created in 1993, management, prepress workflows, document around the same time as the PDF format archiving, business reporting, electronic itself, and Adobe Acrobat. It is built using statements, paper-to-digital conversions, C/C++ code, but Datalogics also provides content management, content extraction, a .NET, .NET Core and Java interface that indexing, and searching.
    [Show full text]
  • Chicago, IL, December 8, 2010 — Datalogics, a Chicago-Based
    For more information Nicole Bullock Marketing Manager tel. +1.312.853.8200 PRESS RELEASE BeamItDown Software licenses the Adobe Reader Mobile SDK from Datalogics for its iFlow Reader Chicago, IL, December 8, 2010 — Datalogics, a Chicago-based software company and the premier channel for several Adobe developer toolkits, today announced that it has licensed the Adobe® Reader® Mobile SDK to Irvine, CA-based BeamItDown Software for use in its iFlow Reader™ eBook reader application for Apple iPhone, iPod Touch, and iPad. The new, feature-rich iFlow Reader™ provides an exceptional reading and shopping experience with a gorgeous and intuitive user interface that establishes a new benchmark for eBook reading enjoyment. With its seamless support of manual scrolling, trackball scrolling, virtual paging, and the silky smooth tilt-controlled AutoScrolling, the iFlow Reader lets the user read the way that they prefer for the material at hand. Content for the iFlow Reader is available from the iFlowBookstore, developed in partnership with the Ingram Content Group. The iFlowBookstore contains the newest titles from top publishers, including Random House, Hachette Book Group, HarperCollins, Penguin Group, Simon & Schuster, McGraw Hill, John Wiley and Sons, and many others. “Our goal was to make the best eBook application anywhere because we saw it as the only way for us little guys to compete against the Goliaths that currently dominate this marketplace,” states Dennis Morin, one of the founders of BeamItDown Software. “Adobe has provided an extraordinary technology platform for us to build on. Because of this, and because we made the user experience of buying and reading eBooks our first priority, we firmly believe our iFlow Reader application is a huge improvement over everything else on the market today.
    [Show full text]
  • Adobe PDF Library Developer Overview
    Developer Overview Adobe PDF Library v6.1 Datalogics® Datalogics ADOBE PDF LIBRARY Developer Overview This guide is part of the Adobe® PDF Library v6.1.0Plus suite; 08/11/04. Copyright 1999-2004 Datalogics Incorporated. All Rights Reserved. Use of Datalogics software is subject to the applicable license agreement. DL Interface is a trademark of Datalogics Incorporated. Other products mentioned herein as Datalogics prod- ucts are also trademarks or registered trademarks of Datalogics, Incorporated. Adobe, Adobe PDF Library, Portable Document Format (PDF), PostScript, Acrobat, Distiller, Exchange and Reader are trademarks of Adobe Systems Incorporated. Microsoft, Windows and Windows NT are trademarks or registered trademarks of Microsoft Corporation. IBM, AIX, AS/400, OS/400, MVS, and OS/390 are registered trademarks of International Business Machines. HP and HP-UX are registered trademarks of Hewlett Packard Corporation. SAS/C is a registered trademark of SAS Institute Inc. Java, J2EE, J2SE, J2ME, all Java-based marks, Sun and Solaris are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. UNIX is a registered trademark of The Open Group. Linux is a registered trademark of Linus Torvalds. All other trademarks and registered trademarks are the property of their respective owners. For additional information, contact: Datalogics, Incorporated 101 North Wacker Drive, Suite 1800 Chicago, Illinois 60606-7301 Phone: 312-853-8200 Fax: 312-853-8282 www.datalogics.com [email protected] Table
    [Show full text]
  • Adobe PDF Library X SDK
    Adobe® PDF Library X SDK FAQ Adobe® PDF Library X SDK When should I use the Adobe PDF Library software development kit (SDK)? The Adobe PDF Library provides the core PDF manipulation functionality of Adobe Acrobat® software in an API format. It is suitable for embedding basic Acrobat functionality such as creating, editing, assembling, and printing PDF documents from within third-party applications. The PDF Library provides technology that can be fully integrated with another application. Use the Adobe PDF Library SDK when you need to integrate Adobe PDF functionality with your solutions in a client and/or server environment. The Adobe PDF Library does not provide access to extended Acrobat functionality such as digital signatures, annotations, or plug-ins. If you require these advanced features, use Acrobat instead. Developing with Acrobat requires users to have a copy of Acrobat on their computers. Whenever feasible and practical, you should use Adobe applications such as Adobe Acrobat, Reader® and LiveCycle® ES to support PDF capabilities in your solutions. To develop plug-ins for Acrobat and Reader, please use the Acrobat SDK. Adobe also offers a range of enterprise solutions for streamlining document-based processes at www.adobe. com/enterprise. How is using the Adobe PDF Library superior to developing my own PDF support? The Adobe PDF Library helps remove the burden of understanding and maintaining support for the underly- ing PDF standard, allowing developers to focus their core competencies on building robust business solutions. PDF files created with PDF Library are high quality and standards based. The library can read any valid PDF file created by other sources, and it will remain current with future versions of the PDF specification.
    [Show full text]
  • For More Information Nicole Bullock Senior Marketing Manager Tel
    For more information Nicole Bullock Senior Marketing Manager tel. +1.312.853.8200 PRESS RELEASE Datalogics PDF Alchemist, a Developer Toolkit for Converting PDF to HTML, Now Available Chicago, IL, July 15, 2015 – Datalogics, the premier source for Adobe PDF and eBook technologies, announced the release of Datalogics PDF Alchemist, a new SDK for converting PDF documents to HTML. PDF Alchemist recovers critical text flows that were lost during the initial conversion of the source document to PDF. These text flows are essential for repurposing document contents in a number of ways, including: Optimizing the viewing experience on mobile phones and tablets by enabling intelligent text reflow; Enabling improved semantic text search in content repositories and document management systems; Enabling the reconstruction of editable source documents in situations where the original was lost; And more. PDF Alchemist employs advanced heuristics and sophisticated algorithms to scan across columns and pages of a PDF, linking related text and paragraphs together in the final output. Images are extracted as separate files, and are referenced inline in the HTML output; and formatting including text styling, indentation and justification are also preserved. “Recovering the text structure of PDFs is a bit of a 'holy grail' of PDF processing,” notes Greg Manuel, Vice President of Marketing. “Since the PDF format was first and foremost a page description language, encoding semantic text flow information within the document was never a priority. Consequently, today there's a wide variety of tools for creating PDFs, each encoding the internal structure in a different way. PDF Alchemist employs a number of techniques, including using positional and style “hints," to reconstruct the flow of text across columns and pages.
    [Show full text]
  • Datalogics Announces Availability of Adobe® Reader Mobile SDK 10 and Adobe Content Server 5
    For more information Katie Farnan Tel. +1.312.853.8200 PRESS RELEASE Datalogics announces availability of Adobe® Reader Mobile SDK 10 and Adobe Content Server 5 Chicago, IL, January 23, 2014 – Chicago-based Datalogics, Inc., the premier source for Adobe PDF and eBook technologies, today announced the availability of Adobe Reader Mobile SDK (RMSDK) 10 and Adobe Content Server (ACS) 5 to their customers. These new releases incorporate a hardened Digital Rights Management (DRM) technology to more securely protect EPUB and PDF content. Adobe Reader Mobile SDK 10 and Adobe Content Server 5 are immediately available from Datalogics. Adobe Reader Mobile SDK is Adobe’s EPUB and PDF rendering technology for eBook apps and devices. It powers hundreds of apps and devices, which serves as the front end of Adobe’s end-to-end eBook ecosystem. This ecosystem is used worldwide by thousands of publishers, schools, libraries and content providers selling and lending millions of eBooks. Other features of RMSDK 10 include: • Performance improvements to PDF text search when the text is not present in the specified range • Compiler migration to support latest XCode and Mac OS • CSS 2.1 properties enhancements • Support for Pseudo Bold and Italic CJK font face • Other bug fixes For more information Adobe Reader Mobile SDK 10 and Adobe Content Server 5 are both available from Datalogics directly or through their distribution partner EAST Co. for the Japanese market. Existing customers can contact their Technical Support Engineer for availability and upgrade details. In addition, Datalogics and Adobe is hosting an informational web meeting on Wednesday, January 29th, 2014, to share additional details and answer questions.
    [Show full text]
  • Adobe PDF Library SDK FAQ.Indd
    FAQ Adobe® PDF® Library SDK Q: When should I use the Adobe PDF Library software development kit (SDK)? A: The Adobe PDF Library provides the core PDF manipulation of the Acrobat® product in an application programming interface (API) format. It is suitable for embedding core Acrobat functionality such as creating, editing, assembling, and printing PDF documents from within third party applications. PDF Library provides fully integratable technology into another application. You should use the Adobe PDF Library SDK when you need to integrate Adobe Portable Document Format (PDF) functionality tightly within your solutions in a client and/or server environment. The Adobe PDF Library does not provide access to extended Acrobat functionality such as encryption, digital signatures, annotations or plug-ins. If you require these advanced features, use Adobe Acrobat instead. Developing with Acrobat requires each user to have a copy of Acrobat on their computer. Whenever it is feasible and practical, you should use Adobe applications such as the Adobe Acrobat, Reader® and LiveCycleTM product families to support PDF capabilities in your solutions. To TABLE OF CONTENTS develop plug-ins for Acrobat and Reader, please use the Acrobat SDK. 1 When should I use the Adobe PDF Library software development kit (SDK)? Adobe also offers a range of enterprise solutions for streamlining document-based 1 How is using the Adobe PDF Library superior processes at http://www.adobe.com/enterprise. to developing my own PDF support? 1 What Adobe PDF functionality does the Adobe PDF Library provide? Q: How is using the Adobe PDF Library superior to developing my own PDF support? 1 Is there a new version of the Adobe PDF Library A: Adobe PDF Library removes the burden of understanding and maintaining that matches the Acrobat 7.0 product line? support for the underlying PDF standard, allowing developers to focus their 2 What are the new features in core competencies on building robust business solutions.
    [Show full text]
  • Adobe PDF Library Installation Guide
    Installation Guide Adobe PDF Library v7 Datalogics® Datalogics ADOBE PDF LIBRARY Installation Guide This guide is part of the Adobe PDF Library v7.0.5Plus suite; 08/17/06. Copyright 1999-2006 Datalogics Incorporated. All Rights Reserved. Use of Datalogics software is subject to the applicable license agreement. Datalogics Interface and Datalogics Java Interface are trademarks of Datalogics Incorporated. Other products mentioned herein as Datalogics products are also trademarks or registered trademarks of Data- logics, Incorporated. Adobe, Adobe PDF Library, Portable Document Format (PDF), PostScript, Acrobat, Distiller, Exchange and Reader are trademarks of Adobe Systems Incorporated. HP and HP-UX are registered trademarks of Hewlett Packard Corporation. IBM, AIX, AS/400, OS/400, MVS, and OS/390 are registered trademarks of International Business Machines. Java, J2EE, J2SE, J2ME, all Java-based marks, Sun and Solaris are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. Linux is a registered trademark of Linus Torvalds. Microsoft, Windows and Windows NT are trademarks or registered trademarks of Microsoft Corporation. SAS/C is a registered trademark of SAS Institute Inc. UNIX is a registered trademark of The Open Group. VeriSign® is a registered trademark of VeriSign, Inc. in the United States and/or other countries. All other trademarks and registered trademarks are the property of their respective owners. For additional information, contact: Datalogics, Incorporated 101 North Wacker
    [Show full text]
  • For More Information Nicole Bullock Senior Marketing Manager Tel
    For more information Nicole Bullock Senior Marketing Manager tel. +1.312.853.8200 PRESS RELEASE Datalogics announces the availability of the Merriam-Webster in-app dictionary in DL Reader Chicago, IL, October 6, 2014 — Datalogics, the premier source for Adobe PDF and eBook technologies, today announced the availability of the Merriam-Webster in-app dictionary for use within eReading devices and Android apps. Through a collaboration with Merriam-Webster, America's leading English language reference publisher, the Merriam-Webster's Collegiate® Dictionary with Audio is now available to all licensees of Adobe Reader Mobile SDK, an eReader toolkit for displaying EPUB and PDF documents onscreen. "Our customers continue to bring innovative, high-quality eReading solutions to market," states Kevin McNeill, President of Datalogics. "And the Adobe Reader Mobile SDK technology continues to evolve, with support for EPUB 3, our eSync synchronization platform, and new business models attuned to the different ways in which readers are consuming content. Now with our partnership with Merriam-Webster, these customers can easily incorporate industry-leading dictionary capabilities to create a more robust and comprehensive reading experience." "Application developers choose the Adobe eBook platform because of a demand for the very best quality,” says Matt Dube, VP Business Development at Merriam-Webster. Under the terms of the agreement, Datalogics RMSDK customers can obtain the Merriam-Webster's Collegiate® Dictionary with Audio directly from Merriam-Webster, and Datalogics will provide the necessary framework to ensure its compatibility with RMSDK. The Merriam-Webster's Collegiate® Dictionary with Audio is currently available for Android OS only. In addition, the Merriam-Webster's Collegiate® Dictionary with Audio is also incorporated into the free downloadable DL Reader client.
    [Show full text]