Re: question about Image::Magick

2007-08-22 Thread Gunnar Hjalmarsson
qilin wrote: I am trying to Annotate a string on an image with Image::Magick question 1: how can i center the string shown on that image ? question 2: how can i get the real image size of this string only which is shown on parent image? Where have you looked so far to try figuring it out?

question about Image::Magick

2007-08-22 Thread qilin
I am trying to Annotate a string on an image with Image::Magick question 1: how can i center the string shown on that image ? question 2: how can i get the real image size of this string only which is shown on parent image? not sure if i address my questions clearly.. but please help. -- T

Re: About Image

2002-06-11 Thread Jenda Krynicky
> I have the following code, which can port 1 image to browser, > when I use Sambar Server for Win32 System. > > > #!C:\perl\bin\perl.exe > > print "Content-type: image/jpeg\r\n\r\n"; > $| = 1; > open (FILE, 'C:/my/param/image.jpg'); > binmode (FILE) ; binmode(STDOUT); > while () { print $_ }

About Image

2002-06-11 Thread Connie Chan
Hi all, I have the following code, which can port 1 image to browser, when I use Sambar Server for Win32 System. #!C:\perl\bin\perl.exe print "Content-type: image/jpeg\r\n\r\n"; $| = 1; open (FILE, 'C:/my/param/image.jpg'); binmode (FILE) ; binmode(STDOUT); while () { print $_ } close (FILE)

Hi, my second question is about image files

2001-06-17 Thread Chan Jennifer
Hey folks, Me again =) I've using a script like this. print "Content-Type:image/gif\n\n"; open (IMG, "image.gif"); binmode(IMG); while (read IMG,$buffer,1) { print $buffer } I don't know why, the graphic output sounds like abstracted together..., means incorrect output anyway, but I've able t