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?
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
> 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 $_ }
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)
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