- 发帖
- 53388
- 今日发帖
- 最后登录
- 2024-11-06
|
ImageGear is a huge library for image processing in .NET. NET programmers can take advantage of this library’s extensive capabilities in their applications. With this library you can open a variety of images in more than 100 different formats, apply a variety of effects and image processing to it. This library has many classes and methods that allow you to process any kind of images you want. Also, if you are writing a program that needs to process the text characters of the scanned files, using the OCR Optimized Engine, you can save a lot of duplicates. It is also possible to read barcodes as well as medical images stored in DICOM format.One of the benefits of this library is its readable and well-coded coding methods and functions. The precise documentation of this library has made it possible to find and use the right amount of work from the huge volume of library functions. Naming functions, parameters, appropriate return types are all well chosen so the end user can easily use them. Using ImageGear you can implement a cloud scanner, which automatically sends your images to the cloud servers after processing and is used for other purposes. This library can be used in ASP.NET projects and has special features for web pages. The need to use these libraries becomes more apparent when it comes to enhancing reliability and error-free programming and at the same time reducing development time. Pictures Installation guide Registry software using the serial in the Serial.txt file.Example for licensing in code:public partial class Form1: Form { public Form1 () { InitializeComponent (); // Create an ImagXpress object for licensing and passing in the IContainer of the form Accusoft.ImagXpressSdk.ImagXpress imagXpress1 = new Accusoft.ImagXpressSdk.ImagXpress (this.components); // *** The SetSolutionName, SetSolutionKey and possibly the SetOEMLicenseKey methods must be called to distribute the runtime *** imagXpress1.Licensing.SetSolutionName (“YourSolutionName”); imagXpress1.Licensing.SetSolutionKey (12345,12345,12345,12345); imagXpress1.Licensing.SetOEMLicenseKey (“1.0.AStringForOEMLicensingContactAccusoftSalesForMoreInformation …”);// Create an ImageXView object and pass it into the ImagXpress workspace component. Accusoft.ImagXpressSdk.ImageXView imageXView1 = new Accusoft.ImagXpressSdk.ImageXView (imagXpress1); this.Controls.Add (imageXView1); } }for version 23:After patching product version in assembly “ImageGear23.Core.dll” from 23 to 22 everything’s OK. 本部分内容设定了隐藏,需要回复后才能看到
|