Advice for Beginner

ImageMagickObject is a Windows COM+ interface to ImageMagick. COM+, Visual Basic, and Delphi users should post to this discussion group.
Post Reply
Andy

Advice for Beginner

Post by Andy »

Where can I find straight forward installation instructions and user guide for ImageMagick COM+ and ASP.

Any help gratefully received.
vetrijar

Re: Advice for Beginner

Post 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).
DannyGM

Re: Advice for Beginner

Post 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
Post Reply