Where can I find straight forward installation instructions and user guide for ImageMagick COM+ and ASP.
Any help gratefully received.
Advice for Beginner
Re: Advice for Beginner
Ditto. I'm still trying to find a sample code out there that just shows how to properly access the Imagemagick object in ASP. Not even tech support who hosts it has a sample (which is ok since they don't need to).
Re: Advice for Beginner
Hye.
There is no samples, because it's just like the VBS samples.
Here is a basic sample to create and show PDF file on the file
Set img = CreateObject("ImageMagickObject.MagickImage.1")
There is no samples, because it's just like the VBS samples.
Here is a basic sample to create and show PDF file on the file
Set img = CreateObject("ImageMagickObject.MagickImage.1")
Code: Select all
Dim myArray(0)
myArray(0)="PDF:"
Response.contentType="APPLICATIOn/PDF"
l=img.convert ("logo:","-resize","550X550",myArray)
response.write l
response.binaryWrite myArray
RESPONSE.END