CALIFORNIA SOFTWARE LABS

Size: px
Start display at page:

Download "CALIFORNIA SOFTWARE LABS"

Transcription

1 JetSend Viewer for Windows CE CALIFORNIA SOFTWARE LABS R E A L I Z E Y O U R I D E A S California Software Labs 6800 Koll Center Parkway, Suite 100 Pleasanton CA 94566, USA. Phone (925) Fax (925) info@cswl.com

2 JetSend Viewer for Windows CE A Technical Report Technical Expertise Level : Intermediate Requires knowledge of : JetSend Protocol Shelf Life : 6-8 months INDEX INTRODUCTION... 3 JET FILE FORMAT... 3 CLASSES USED FOR JET FILE... 5 UI INTERFACE OF JET FILE... 6 FEATURES IMPLEMENTED... 7 OPEN EXISTING JET FILE... 8 RENDER JET FILE... 9 CREATE THUMBNAILS CSWL Inc, Pleasanton, California - 2 -

3 Introduction The JetSend Viewer (JetView) for Windows CE is used to view JET files in the Windows CE operating system. The Viewer reads the JET file and renders on the screen the image encodings present in the file. The Viewer also performs view operations like zooming in and out, rotation and flipping of the rendered images. Fig 1 Shows the JetView tool Jet File Format CSWL Inc, Pleasanton, California - 3 -

4 The jet file has a signature HPJS to identify as a valid JetSend material. The jet file has atleast one page or plane. Each page can have number of images. These images will be of RGB, Gray or Mono. Images may be either compressed or uncompressed. The viewer supports JPEG-LSDraft compression technique and RLE compression. The file format contains four basic sections Document Header:The document header contains information about the entire document, including an offset to the first page. Page Header(1-n, for each page):contains information about the page, or plane. This includes an offset to the next page, as well as offsets to each child contained within the plane. Child Header (1-n, for each child):contains information about each child on the plane, including the size of each child. End of file marker:this marks the end of the file. CSWL Inc, Pleasanton, California - 4 -

5 The figure shows the structure of 2-page jet file. Each Page has one image Classes Used For Jet File CSWL Inc, Pleasanton, California - 5 -

6 Jet file is implemented using the class CJet. CJet class will have pointer to each plane or page. Page is implemented using the class CPlane. CPlane class will have pointer to each image. Depending upon the compression technique applied for image and pixel depth of image, appropriate class is used to implement image. If the compression is JPEG-LSDraft then CJpegLsDraft class is used. If image is RLE compressed, then depending upon pixel depth, CRleGray (pixel depth = 8) or CMonoImage (pixel depth = 1) classes are used. If the image is uncompressed, then the class used depends upon pixel depth, CJpegLsDraft (pixel depth = 24) or CRleGray (pixel depth = 8) or CMonoImage (pixel depth = 1). UI Interface of Jet File JetView for Windows CE is a Single Document Interface application. So JetView allows opening of a single JET file at a time. The client portion Frame Window is split into two views using CSplitterWnd. One View is image view and the other is page view. The image view displays the image of current page. The image view allows performing operations on the current page. The page view shows thumbnail for all pages. The page view allows the user to manipulate common operations on these pages. The document is implemented by the class CJetViewDoc. The two CSWL Inc, Pleasanton, California - 6 -

7 views are implemented respectively CJetViewView (image view) and CPageView (page view). Skeleton of JetView Features Implemented Open existing jet file Render jet file to screen Create Thumbnails Perform view transformations on displayed page o Zoom In o Zoom Out o Zoom Normal o Rotate Left o Rotate Right o Rotate 180 o Vertical Flip o Horizontal Flip CSWL Inc, Pleasanton, California - 7 -

8 Open Existing Jet File JetView allows to open existing jet file through Windows File Open Dialog Box. The document will create a pointer to CJet and calls ReadJet function of CJet. ReadJet function then calls ReadDocHeader to verify whether the jet file is valid e- material and reads each page. CJet will create pointer to each page (CPlane) and reads each page content. CPlane reads plane header and reads each image. CPlane creates pointer to image class depending upon the compression technique and pixel depth of the image. CPlane then calls read routine of image which reads image content and stores this in heap structure of CJet. Program Flow for Opening a JET file Serialize function creates a pointer to CJet and calls ReadJet function of CJet. CJetViewDoc Class ReadJet calls ReadDocHeader function to verify signature and calls ReadNextPlane function. ReadNextPlane creates pointer to each plane and calls Read routine of CPlane. CJet Class Read function reads plane header and calls ReadChild routine which reads image header and creates new image and calls Read routine of CImage. CPlane Class Read function reads image content from the file into memory. CImage Class CSWL Inc, Pleasanton, California - 8 -

9 Render Jet File JetView displays image view of current page and thumbnail view for the pages that are visible in the screen. OnDraw function of image view (CJetViewView) calls Display function of CJet. The Display function of the CJet class checks the state of current page. If the current page is decompressed it calls Render function of current page (CPlane). If the page is not yet decompressed it calls AddPage2Thread function. The page view (CPageView) displays thumbnails for the pages. OnDraw function of page view calls GetThumbnail function for each page. After the page has been decompressed, the function returns a handle to the bitmap. If the page has not been decompressed then page view calls AddPage2Thread function for each page. The information about each page that has to be decompressed is stored in the structure _thread_data. This structure will point to next element of same type. One shared pointer variable g_phead points to the first node in the list of _thread_data. AddPage2Thread function adds another node to this list. The list of jobs is maintained in a global queue. Two threads can access the queue. One thread is User Interface thead and the other is a background thread. The background thread can either be a decompress thread, a printing thread or an exporting thread. In order to provide synchronization between these two threads event synchronization is used. In this type of synchronization the WaitForSingleObject call is used. The WaitForSingleObject gives a signal that indicates that the shared variable is not being accessed at that instant. In this case, g_phead is the shared variable used for synchronization purpose. Signal is given if g_phead is to be accessed using the function CreateEvent. So before adding another thread to the list, wait for the signal which indicates g_phead is not accessed using the WaitForSingleObject call. Then if the thread has not yet been created, create the thread. CSWL Inc, Pleasanton, California - 9 -

