Search results for "RasterMaster .NET Programmers Guide"

Whitepaper

Decoding Barcodes in F# with Barcode Xpress

Blog Post

Barcode Xpress and ImageGear .NET

Barcode Xpress and ImageGear .NET.  Barcode Xpress is a leading barcode reading SDK. While it supports a variety of image formats, Barcode Xpress works with ImageGear to support even more obscure image formats. For example, Barcode Xpress does not support reading barcodes on PDFs. Combined with ImageGear, developers can support a myriad of image formats […]

Blog Post

How to Implement SmartZone in .NET with PowerShell

  Continuous innovation has allowed Accusoft to build sustained success over the course of three decades. Much of that innovation comes from talented developers creating novel solutions to everyday problems, many of which go on to become patented technologies that provide the company with an edge over competitors.  Others, however, are the byproduct of looking […]

Technical FAQ

Why are some documents unable to be converted to PDF/A by ImageGear .NET?

Question We are saving files to the PDF/A standard and are running into a few cases where the file cannot be saved as PDF/A by ImageGear .NET. Why is this, and how do we do it properly? Answer First, determine whether a PDF document can be converted to PDF/A by creating an ImGearPDFPreflight object from […]

Blog Post

Get Up and Running Faster with Barcode Xpress

Barcodes remain the basis for product identification and tracking, improving both operational insight and the end-user experience. From common applications in grocery stores to more advanced deployments in warehouses, legal firms, and even post-secondary schools, barcodes are the ubiquitous bridge between digital and physical environments.  As noted by Forbes, emerging pandemic pressures have precipitated the […]

Page

Products

Page

Home

Technical FAQ

How do I use a Network Drive path for Image and ART Storage in my ImageGear .NET web application?

Question How do I use a Network Drive path for Image and ART storage in my ImageGear .NET web application? Answer In an ImageGear .NET web application, you have to define the location of the images and annotations directory in the storageRootPath and artStorageRootPath configuration property. In the current version of ImageGear .NET, the storageRootPath […]

Technical FAQ

How do I use a Network Drive path for Image and ART Storage in my ImageGear .NET web application?

Question How do I use a Network Drive path for Image and ART storage in my ImageGear .NET web application? Answer In an ImageGear .NET web application, you have to define the location of the images and annotations directory in the storageRootPath and artStorageRootPath configuration property. In the current version of ImageGear .NET, the storageRootPath […]

Technical FAQ

How do I ensure temp files are deleted when closing ImageGear .NET?

Question How do I ensure temp files are deleted when closing ImageGear .NET? Answer All PDF objects are based on underlying low-level PDF objects that are not controlled by .NET resource manager and garbage collector. Because of this, each PDF object that is created from scratch should be explicitly disposed of using that object’s Dispose() […]

Technical FAQ

In ImageGear .NET, what are the feature differences between an OCR Standard license, an OCR Plus license, and an OCR Asian license?

Question For ImageGear .NET, what are the feature differences between an OCR Standard license, an OCR Plus license, and an OCR Asian license? https://www.accusoft.com/products/imagegear-collection/imagegear-dot-net/#pricing Answer ImageGear’s OCR library has three different functionality options that you can choose for your website or application. The primary difference between the three options is the output formats created by […]

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 […]