|
Home > Archive > IIS ASP > May 2004 > Imagemagick & ASP
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| Jim Red 2004-05-18, 12:43 pm |
| Hello
I've just installed the OLE Object from Imagemagick.
It works. But now, I want to get some informations about an image trough
the identify command.
I've tried
SET oImg = Server.CreateObject("ImageMagickObject.MagickImage.1")
vReturn = oImg.Identify("c:\temp\logo.jpg")
There is no error, but vReturn is always empty?
What did I wrong?
Cheers
Jim
| |
| Roger 2004-05-30, 11:54 am |
| Jim Red <jimred73@hotmail.com> wrote in message news:<40aa15eb$1_2@news.bluewin.ch>...
> Hello
>
> I've just installed the OLE Object from Imagemagick.
> It works. But now, I want to get some informations about an image trough
> the identify command.
>
> I've tried
>
> SET oImg = Server.CreateObject("ImageMagickObject.MagickImage.1")
> vReturn = oImg.Identify("c:\temp\logo.jpg")
>
vReturn = oImg.identify("-format","%m%hx%w","c:\temp\logo.jpg"))
> There is no error, but vReturn is always empty?
> What did I wrong?
>
> Cheers
>
> Jim
|
|
|
|
|