10 There exists only one decompress thread for all pages. Decompress gets called page after page. DecompThread function reads thread data sequentially. It gets first thread structure and calls StartThumbnail function of jet file with plane as parameter. After it finishes decompressing first page, it reads second thread data and so on until all thread data have been read and decompressed. StartThumbnail function of jet file calls Decompress routine for plane. Decompress function of plane creates a bitmap for the plane size. The plane size depends up on the screen resolution. The e-material has a standard resolution dpi. The Decompress function of the plane calls Decompress function for each image. The images exist as either uncompressed or compressed using the JPEG or RLE compression format. HP has provided the decompression technique for JPEG and RLE images. These algorithms have been optimized for performance. For JPEG- LSDraft decompression technique static Lookup tables are used. Each image has its own unique resolution. After decompressing, the StretchBlt function is called to stretch image bitmap to page size at the specified location in page. CSWL Inc, Pleasanton, California

11 Create Thumbnails The page view displays thumbnails for the pages. It calls GetThumbnail function of each page to verify whether the thumbnail has been created or not. If the thumbnail for that page has been created then the function returns the bitmap of thumbnail. If the thumbnail is not created, then the GetThumbnail function calls AddPage2Thread function. CSWL Inc, Pleasanton, California

12 The StartThumbnail function of CJet after calling Decompress function of plane calls CreateThumbnail function of plane. The thumbnail size is fixed. 136 pixel width and 136 pixel height. CreateThumbnail function creates a bitmap to this size. Then 8 inches are mapped to 100 pixels in thumbnail. Using approximation the plane data are stretched to this size. The thumbnails are then displayed. Zoom The Viewer implements zooming of pages. The different types of zooming implemented are: 1. Zoom In Zooms into the page. The Viewer allows upto 2 levels of zoom in. 2. Zoom Out Zooms out of the page. The Viewer allows upto 3 levels of zoom out. 3. Zoom Normal Zooms to the original size of the page. CSWL Inc, Pleasanton, California

13 Program Flow for the Zoom Operation The ZoomIn(), ZoomOut() or ZoomNormal() function of the CJet class is called. This function sets the appropriate value of the scale factor. CJet Class The SetupNewPage() function is called to set the scroll bars and to fit the page CJetViewView Class Image before the zoom in operation Image after the zoom in operation Rotate The Viewer implements rotating of pages. The different rotations implemented are: 1. RotateRight Rotates the page by 90 degrees in the clockwise direction 2. RotateLeft Rotates the page by 90 degrees in the anti-clockwise direction. CSWL Inc, Pleasanton, California

14 3. Rotate180 Rotates the page by 180 degrees. The rotation of the page is also performed on the thumbnail view. Program Flow for the Rotate Operation The RotateRight(), RotateLeft() or Rotate180() function of the CJet class is called. This function stores information into the JET file indicating that the plane has been rotated. CJet Class The RotateRight(), RotateLeft() or Rotate180() function of the CPlane class is called this function performs the rotate operation on the plane. CPlane Class The SetupNewPage() function is called to set the scroll bars and to fit the page CJetViewView Class Image before the rotate right in operation Image after the rotate right operation CSWL Inc, Pleasanton, California

15 Flip The Viewer implements flipping of pages. The different flips implemented are: 1. Vertical Flip Flips the page about the vertical axis. 2. Horizontal Flip Flips the page about the horizontal axis. The flipping of the page is also performed on the thumbnail view. Program Flow for the Flip Operation The FlipVert() or FlipHorz() function of the CJet class is called. The FlipVert() or FlipHorz() function function stores information into the JET file indicating that the plane has been flipped. CJet Class The FlipVert() or FlipHorz() function of the CPlane class is called The FlipVert() or FlipHorz() function performs the flip operation on the plane. CPlane Class The SetupNewPage() function is called to set the scroll bars CJetViewView and fit of the page Class Image before the vertical flip in operation CSWL Inc, Pleasanton, California

16 Image after the vertical flip operation Restrictions on the H/PC Memory constraints In the Handheld PC (H/PC) the entire memory is split into two parts 1. The object store This part stores all the files. 2. The program memory This part is used for processing. As there is a connection between the object store and the amount of program memory there always has to be a trade-off made between the number of files on the emulator and the amount of memory required to run the programs. 1. Multiple page JET files 2. Color JET files. 3. Uncompressed JET files. A minimum of 2MB-program memory is required for viewing gray scale JET files and a minimum of 6MB-program memory is required for viewing color JET files. Programming obstacles faced CSWL Inc, Pleasanton, California

