Use ActiveX controls for Internet Explorer 11 - Microsoft Support
ImageGear for ActiveX Free Download
If you are looking for a comprehensive and versatile tool for image processing and document handling, you might want to check out ImageGear for ActiveX. This product is a powerful SDK that enables you to create high-performance custom imaging applications with hundreds of functions and features. In this article, we will show you what ImageGear for ActiveX is, why you should use it, how to download and install it, how to use it, what are the system requirements and licensing options, and where to find more resources and support. By the end of this article, you will have a clear idea of how ImageGear for ActiveX can help you with your image or document needs.
ImageGear for ActiveX Free Download
What is ImageGear for ActiveX?
ImageGear for ActiveX is an image processing SDK that provides you with everything you need to work with images and documents in your applications. It supports over 100 different formats, including JPG, JPEG2000, PNG, TIFF, PDF, SVG, CAD (DWG, DGN, etc), medical DICOM (DCM), and many more. It also has integrated support for many document processing and acquisition capabilities such as OCR to PDF, OCR to Word, file compression, document cleanup, image processing, printing, scanning, and barcode recognition. You can use ImageGear for ActiveX to create applications for Windows development using DLLs or shared libraries for Linux platforms.
Why use ImageGear for ActiveX?
There are many benefits and advantages of using ImageGear for ActiveX for your image or document needs. Here are some of them:
It saves you time and money by providing you with a single source for all imaging functionality. You don't have to spend hours searching for different libraries or tools that may not be compatible or reliable.
It allows you to quickly integrate document handling functions such as image conversion, metadata handling, creation, editing, annotations, and viewing to your applications. You can modify the user-friendly sample source code provided by the SDK to get started.
It enables you to handle large images up to 2 GB without overloading system resources. You can load, save, display, and process gigabyte-sized images with ease.
It supports Unicode text strings in vector image files such as DWG, DXF, DWF, and SVG. You can load, display, and save text strings that use fonts embedded in SVG files or fonts installed on your system.
It offers high-quality image processing techniques and advanced algorithms that enhance your images. You can apply functions such as compression, OCR, conversion, scanning, editing, annotation, color image processing, and more.
It provides world-class technical support that is available 24/7. You can contact the customer service team anytime you have questions or issues with the SDK.
How to download and install ImageGear for ActiveX?
To download and install ImageGear for ActiveX on your system, you need to follow these steps:Here is the continuation of the article:
How to download and install ImageGear for ActiveX?
To download and install ImageGear for ActiveX on your system, you need to follow these steps:
Visit the official website of Accusoft, the developer of ImageGear for ActiveX, at www.accusoft.com.
Go to the Products section and select ImageGear for ActiveX from the list of available products.
Click on the Download button and fill out the form with your name, email, company name, and phone number. You will also need to agree to the terms and conditions of the software license agreement.
After submitting the form, you will receive an email with a link to download the installer file. The file size is about 114 MB.
Run the installer file and follow the instructions on the screen. You can choose the product to install, either ImageGear Professional or ImageGear MD, depending on your needs. You can also select the components and features that you want to include in your installation.
After the installation is complete, you will need to activate your product using a license key. You can obtain a license key by contacting Accusoft customer service or by purchasing a toolkit license from their website.
Congratulations! You have successfully downloaded and installed ImageGear for ActiveX on your system. You are now ready to use it for your image or document processing applications.
How to use ImageGear for ActiveX?
ImageGear for ActiveX is a powerful SDK that provides you with hundreds of functions and features for image or document processing. You can use it to create custom imaging applications for Windows development using DLLs or ActiveX and shared libraries for Linux platforms. In this section, we will show you some examples and tutorials of how to use ImageGear for ActiveX for common tasks and operations.
Loading, saving, and converting images
One of the basic functions of ImageGear for ActiveX is to load, save, and convert images between different formats. ImageGear for ActiveX supports over 100 different formats, including JPG, JPEG2000, PNG, TIFF, PDF, SVG, CAD (DWG, DGN, etc), medical DICOM (DCM), and many more. It also has integrated support for metadata handling, such as EXIF, IPTC, XMP, and GPS data.
To load an image from a file or a stream, you can use the IG_load_file or IG_load_stream functions. These functions return an IG_image object that represents the loaded image. You can then manipulate this object using various methods and properties.
To save an image to a file or a stream, you can use the IG_save_file or IG_save_stream functions. These functions take an IG_image object as an input and save it to the specified format and location. You can also specify various options and parameters for saving, such as compression level, quality factor, resolution, color depth, etc.
To convert an image from one format to another, you can use the IG_convert_image function. This function takes an IG_image object as an input and returns a new IG_image object with the converted format. You can also specify various options and parameters for conversion, such as color space conversion, dithering, scaling, rotation, etc.
The following code snippet shows how to load a JPG image from a file, convert it to PNG format with 50% compression level, and save it to another file using ImageGear for ActiveX:
' Declare variables Dim igImage As IG_image Dim igOptions As IG_save_options ' Create an instance of IG_image Set igImage = New IG_image ' Load a JPG image from a file igImage.load_file "C:\input.jpg" ' Create an instance of IG_save_options Set igOptions = New IG_save_options ' Set the format to PNG igOptions.format = IG_FORMAT_PNG ' Set the compression level to 50% igOptions.compression_level = 50 ' Save the image as PNG with 50% compression level igImage.save_file "C:\output.png", igOptions ' Release objects Set igImage = Nothing Set igOptions = Nothing
Scanning, printing, and OCR
Another important function of ImageGear for ActiveX is to scan Here is the continuation of the article:
Scanning, printing, and OCR
Another important function of ImageGear for ActiveX is to scan, print, and recognize text from images and documents. ImageGear for ActiveX has integrated support for many document acquisition and output capabilities such as scanning, printing, OCR to PDF, OCR to Word, file compression, and document cleanup.
To scan an image from a scanner or a camera, you can use the IG_scan function. This function returns an IG_image object that represents the scanned image. You can then manipulate this object using various methods and properties.
To print an image to a printer or a file, you can use the IG_print function. This function takes an IG_image object as an input and prints it to the specified device or location. You can also specify various options and parameters for printing, such as printer name, paper size, orientation, margins, etc.
To recognize text from an image or a document, you can use the IG_OCR function. This function takes an IG_image object as an input and returns an IG_OCR_result object that contains the recognized text and its attributes. You can then save the recognized text to a PDF or a Word file using the IG_OCR_save_pdf or IG_OCR_save_word functions.
The following code snippet shows how to scan an image from a scanner, recognize text from it using OCR, and save it to a PDF file using ImageGear for ActiveX:
' Declare variables Dim igImage As IG_image Dim igOCR As IG_OCR Dim igOCRResult As IG_OCR_result ' Create an instance of IG_image Set igImage = New IG_image ' Scan an image from a scanner igImage.scan ' Create an instance of IG_OCR Set igOCR = New IG_OCR ' Recognize text from the image using OCR Set igOCRResult = igOCR.OCR(igImage) ' Save the recognized text to a PDF file igOCRResult.save_pdf "C:\output.pdf" ' Release objects Set igImage = Nothing Set igOCR = Nothing Set igOCRResult = Nothing
Editing, annotating, and processing images
A third function of ImageGear for ActiveX is to edit, annotate, and process images and documents. ImageGear for ActiveX has integrated support for many image manipulation and enhancement capabilities such as cropping, resizing, rotating, flipping, skewing, mirroring, adjusting brightness, contrast, hue, saturation, gamma, sharpening, blurring, noise reduction, edge detection, red-eye removal, watermarking, and more.
To edit an image or a document, you can use the IG_edit function. This function takes an IG_image object as an input and returns a new IG_image object with the edited content. You can also specify various options and parameters for editing, such as crop area, resize mode, rotation angle, flip direction, skew angle, mirror axis, etc.
To annotate an image or a document, you can use the IG_annotate function. This function takes an IG_image object as an input and returns a new IG_image object with the added annotations. You can also specify various options and parameters for annotating, such as annotation type (text, Here is the continuation of the article:
Editing, annotating, and processing images
A third function of ImageGear for ActiveX is to edit, annotate, and process images and documents. ImageGear for ActiveX has integrated support for many image manipulation and enhancement capabilities such as cropping, resizing, rotating, flipping, skewing, mirroring, adjusting brightness, contrast, hue, saturation, gamma, sharpening, blurring, noise reduction, edge detection, red-eye removal, watermarking, and more.
To edit an image or a document, you can use the IG_edit function. This function takes an IG_image object as an input and returns a new IG_image object with the edited content. You can also specify various options and parameters for editing, such as crop area, resize mode, rotation angle, flip direction, skew angle, mirror axis, etc.
To annotate an image or a document, you can use the IG_annotate function. This function takes an IG_image object as an input and returns a new IG_image object with the added annotations. You can also specify various options and parameters for annotating, such as annotation type (text, line, rectangle, ellipse, polygon, etc), annotation color, font size, transparency, rotation angle, etc.
To process an image or a document, you can use the IG_process function. This function takes an IG_image object as an input and returns a new IG_image object with the processed content. You can also specify various options and parameters for processing, such as brightness level, contrast level, hue level, saturation level, gamma level, sharpening level, blurring level, noise reduction level, edge detection level, red-eye removal level, watermark text or image file name etc.
The following code snippet shows how to edit an image by cropping it to a specific area using ImageGear for ActiveX:
' Declare variables Dim igImage As IG_image Dim igEditOptions As IG_edit_options ' Create an instance of IG_image Set igImage = New IG_image ' Load an image from a file igImage.load_file "C:\input.jpg" ' Create an instance of IG_edit_options Set igEditOptions = New IG_edit_options ' Set the edit mode to crop igEditOptions.mode = IG_EDIT_CROP ' Set the crop area to (100, 100) - (300 ,300) igEditOptions.crop_left = 100 igEditOptions.crop_top = 100 igEditOptions.crop_right = 300 igEditOptions.crop_bottom = 300 ' Edit the image by cropping it to the specified area igImage.edit igEditOptions ' Save the edited image to a file igImage.save_file "C:\output.jpg" ' Release objects Set igImage = Nothing Set igEditOptions = Nothing
Displaying and viewing images
A fourth function of ImageGear for ActiveX is to display and view images and documents in your applications. ImageGear for ActiveX has integrated support for creating user interfaces and controls for image display such as thumbnails, Here is the continuation of the article:
Displaying and viewing images
A fourth function of ImageGear for ActiveX is to display and view images and documents in your applications. ImageGear for ActiveX has integrated support for creating user interfaces and controls for image display such as thumbnails, zoom, pan, scroll, rotate, flip, etc. You can also customize the appearance and behavior of these controls to suit your needs.
To display an image or a document in your application, you can use the IG_display function. This function takes an IG_image object as an input and displays it in a window or a control. You can also specify various options and parameters for display, such as display mode (fit, stretch, center, etc), background color, border style, etc.
To view an image or a document in your application, you can use the IG_view function. This function takes an IG_image object as an input and creates a viewer object that allows you to interact with the image or document. You can then use various methods and properties of the viewer object to perform actions such as zooming, panning, scrolling, rotating, flipping, etc.
The following code snippet shows how to display an image in a picture box control using ImageGear for ActiveX:
' Declare variables Dim igImage As IG_image Dim igDisplayOptions As IG_display_options ' Create an instance of IG_image Set igImage = New IG_image ' Load an image from a file igImage.load_file "C:\input.jpg" ' Create an instance of IG_display_options Set igDisplayOptions = New IG_display_options ' Set the display mode to fit igDisplayOptions.mode = IG_DISPLAY_FIT ' Display the image in a picture box control igImage.display PictureBox1.hWnd, igDisplayOptions ' Release objects Set igImage = Nothing Set igDisplayOptions = Nothing
What are the system requirements and licensing options for ImageGear for ActiveX?
Before you download and install ImageGear for ActiveX on your system, you need to make sure that your system meets the minimum requirements for running the SDK. You also need to choose the appropriate licensing option for your needs.
System requirements
The minimum system requirements for running ImageGear for ActiveX are as follows:
Operating system: Windows 7 or later (32-bit or 64-bit), Linux (32-bit or 64-bit)
Processor: Pentium 4 or equivalent
Memory: 512 MB RAM or more
Disk space: 500 MB free disk space or more
Development environment: Visual Studio 2010 or later (for Windows), GCC 4.8 or later (for Linux)
Other: Scanner or camera device (optional), printer device (optional)
Licensing options
The licensing options for using ImageGear for ActiveX are as follows:
Toolkit license: This is a one-time purchase that allows you to use ImageGear for ActiveX on one development machine and distribute unlimited runtime licenses to your end-users. The price of a toolkit license depends on the product edition you choose (Professional or MD) and the number of platforms you want to support (Windows or Linux). You can also purchase optional add-ons such as OCR languages, barcode types, etc.
Maintenance license: This is an annual subscription that allows you to receive technical support and product updates for ImageGear for ActiveX. The price of a maintenance license depends on the product edition you choose (Professional or MD) and the number of platforms you want to support (Windows or Linux). You can also purchase optional add-ons such as OCR languages, barcode types, etc.
Royalty license: This is a per-unit fee that allows you to distribute runtime licenses to your end-users without purchasing a toolkit license. The price of a royalty license depends on the product edition you choose (Professional or MD) and the number of platforms you want to support (Windows or Linux). You can also purchase optional add-ons such as OCR languages, barcode types, etc.
Where to find more resources and support for ImageGear for ActiveX?
If you want to learn more about ImageGear for ActiveX and how to use it effectively, you can visit the following resources and support channels:
Documentation: This is the official online documentation of ImageGear for ActiveX that contains detailed information about the product features, functions, methods Here is the continuation of the article:
Where to find more resources and support for ImageGear for ActiveX?
If you want to learn more about ImageGear for ActiveX and how to use it effectively, you can visit the following resources and support channels:
Documentation: This is the official online documentation of ImageGear for ActiveX that contains detailed information about the product features, functions, methods, properties, samples, and tutorials. You can access it from the Accusoft website or from the installation folder of ImageGear for ActiveX.
Forums: This is the online community of ImageGear for ActiveX users and developers where you can ask questions, share tips, report bugs, request features, and get feedback from other users and Accusoft staff. You can join the forums by registering on the Accusoft website.
Customer service: This is the dedicated support team of Accusoft that is available 24/7 to help you with any issues or inquiries related to ImageGear for ActiveX. You can contact them by phone, email, or chat from the Accusoft website.
Conclusion
In this article, we have shown you what ImageGear for ActiveX is, why you should use it, how to download and install it, how to use it, what are the system requirements and licensing options, and where to find more resources and support. We hope that this article has helped you understand how ImageGear for ActiveX can help you with your image or document processing needs.
If you are interested in trying out ImageGear for ActiveX for yourself, you can download a free trial version from the Accusoft website. You can also purchase