Search results for "imaging/imagegear/news_barcode-xpress-mobile-for-ios-released"

Press Release

Accusoft Upgrades Accusoft PDF Viewer with Enhanced Professional Version

On August 3, 2021, Accusoft announced the release of the paid Professional version of Accusoft PDF Viewer. Initially released in March of 2021, the Standard version of Accusoft PDF Viewer is a free-to-use, lightweight JavaScript PDF library featuring a responsive UI for out-of-the-box mobile support. The new Professional version adds enhanced PDF tools and document […]

Technical FAQ

How do I acquire individual pages using ISIS Xpress .NET?

Question The ISIS Xpress BasicCapabilities and AdvancedCapabilities samples demonstrate a number of different ways to acquire images and save a batch of them to file, but how can I get a single image as soon as it gets acquired by the scanner? Answer During the ISIS Xpress Scanned() event, you can get the currently acquired […]

Technical FAQ

How do I acquire individual pages using ISIS Xpress .NET?

Question The ISIS Xpress BasicCapabilities and AdvancedCapabilities samples demonstrate a number of different ways to acquire images and save a batch of them to file, but how can I get a single image as soon as it gets acquired by the scanner? Answer During the ISIS Xpress Scanned() event, you can get the currently acquired […]

E-Guide

Barcode eGuide, Volume 1: The Impact on Healthcare

Blog Post

Why You Should Embed PDFs in HTML for a Better Viewing Experience

As digital processes become more commonplace, it’s more important than ever for organizations to have the tools in place to manage electronic documents effectively. The evolution of PDF viewing technology continues to provide new levels of flexibility for software applications. Now that HTML5 is capable of rendering PDF data within a conventional browser, developers are […]

Blog Post

Expand Your PDF Capabilities with JavaScript PDF Annotation Tools

Ever since Mozilla’s development of the open-source PDF.js library in 2011, many developers have been quick to utilize the JavaScript-based toolkit to quickly integrate PDF viewing capabilities into their applications. Given the severe limitations and security concerns associated with external reader plug-ins, it’s easy to see why the open source library was so appealing.  Unfortunately, […]

Technical FAQ

Why do I get a “Non-supported resolution” exception when trying to import a page into ImageGear's recognition engine?

Question I encounter an Unhandled Exception error, as shown below, in ImageGear when trying to load a page into the recognition engine. Error Message: An unhandled exception of type ‘ImageGear.Core.ImGearException’ occurred in ImageGear22.Core.dll Additional information: IMG_DPI_WARN (0x4C711): Non-supported resolution. Value1:0x4C711 What is causing this and how can I fix it? Answer This is probably because […]

Technical FAQ

In ImageGear, why am I running into AccessViolationExceptions when I run my application in parallel?

Question In ImageGear, why am I running into AccessViolationExceptions when I run my application in parallel? Answer This issue can sometimes occur if ImGearPDF is being initialized earlier in the application. In order to use ImGearPDF in a multi-threaded program, it needs to be initialized on a per-thread basis. For example, if you have something […]

Technical FAQ

How do I remove XMP Data from my image using ImageGear .NET?

Question How do I remove XMP Data from my image using ImageGear .NET? Answer When removing XMP data in ImageGear, the simplest way to do this is to set the XMP Metadata node to null, like so: ImGearSimplifiedMetadata.Initialize(); doc.Metadata.XMP = new ImGearXMPMetadataRoot(); Or, you can traverse through the metadata tree and remove each node from […]

Technical FAQ

Why am I getting SEHException from ImageGear .NET when attempting to load XFA PDF?

Question ImageGear .NET v24.6 added support for viewing PDF documents with XFA content. I’m using v24.8, and upon trying to open an XFA PDF, I get a SEHException for some reason… Why might this be happening? Answer One reason could be because you need to execute the following lines after initializing the PDF component, and […]

Technical FAQ

How can I re-order PDF pages using ImageGear .NET?

Question I want to re-arrange the page order of a PDF. I’ve tried the following… var page = imGearDocument.Pages[indx].Clone(); imGearDocument.Pages.RemoveAt(indx); //// Exception: "One or more pages are in use and could not be deleted." imGearDocument.Pages.Insert(newIndx, page); But an exception is thrown. Somehow, even though the page was cloned, the exception states that the page can’t […]

Technical FAQ

How do I remove XMP Data from my image using ImageGear .NET?

Question How do I remove XMP Data from my image using ImageGear .NET? Answer When removing XMP data in ImageGear, the simplest way to do this is to set the XMP Metadata node to null, like so: ImGearSimplifiedMetadata.Initialize(); doc.Metadata.XMP = new ImGearXMPMetadataRoot(); Or, you can traverse through the metadata tree and remove each node from […]