17 1. There is currently no support given by the Microsoft Foundation Classes (MFC) for Compound Documents. The support for compound documents had to be incorporated using the functionality given by SDK. 2. There were certain problems during the debugging of this JetView tool developed for CE. Due to the low programming memory available and large memory requirements for debugging, frequent crashes were encountered during the debugging sessions. This required a number of debugging sessions for tracing out the bugs in the JetView tool. 3. Shared Dlls had to be used because OLE DLLs can not be statically linked in Windows CE. As the Dlls are not statically linked, the Dlls also have to be copied into the H/PC Copyright Notice: 2002 California Software Labs. All rights Reserved. The contents on the document are not to be reproduced or duplicated in any form or kind, either in part or full, without the written permission of California Software labs. Product and company names mentioned here in are the trademarks of their respective companies. CSWL Inc, Pleasanton, California

CALIFORNIA SOFTWARE LABS

CALIFORNIA SOFTWARE LABS Using the JetSend SDK CALIFORNIA SOFTWARE LABS R E A L I Z E Y O U R I D E A S California Software Labs 6800 Koll Center Parkway, Suite 100 Pleasanton CA 94566, USA. Phone (925) 249 3000 Fax (925) 426

More information

ViewONE User Manual !"##$$$

ViewONE User Manual !##$$$ ViewONE User Manual!"##$$$ Contents Introduction 3 Features 4 The User interface 5 Toolbars 6 Menus 19 The Keyboard 29 ViewONE is a Java applet that extends your web browser so that you can view, zoom,

More information

CALIFORNIA SOFTWARE LABS

CALIFORNIA SOFTWARE LABS Real-time Implementation of NAT and Firewall in VxWorks CALIFORNIA SOFTWARE LABS R E A L I Z E Y O U R I D E A S California Software Labs 6800 Koll Center Parkway, Suite 100 Pleasanton CA 94566, USA. Phone

More information

Breeze User Guide. Breeze Multiple Stream Video Processors. Light and Standard Editions Version 5.3.2

Breeze User Guide. Breeze Multiple Stream Video Processors. Light and Standard Editions Version 5.3.2 Breeze User Guide Breeze Multiple Stream Video Processors Light and Standard Editions Version 5.3.2 Copyright 1989-2007 Discovery Scientific, LLC All rights reserved www.discoverybiz.net January 01, 2007

More information

2010 by Microtek International, Inc. All rights reserved.

2010 by Microtek International, Inc. All rights reserved. 2010 by Microtek International, Inc. All rights reserved. Microtek and DocWizard are trademarks of Microtek International, Inc. Windows is a registered trademark of Microsoft Corporation. All other products

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

IMAGE VIEWER. Following is the explanation of different settings and features: Page. First Page

IMAGE VIEWER. Following is the explanation of different settings and features: Page. First Page IMAGE VIEWER All scanned and or imported documents can be seen in Image Viewer. SequelMed image viewer is a powerful viewer where you can manipulate scanned documents. It has basic features starting from

More information

CALIFORNIA SOFTWARE LABS

CALIFORNIA SOFTWARE LABS Wrapping Jini Services in ActiveX CALIFORNIA SOFTWARE LABS R E A L I Z E Y O U R I D E A S California Software Labs 6800 Koll Center Parkway, Suite 100 Pleasanton CA 94566, USA. Phone (925) 249 3000 Fax

More information

OnBase Quick Reference Guide

OnBase Quick Reference Guide OnBase Quick Reference Guide Unity Client Retrieval For OnBase 10.0 Support: Team M teamm@onbase.com 440.788.6605 Prepared by: Hyland Software, Inc. 28500 Clemens Road Westlake, Ohio 44145 Ph: (440) 788-5000

More information

BMP file format - Wikipedia

BMP file format - Wikipedia Page 1 of 3 Bitmap file header This block of bytes is at the start of the file and is used to identify the file. A typical application reads this block first to ensure that the file is actually a BMP file

More information

PrimoPDF User Guide, Version 5.0

PrimoPDF User Guide, Version 5.0 Table of Contents Getting Started... 3 Installing PrimoPDF... 3 Reference Links... 4 Uninstallation... 5 Creating PDF Documents... 5 PrimoPDF Document Settings... 6 PDF Creation Profiles... 6 Document

More information

PVRTexTool. User Manual

PVRTexTool. User Manual Public Imagination Technologies PVRTexTool Copyright Imagination Technologies Limited. All Rights Reserved. This publication contains proprietary information which is subject to change without notice and

More information

OptimiData. JPEG2000 Software Development Kit for C/C++ Reference Manual. Version 1.6. from

OptimiData. JPEG2000 Software Development Kit for C/C++  Reference Manual. Version 1.6. from OptimiData for optimized data handling JPEG2000 Software Development Kit for C/C++ Reference Manual Version 1.6 from 2004-07-29 (Windows and Linux Versions) www.optimidata.com OptimiData JPEG2000 C-SDK

More information

FRAQCEL USER GUIDE

FRAQCEL USER GUIDE FRAQCEL 2.7.1 USER GUIDE Author: Kevin Orloske Email Address: orloske.1@osu.edu Overview: This document provides user instructions for Fraqcel (pronounced frack-cell). Fraqcel is an open source fractal

More information

Nero AG SecurDisc Viewer

Nero AG SecurDisc Viewer SecurDisc Manual Nero AG SecurDisc Copyright and Trademark Information This manual and all its contents are protected by copyright and are the property of Nero AG. All rights reserved. This manual contains

More information

Searching for Images in v10

Searching for Images in v10 Searching for Images in v10 Following are the steps to search for images in Docfinity version 10. Searching for Images: Log into Docfinity on www.controller.psu.edu/docfinity Open Searching Workspace in

More information

BOXOFT Image to PDF s allow you scans paper documents and automatically s them as PDF attachments using your existing software

