Search results for "products/imagegear/igmd/platforms"

Page

Insurance

Technical FAQ

When using OCR in ImageGear .NET, is there any way to distinguish between a capital O and the number 0?

Question When using OCR in ImageGear .NET, is there any way to distinguish between a capital/uppercase letter O and the number 0? Answer Not without context or a font that makes the difference clear (such as one with a slashed 0). ImageGear will properly recognize Oliver and 1530 as containing O and 0, respectively, but […]

Technical FAQ

The deployment.log for ImageGear C & C++ Deployment Packaging Wizard is showing different output for some components since v19.3, why is this?

Question The logging for ImageGear C & C++ Deployment Packaging Wizard (DPW) is showing different output for some components since v19.3, why is this? In ImageGear C & C++ v19.2 and prior, the DPW had additional logging information for the ARTX component in its deployment.log: Deploying an application that uses the ARTXGUI library of ImageGear […]

Technical FAQ

Why do I get a "File Format Unrecognized" exception when trying to load a PDF document in ImageGear .NET?

Question Why do I get a “File Format Unrecognized” exception when trying to load a PDF document in ImageGear .NET? Answer You will need to set up your project to include PDF support if you want to work with PDF documents. Add a reference to ImageGear24.Formats.Pdf (if you’re using another version of ImageGear, make sure […]

Technical FAQ

Why do I get a "File Format Unrecognized" exception when trying to load a PDF document in ImageGear .NET?

Question Why do I get a “File Format Unrecognized” exception when trying to load a PDF document in ImageGear .NET? Answer You will need to set up your project to include PDF support if you want to work with PDF documents. Add a reference to ImageGear24.Formats.Pdf (if you’re using another version of ImageGear, make sure […]

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

Fact Sheet

ImageGear Collection: Powerful Image Processing Integration

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

Blog Post

Building the Next Generation of FinTech Investment Solutions

The world of investment technology moves almost as quickly as the investment markets themselves. Without the right FinTech tools, today’s individual investors are likely to be left behind the latest financial trends. That’s why FinTech investment solutions are once again becoming a major point of emphasis for developers looking to expand access to key financial […]

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

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