Page 1 of 1

Advice for Beginner

Posted: 2008-02-12T08:41:31-07:00
by Andy
Where can I find straight forward installation instructions and user guide for ImageMagick COM+ and ASP.

Any help gratefully received.

Re: Advice for Beginner

Posted: 2008-07-27T12:00:34-07:00
by vetrijar
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

Posted: 2009-01-05T17:23:11-07:00
by DannyGM
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")

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