BOXOFT Image to PDF s allow you scans paper documents and automatically  s them as PDF attachments using your existing  software Note: This product is distributed on a try-before-you-buy basis. All features described in this documentation are enabled. The registered version does not insert a watermark in your generated pdf documents.

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

Foxit Reader SDK. Programming Guide

Foxit Reader SDK. Programming Guide Foxit Reader SDK For Windows and Linux Programming Guide Revision 1.4 Foxit Software Company 2005.12 Overview Features Tutorials Calling from Different Programming Languages Reference Redistribution Overview

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

Nero AG SecurDisc Viewer

Nero AG SecurDisc Viewer SecurDisc Viewer Manual Nero AG SecurDisc Viewer Copyright and Trademark Information This manual and all its contents are protected by copyright and are the property of Nero AG. All rights reserved. This

More information

ClinicalExpress Operator s Guide. version 6.1 for general radiography and mammography

ClinicalExpress Operator s Guide. version 6.1 for general radiography and mammography ClinicalExpress Operator s Guide version 6.1 for general radiography and mammography Copyright by VIDAR Systems Corporation. All rights reserved. No part of this publication may be reproduced, stored in

More information

The viewer makes it easy to view and collaborate on virtually any file, including Microsoft Office documents, PDFs, CAD drawings, and image files.

The viewer makes it easy to view and collaborate on virtually any file, including Microsoft Office documents, PDFs, CAD drawings, and image files. Parts of this functionality will only be available in INTERAXO Pro. Introduction The viewer provides users with the capability to load a wide variety of document types online using a web browser. Documents

More information

Changing Image Display

Changing Image Display 12-Jul-09 Changing Image Display One way to customize collections is to change the settings of the four viewers within the CONTENTdm Web templates to improve the display of your collection. You can change

More information

VXvue User Manual (For Human Use)

VXvue User Manual (For Human Use) VXvue User Manual (For Human Use) Page 2 of 90 Revision History Version Date Description 1.0 2012-03-20 Initial Release Page 3 of 90 Contents Safety and Regulatory... 8 Safety Notice... 8 1. Introduction...

More information

14 July Ver CRView V3 User Guide. 1 P a g e

14 July Ver CRView V3 User Guide. 1 P a g e Ver. 080707 CRView V3 User Guide 1 P a g e Contents Copyright notice... 3 Trademarks... 3 System requirements... 4 Required hardware... 4 Recommended hardware... 4 Installing CRView... 5 Installing from

More information

AutoVue Desktop Edition. User s Manual

AutoVue Desktop Edition. User s Manual AutoVue Desktop Edition User s Manual Support Information If you have any questions or require support for AutoVue please contact Contact Information If at any time you have questions or concerns regarding

More information

Microsoft Excel 2010 Part 2: Intermediate Excel

Microsoft Excel 2010 Part 2: Intermediate Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 2: Intermediate Excel Spring 2014, Version 1.0 Table of Contents Introduction...3 Working with Rows and

More information

IMAGE STUDIO LITE. Tutorial Guide Featuring Image Studio Analysis Software Version 3.1

IMAGE STUDIO LITE. Tutorial Guide Featuring Image Studio Analysis Software Version 3.1 IMAGE STUDIO LITE Tutorial Guide Featuring Image Studio Analysis Software Version 3.1 Notice The information contained in this document is subject to change without notice. LI-COR MAKES NO WARRANTY OF

More information

R E L E A S E N O T E S V E R S I O N 1. 2

R E L E A S E N O T E S V E R S I O N 1. 2 R E L E A S E N O T E S V E R S I O N 1. 2 The information in this document is subject to change without notice and does not represent a commitment on the part of ArKaos Pro S.A. No part of this publication

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

Kimosetter RIP. User Guide (for Windows) Kimosetter RIP User Guide. Revised: July, 2007

Kimosetter RIP. User Guide (for Windows) Kimosetter RIP User Guide. Revised: July, 2007 Kimosetter RIP User Guide (for Windows) Revised: July, 2007 1 Copyright and Trademarks (Win version) July, 2007 The Copyright Notices for the Software and Documentation: Copyright Lucid Dream Software,

More information

Quick Reference. EMC ApplicationXtender Media Distribution Viewer 5.40 P/N REV A01

Quick Reference. EMC ApplicationXtender Media Distribution Viewer 5.40 P/N REV A01 EMC ApplicationXtender Media Distribution Viewer 5.40 Quick Reference P/N 300-005-645 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 1994-2007

More information

Page Delivery Service User Guide

Page Delivery Service User Guide Harvard University Library Office for Information Systems Page Delivery Service User Guide The Page Delivery Service (PDS) delivers to a web browser scanned page images of books, diaries, reports, journals

More information

End User Guide. 2.1 Getting Started Toolbar Right-click Contextual Menu Navigation Panels... 2

End User Guide. 2.1 Getting Started Toolbar Right-click Contextual Menu Navigation Panels... 2 TABLE OF CONTENTS 1 OVERVIEW...1 2 WEB VIEWER DEMO ON DESKTOP...1 2.1 Getting Started... 1 2.1.1 Toolbar... 1 2.1.2 Right-click Contextual Menu... 2 2.1.3 Navigation Panels... 2 2.1.4 Floating Toolbar...

More information

Using IPACS Webserver:

Using IPACS Webserver: Using IPACS Webserver: Logging On: The IPACS Webserver can be accessed from any PC with internet connectivity. 1. Open Internet Explorer or your internet service provider. 2. Type the IPACS web address

