Search found 2 matches

by jbc
2011-01-03T17:32:13-07:00
Forum: Users
Topic: [SOLVED] Classic ASP: Can IM load from a binary variable?
Replies: 2
Views: 23103

Re: Classic ASP: Can IM load from a binary variable?

Works perfectly, thanks!

For other folks with this question, I did it this way:

Set objIM = Server.CreateObject("ImageMagickObject.MagickImage.1")
strOutput = objIM.Convert("http://www.somewebsite.com/someimage.jpg","c:\mypath\someimage.jpg")
Response.Write strOutput
Set objIM = Nothing

JBC
by jbc
2011-01-03T16:36:29-07:00
Forum: Users
Topic: [SOLVED] Classic ASP: Can IM load from a binary variable?
Replies: 2
Views: 23103

[SOLVED] Classic ASP: Can IM load from a binary variable?

Hi,

I am successfully using IM with classic asp with outstanding results.

Now, I would like to pass an image to IM in the form of a variable/object instead of a file name.

For example, instead of this: convert rose.jpg rose.png

Can I do this somehow?

1. get a remote image via http [this is done ...