We are using Image Magick COM object in application to convert TIFF images into PDF Format. This application is deployed on Windows Server 2003 OS and is developed in Classic ASP and uses VBScript.
We are using following code snippet:
Code: Select all
Set image = CreateObject("ImageMagickObject.MagickImage.1")
stOriginal = "<location of tiff>"
stNew = "<location of PDF>"
image.convert stOriginal, stNew
Set image = Nothing
1. Installer File - ImageMagick-7.0.6-3-Q8-x86-dll.exe
2. Installation Options Selected -
- Create a Desktop Icon
Add Application Directory to your system path
Install FFmpeg
Install legacy utilities
Install development headers and libraries for C and C++
Install ImageMagickObject OLE Control for VBScript, Visual Basic, and WSH
We would like to check following:
- 1. If there are any configuration changes required to improve the performance of Image Magick
2. If there are any suggestions based on above code snippet
3. If there is any paid version of Image Magick with performance fixes and which can be used in our application
4. Any pointers to other 3rd party utilities which can be used for this purpose