More information

INSTRUCTION MANUAL NOVEMBER 2008 ABM INTERNATIONAL AUTOPILOT USER INTERFACE MANUAL

INSTRUCTION MANUAL NOVEMBER 2008 ABM INTERNATIONAL AUTOPILOT USER INTERFACE MANUAL INSTRUCTION MANUAL NOVEMBER 2008 ABM INTERNATIONAL AUTOPILOT USER INTERFACE MANUAL ABM INTERNATIONAL, INC. Revision - 1 Approved By: Proprietary information of ABM International, Inc. furnished for customer

More information

CALIFORNIA SOFTWARE LABS

CALIFORNIA SOFTWARE LABS Application Porting / Development in Windows CE CALIFORNIA SOFTWARE LABS R E A L I Z E Y O U R I D E A S California Software Labs 6800 Koll Center Parkway, Suite 100 Pleasanton CA 94566, USA. Phone (925)

More information

Numbers Basics Website:

Numbers Basics Website: Website: http://etc.usf.edu/te/ Numbers is Apple's new spreadsheet application. It is installed as part of the iwork suite, which also includes the word processing program Pages and the presentation program

More information

Rare Event Detection Algorithm. User s Guide

Rare Event Detection Algorithm. User s Guide Rare Event Detection Algorithm User s Guide Copyright 2008 Aperio Technologies, Inc. Part Number/Revision: MAN 0123, Revision A Date: September 2, 2008 This document applies to software versions Release

More information

Layout and display. STILOG IST, all rights reserved

Layout and display. STILOG IST, all rights reserved 2 Table of Contents I. Main Window... 1 1. DEFINITION... 1 2. LIST OF WINDOW ELEMENTS... 1 Quick Access Bar... 1 Menu Bar... 1 Windows... 2 Status bar... 2 Pop-up menu... 4 II. Menu Bar... 5 1. DEFINITION...

More information

Real Monitor and Real Monitor Viewer

Real Monitor and Real Monitor Viewer Real Monitor and Real Monitor Viewer This chapter describes Real Monitor and Real Monitor Viewer, two related applications which allow you to collect and review data about your system. These applications

More information

This instruction manual may not be copied either in part or in its entirety without the prior permission of Minolta Co., Ltd Minolta Co., Ltd.

This instruction manual may not be copied either in part or in its entirety without the prior permission of Minolta Co., Ltd Minolta Co., Ltd. This instruction manual does not provide instructions for the basic operation of the personal computers, or the basic operation of Windows or Mac OS operating systems. Please refer to the manual that came

More information

User Guide Belltech Systems, LLC

User Guide Belltech Systems, LLC User Guide Belltech Systems, LLC http://www.belltechsystems.com May, 2006 1. Introducing Belltech CaptureXT 2. Installation and Uninstallation Installation Running the Application Uninstallation 3. User

More information

PrimoPDF. Version 4.0 User Manual. Totally Free PDF Creation because It's everbody's PDF. Brought to you by

PrimoPDF. Version 4.0 User Manual. Totally Free PDF Creation because It's everbody's PDF. Brought to you by PrimoPDF Version 4.0 User Manual Totally Free PDF Creation because It's everbody's PDF Brought to you by NOTICE TO USER: THIS IS A CONTRACT. BY INSTALLING THIS SOFTWARE YOU ACCEPT ALL THE TERMS AND CONDITIONS

More information

Info Input Express Network Edition

Info Input Express Network Edition Info Input Express Network Edition User s Guide A-61893 Table of Contents Using Info Input Express to Create and Retrieve Documents... 5 Compatibility... 5 Contents of this Guide... 5 Terminology... 7

More information

Geomatica Modeler. User Guide. Version 10.1

Geomatica Modeler. User Guide. Version 10.1 User Guide Version 10.1 2007 Enterprises Inc.. All rights reserved. COPYRIGHT NOTICE Software copyrighted by, 50 West Wilmot St., Suite 200, Richmond Hill, ON CANADA L4B 1M5 Telephone number: (905) 764-0614

More information

ViewONE User Manual. Genazim. The Friedberg Geniza Project. Daeja Image Systems. All Rights Reserved.

ViewONE User Manual. Genazim. The Friedberg Geniza Project. Daeja Image Systems. All Rights Reserved. Genazim The Friedberg Geniza Project ViewONE User Manual Daeja Image Systems. All Rights Reserved. Email: info@daeja.com Web site: http://www.daeja.com 1 Contents Introduction 3 The User interface 3 Toolbars

More information

CALIFORNIA SOFTWARE LABS

CALIFORNIA SOFTWARE LABS CALIFORNIA SOFTWARE LABS R E A L I Z E Y O U R I D E A S California Software Labs 6800 Koll Center Parkway, Suite 100 Pleasanton CA 94566, USA. Phone (925) 249 3000 Fax (925) 426 2556 info@cswl.com http://www.cswl.com

More information

PN , Revision A, April Epic 950 TM Layout Editor User s Guide

PN , Revision A, April Epic 950 TM Layout Editor User s Guide PN 95-06011, Revision A, April 2005 Epic 950 TM Layout Editor User s Guide This page intentionally left blank Change History Rev A Initial release April 2005 Important: Before installing any equipment

More information

Version 15 - New Features

Version 15 - New Features Version 15 - New Features Revision 1.5 ErgoSoft AG Moosgrabenstr. 13 CH-8595 Altnau, Switzerland Phone: +41 71 694 6666 Fax: +41 71 694 6660 ErgoSoft AG Moosgrabenstr. 13 CH-8595 Altnau, Switzerland 2016

More information

User Guide 701P Wide Format Solution Wide Format Scan Service

User Guide 701P Wide Format Solution Wide Format Scan Service User Guide 701P44865 6204 Wide Format Solution Wide Format Scan Service Xerox Corporation Global Knowledge & Language Services 800 Phillips Road Bldg. 845-17S Webster, NY 14580 Copyright 2006 Xerox Corporation.

More information

DIS: Design and imaging software

DIS: Design and imaging software Using IT productivity tools and applications This is the ability to use a software application designed to create, modify and layout artwork or images for display in print or on a screen (eg vector graphics

More information

DjVu Technology Primer

DjVu Technology Primer DjVu Technology Primer NOVEMBER 2004 LIZARDTECH, INC. OVERVIEW LizardTech s Document Express products are powered by DjVu, a technology developed in the late 1990s by a team of researchers at AT&T Labs.

More information

CALIFORNIA SOFTWARE LABS

CALIFORNIA SOFTWARE LABS CALIFORNIA SOFTWARE LABS R E A L I Z E Y O U R I D E A S California Software Labs 6800 Koll Center Parkway, Suite 100 Pleasanton CA 94566, USA. Phone (925) 249 3000 Fax (925) 426 2556 info@cswl.com http://www.cswl.com

More information

MODELING AND ANIMATION

MODELING AND ANIMATION UNIVERSITY OF CALICUT SCHOOL OF DISTANCE EDUCATION D M A MODELING AND ANIMATION QUESTION BANK 1. 2D Animation a) Wire Frame b) More than two Dimension c) Cel animation 2. 3D Animation a) Illution of three-dimensional

More information

ivina BulletScan Manager

ivina BulletScan Manager ivina BulletScan Manager User s Manual Aug 2010 Copyright Copyright 2010 ivina Inc. All rights reserved. Information in this document is subject to change without notice. The software described in this

More information

Step 1: Now you will be directed to the cloned profile that you created. Click on the "UI setting"

Step 1: Now you will be directed to the cloned profile that you created. Click on the UI setting Comodo Client Security white labeled versions are available. Now you can rebrand our agents with your own company and product names. This will help you to have a superior hand in your market. Step 1: In

More information

Avigilon Control Center Web Client User Guide

Avigilon Control Center Web Client User Guide Avigilon Control Center Web Client User Guide Version: 4.12 Standard PDF-WEBCLIENT-S-E-Rev2 Copyright 2013 Avigilon. All rights reserved. The information presented is subject to change without notice.

More information

Introduction.

Introduction. Product information Image Systems AB Main office: Ågatan 40, SE-582 22 Linköping Phone +46 13 200 100, fax +46 13 200 150 info@imagesystems.se, Introduction TEMA Automotive is the world leading system

More information

Perceptive Nolij Web. Release Notes. Version: 6.8.x

Perceptive Nolij Web. Release Notes. Version: 6.8.x Perceptive Nolij Web Release Notes Version: 6.8.x Written by: Product Knowledge, R&D Date: June 2018 Copyright 2014-2018 Hyland Software, Inc. and its affiliates. Table of Contents Perceptive Nolij Web

More information

PDF Creator Plus 6.0. Version 6.0. User Guide. PEERNET Inc.

PDF Creator Plus 6.0. Version 6.0. User Guide. PEERNET Inc. Version 6.0 User Guide PEERNET Inc. Copyright 2004-2012 Updated: 12/12/2012 Table of Contents Welcome... to PDF Creator Plus 1 Legal... Notices 2 System... Requirements 3 Typographic... Conventions 4 Activating...

More information

Software Release Notes for nordicbrainex v1.1.3

Software Release Notes for nordicbrainex v1.1.3 Software Release Notes for nordicbrainex v1.1.3 Revision 1 Date: February 15 th 2013 Approved by: Sigvald Høyheim NOTE: The most current documentation for released products is available on http://www.nordicneurolab.com.

More information

JUSTCROFT INTERNATIONAL PRINTING AND PLOTTING SOLUTIONS. JustCGM 5.0 User Manual

JUSTCROFT INTERNATIONAL PRINTING AND PLOTTING SOLUTIONS. JustCGM 5.0 User Manual JUSTCROFT INTERNATIONAL PRINTING AND PLOTTING SOLUTIONS JustCGM 5.0 User Manual Justcroft International JustCGM 5.0 User Manual Revision: 1.5, March 7, 2012 Copyright 2011-2012 Justcroft International

More information

Calc Guide. Chapter 6 Printing, Exporting and ing

Calc Guide. Chapter 6 Printing, Exporting and  ing Calc Guide Chapter 6 Printing, Exporting and E-mailing Copyright This document is Copyright 2005 2013 by its contributors as listed below. You may distribute it and/or modify it under the terms of either

More information

SHARP TWAIN AR/DM. User s Guide

SHARP TWAIN AR/DM. User s Guide SHARP TWAIN AR/DM User s Guide Copyright 2001 by Sharp Corporation. All rights reserved. Reproduction, adaptation or translation without prior written permission is prohibited, except as allowed under

More information

Fire Scene 6. Tip Sheet

Fire Scene 6. Tip Sheet Fire Scene 6 Tip Sheet Fire Scene 6 All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping,

More information

New scalemode element added to scale property The scale property has been extended to support scalemode = 6 to return true pixels.

New scalemode element added to scale property The scale property has been extended to support scalemode = 6 to return true pixels. APL+Win Version 17.0.03 Copyright (c) 2017 APLNow LLC. All Rights Reserved May 15, 2017 The APL+Win v17.0.03 release is available and recommended for all current APL+Win subscribers. To obtain this release,

More information

Preproofer 740/780/940/980. Installation and Configuration Preproofer Software

Preproofer 740/780/940/980. Installation and Configuration Preproofer Software Preproofer 740/780/940/980 Installation and Configuration Preproofer Software Digital Information Ltd. Technoparkstrasse CH-8005 Zürich Copyright by Digital Information Ltd. 2006 This manual is proprietry

More information

Software Release Notice Version 7.6 Build 356

Software Release Notice Version 7.6 Build 356 msxfax xp for Microsoft Exchange Server and SMTP based messaging systems 1 Software Release Notice Version 7.6 Build 356 25 January 2010 with commitment comes success Software version msxfax 7.6 Build

More information

Press-Ready Cookbook Page Guidelines

Press-Ready Cookbook Page Guidelines Press-Ready Cookbook Page Guidelines table of contents These instructions are for all pages of your cookbook: Title Page, Special Pages, Table of Contents, Dividers, Recipe Pages, etc. WHAT IS PRESS-READY?

More information

AutoPagex Plug-in User s Manual

AutoPagex Plug-in User s Manual Page 1 of 32 AutoPagex Plug-in User s Manual Version 1.1 Page 2 of 32 What is AutoPagex plug-in? AutoPagex is an advanced plug-in for Adobe Acrobat and Adobe Acrobat Professional software. It is designed

More information

Interaction Fax Printed help. PureConnect powered by Customer Interaction Center (CIC) 2018 R1. Abstract

Interaction Fax Printed help. PureConnect powered by Customer Interaction Center (CIC) 2018 R1. Abstract Interaction Fax Printed help PureConnect powered by Customer Interaction Center (CIC) 2018 R1 Last updated October 31, 2017 Abstract This document is a printable version of the Interaction Fax online Help.

More information

Supported OS Windows XP, Windows 2003/2008 Server, Windows Vista, Windows 7, Windows 7 64bit

Supported OS Windows XP, Windows 2003/2008 Server, Windows Vista, Windows 7, Windows 7 64bit 1. Introduction 1-1. About ITF Finder ITF Finder is a specialized application to manage ITF format files efficiently, by displaying ITF format file on the accessible disks (including network) that is saved

More information

CSE 4/521 Introduction to Operating Systems. Lecture 29 Windows 7 (History, Design Principles, System Components, Programmer Interface) Summer 2018

CSE 4/521 Introduction to Operating Systems. Lecture 29 Windows 7 (History, Design Principles, System Components, Programmer Interface) Summer 2018 CSE 4/521 Introduction to Operating Systems Lecture 29 Windows 7 (History, Design Principles, System Components, Programmer Interface) Summer 2018 Overview Objective: To explore the principles upon which

More information

KYOCERA Net Viewer User Guide

KYOCERA Net Viewer User Guide KYOCERA Net Viewer User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

Teamcenter Working with 2D Images. Publication Number PLM00122

Teamcenter Working with 2D Images. Publication Number PLM00122 Teamcenter 10.1 Working with 2D Images Publication Number PLM00122 Proprietary and restricted rights notice This software and related documentation are proprietary to Siemens Product Lifecycle Management

More information

Info Input Express Limited Edition

Info Input Express Limited Edition Info Input Express Limited Edition User s Guide A-61891 Table of Contents Using Info Input Express to Create and Retrieve Documents... 7 Compatibility... 7 Contents of this Guide... 7 Terminology... 9

More information

docalpha Scanning Station

docalpha Scanning Station Contents 1. docalpha Scan Station Overview... 2 2. What's New in docalpha Scan Station 4.5... 3 3. Working with Scan Station... 4 3.1 Starting the Scan Station... 5 3.2 Creating a New Batch... 8 3.3 Retrieving

More information

LABEL MATRIX TEKLYNX V E R S I O N 8 Q U I C K S T A R T G U I D E

LABEL MATRIX TEKLYNX V E R S I O N 8 Q U I C K S T A R T G U I D E TEKLYNX LABEL MATRIX V E R S I O N 8 Q U I C K S T A R T G U I D E Note Quick Start Guide The information in this manual is not binding and may be modified without prior notice. Supply of the software

More information

Road Map for Essential Studio 2010 Volume 1

Road Map for Essential Studio 2010 Volume 1 Road Map for Essential Studio 2010 Volume 1 Essential Studio User Interface Edition... 4 Essential Grid... 4 Essential Grid ASP.NET... 4 Essential Grid ASP.NET MVC... 4 Essential Grid Windows Forms...

More information

Acrobat X Professional

Acrobat X Professional Acrobat X Professional Toolbar Well Page Navigations/Page Indicator Buttons for paging through document Scroll Bar/box page indicator appears when using the scroll button to navigate. When you release

More information

Multimedia Technology CHAPTER 4. Video and Animation

Multimedia Technology CHAPTER 4. Video and Animation CHAPTER 4 Video and Animation - Both video and animation give us a sense of motion. They exploit some properties of human eye s ability of viewing pictures. - Motion video is the element of multimedia

More information

USER GUIDE MADCAP CAPTURE 7. Getting Started

USER GUIDE MADCAP CAPTURE 7. Getting Started USER GUIDE MADCAP CAPTURE 7 Getting Started Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Bi-Level Image Compression

Bi-Level Image Compression Bi-Level Image Compression EECE 545: Data Compression by Dave Tompkins The University of British Columbia http://spmg.ece.ubc.ca Overview Introduction to Bi-Level Image Compression Existing Facsimile Standards:

More information

Introduction.

Introduction. Product information Image Systems AB Main office: Ågatan 40, SE-582 22 Linköping Phone +46 13 200 100, fax +46 13 200 150 info@imagesystems.se, Introduction Motion is the world leading software for advanced

More information

Adobe Illustrator CS Design Professional GETTING STARTED WITH ILLUSTRATOR

Adobe Illustrator CS Design Professional GETTING STARTED WITH ILLUSTRATOR Adobe Illustrator CS Design Professional GETTING STARTED WITH ILLUSTRATOR Chapter Lessons Create a new document Explore the Illustrator window Create basic shapes Apply fill and stroke colors to objects

More information

Open-Xchange Documents Minor Release v Feature Overview V1.0

Open-Xchange Documents Minor Release v Feature Overview V1.0 Open-Xchange Documents Minor Release v7.10.1 Feature Overview V1.0 1 OX Documents v7.10.1... 3 1.1 Intention of this Document... 3 1.2 Key Benefits of OX Documents v7.10.1... 3 2 OX Documents Viewer...

More information

TIFF Image Printer. Version User Guide. PEERNET Inc.

TIFF Image Printer. Version User Guide. PEERNET Inc. Version 11.0 User Guide PEERNET Inc. Copyright 1997-2018 Updated: 3/1/2018 Table of Contents Welcome... to 1... 2 Legal Notices... 3 System Requirements... 4 Typographic Conventions Activating... 5...

More information

CoSign Quick Guide Virtual Signing with CoSign

CoSign Quick Guide Virtual Signing with CoSign CoSign Quick Guide Virtual Signing with CoSign Table of Contents Launching OmniSign 1 Launching OmniSign with a PDF file 1 Launching OmniSign with a non-pdf file 1 Getting Started with OmniSign 2 Creating

More information

EMC ApplicationXtender Web Access

EMC ApplicationXtender Web Access EMC ApplicationXtender Web Access Version 8.0 User Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 1994 2015 EMC Corporation. All

More information

VirtualViewer V13.6 Java User's Guide

VirtualViewer V13.6 Java User's Guide VirtualViewer V13.6 Java User's Guide Note: An online version of this manual contains information on the latest updates to VirtualViewer. To find the most recent version of this manual, please visit the

More information

1 Filter the search by entering search criteria; 2 Enter a range of dates in which to search. 3 You can filter the search by modality type.

1 Filter the search by entering search criteria; 2 Enter a range of dates in which to search. 3 You can filter the search by modality type. efilm / Managing Studies STUDY MANAGER How to use the study manager The Study Manager can search for four different types of exams: Local Exams: studies stored on your workstation s hard drive. Remote

More information

QuickScan Pro Release Notes. Contents. Version 4.5

QuickScan Pro Release Notes. Contents. Version 4.5 QuickScan Pro Release Notes Version 4.5 Copyright 2006 EMC Corporation. All rights reserved. No part of this document may be reproduced, photocopied, stored on a computer system or transmitted without

More information

Community Medical Centers EMR 10.1 Physician Reference

Community Medical Centers EMR 10.1 Physician Reference Community Medical Centers EMR 10.1 Physician Reference Contents: Section Page Number 1. Logging On...1 2. Completing Signature Deficiencies...2 3. AutoSign...4 4. Completing Dictation Deficiencies...4

More information

Virtual MODELA USER'S MANUAL

Virtual MODELA USER'S MANUAL Virtual MODELA USER'S MANUAL Virtual MODELA is a program that simulates the movement of the tool on the screen. Contents Contents Part 1 Introduction 1-1 System Requirements... 4 1-2 Overview of Virtual

More information

Warrior Control Panel

Warrior Control Panel Warrior Control Panel The Control Panel sets certain global characteristics of the Warrior system. The Warrior Control Panel is started from its icon in the Warrior program group or via the Windows Program

More information

UNIVERSITY OF CALICUT SCHOOL OF DISTANCE EDUCATION BGDA (UG SDE) IV SEMESTER. CORE COURSE Modeling & Animation QUESTION BANK

UNIVERSITY OF CALICUT SCHOOL OF DISTANCE EDUCATION BGDA (UG SDE) IV SEMESTER. CORE COURSE Modeling & Animation QUESTION BANK UNIVERSITY OF CALICUT SCHOOL OF DISTANCE EDUCATION BGDA (UG SDE) IV SEMESTER CORE COURSE Modeling & Animation Prepared by Noushad N Head, Department of Multimedia Majlis Arts and Science College Puramannur

More information

Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics

Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics SAS2166-2018 Tips and Techniques for Designing the Perfect Layout with SAS Visual Analytics Ryan Norris and Brian Young, SAS Institute Inc., Cary, NC ABSTRACT Do you want to create better reports but find

More information

DATACAD LLC. Software for A/E/C Professionals. Using o2c TECHNICAL BULLETIN. What is o2c? Installing the o2c Player. Functions of the o2c Player

DATACAD LLC. Software for A/E/C Professionals. Using o2c TECHNICAL BULLETIN. What is o2c? Installing the o2c Player. Functions of the o2c Player DATACAD LLC TECHNICAL BULLETIN Software for A/E/C Professionals Using o2c What is o2c? o2c displays three-dimensional, freely movable objects. Developed by mb Software, o2c depicts 3D objects as photo-realistic

More information