Re: Image::Magick: Unicode annotations

2016-07-10 Thread Simon Reinhardt
Hi Omega, Am 10.07.2016 um 18:58 schrieb Omega -1911: > Are you certain the font you are using is supported? You are right: Using the Annotate method with "font => 'DejaVu-Sans'" made it work. Looks like their default font doesn't have proper unicode support :/ Thanks for the pointer, Simon

Re: Image::Magick: Unicode annotations

2016-07-10 Thread Omega -1911
On Sun, Jul 10, 2016 at 11:36 AM, Simon Reinhardt wrote: > Hi, > > I'm trying to place Unicode annotations on a JPEG file: > > #!/usr/bin/env perl > use 5.010; > use warnings; > use strict; > > use Image::Magick; > use utf8; > > my $image = Imag

Image::Magick: Unicode annotations

2016-07-10 Thread Simon Reinhardt
Hi, I'm trying to place Unicode annotations on a JPEG file: #!/usr/bin/env perl use 5.010; use warnings; use strict; use Image::Magick; use utf8; my $image = Image::Magick->new(); $image->Read('file.jpg'); $image->Annotate(text => 'α', pointsize=>&#x

Image magick

2010-09-27 Thread Chaitanya Yanamadala
Hai I have a tiff image which contains alpha channels of the image more that 3. So using image magick how can i able to find out how many alpha channels are there for a tiff image. Any help would be greatly appreciated. Chaitanya

Image magick

2010-08-24 Thread Chaitanya Yanamadala
Hai i am using the image magick to convert an image from 72 dpi to 300 dpi. with the corresponding image height and width. but now i need to resize this image to the corresponding height and width which are existing at 72 dpi. when i do that it is not creating the image with the exact values i

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

Re: Image/Magick - Blurring

2006-09-05 Thread Owen Cook
On Tue, 5 Sep 2006, Mike Blezien wrote: > Owen, > - Original Message - > From: "Owen Cook" <[EMAIL PROTECTED]> > To: "Mike Blezien" <[EMAIL PROTECTED]> > Cc: "Perl List" > Sent: Tuesday, September 05, 2006 7:11 PM > Subject

Re: Image/Magick - Blurring

2006-09-05 Thread Mike Blezien
Owen, - Original Message - From: "Owen Cook" <[EMAIL PROTECTED]> To: "Mike Blezien" <[EMAIL PROTECTED]> Cc: "Perl List" Sent: Tuesday, September 05, 2006 7:11 PM Subject: Re: Image/Magick - Blurring On Tue, 5 Sep 2006, Mike Blezien wr

Re: Image/Magick - Blurring

2006-09-05 Thread Owen Cook
On Tue, 5 Sep 2006, Mike Blezien wrote: > Hello, > > I'm using the Image::Magick module and need to slight Blur a PNG image. > > my $imagepng = '/path/to/image.png'; > > my $image = Image::Magick->new(); > $image->Read($imagepng); >

Image/Magick - Blurring

2006-09-05 Thread Mike Blezien
Hello, I'm using the Image::Magick module and need to slight Blur a PNG image. my $imagepng = '/path/to/image.png'; my $image = Image::Magick->new(); $image->Read($imagepng); # Now create image with Blur __END__ But haven't come up with the proper coding to b

Re: Making Image::Magick against a specific ImageMagick installation path

2006-02-20 Thread Alan_C
On Monday 20 February 2006 11:47, JupiterHost.Net wrote: > [EMAIL PROTECTED] wrote: > > On Friday 17 February 2006 10:25, JupiterHost.Net wrote: > >>Howdy list, Hi. [ . . ] > The question is if I buile Image Magick (the system library part of it) > with --prefix, how do

Re: Making Image::Magick against a specific ImageMagick installation path

2006-02-20 Thread JupiterHost.Net
[EMAIL PROTECTED] wrote: On Friday 17 February 2006 10:25, JupiterHost.Net wrote: Howdy list, When installign Image::Magick you do this: perl Makefile.PL make make install How do I tell it the path that ImageMagick is installed in sot hat its get built agianst them specifically? The docs

Re: Making Image::Magick against a specific ImageMagick installation path

2006-02-19 Thread acummingsus
On Friday 17 February 2006 10:25, JupiterHost.Net wrote: > Howdy list, > > When installign Image::Magick you do this: > > perl Makefile.PL > make > make install > > How do I tell it the path that ImageMagick is installed in sot hat its > get built agianst them

Making Image::Magick against a specific ImageMagick installation path

2006-02-17 Thread JupiterHost.Net
Howdy list, When installign Image::Magick you do this: perl Makefile.PL make make install How do I tell it the path that ImageMagick is installed in sot hat its get built agianst them specifically? The docs and comments in Makefile.PL are pretty slim :) Would this do what I'm lookin

Image::Magick Annotate

2005-12-28 Thread S Khadar
'40', text=>"FU FU ~ FU F server"); but the option Annotate is not working for me at all - rest is working fine. I am using a Redhat/i386 machine and Image::Magick 6.2.4. Should I have to do i need to install anything more or how can i display the annotate option ??? Please help !!! THANKS IN ADVANCE S K

GD::Help + Image::Magick+Linear fit

2005-12-26 Thread S Khadar
identified trendsline (my trend is line is not dynamic - it is already defined nd it is linear too) - i just want plot the result based on every *foo.dat* the user submits. So , now am doing it in a weird way am developing a static Image::Magick giff image with my trendline and initial data

Re: Image::Magick speed issue

2005-07-24 Thread Jan Eden
Hi, zentara wrote on 24.07.2005: >On Sun, 24 Jul 2005 11:22:18 +0200, [EMAIL PROTECTED] (Jan Eden) >wrote: > >>Hi, >> >>I thought about using Image::Magick to create thumbnails for image >>galleries (either 10 or 5 thumbnails per page) on the fly and tested >

Image::Magick speed issue

2005-07-24 Thread Jan Eden
Hi, I thought about using Image::Magick to create thumbnails for image galleries (either 10 or 5 thumbnails per page) on the fly and tested the following: #!/usr/bin/perl use strict; use warnings; use Image::Magick; use CGI; my $q = new CGI; my %parameters = $q->Vars(); my $image = Im

Re: Error on trying to install Image::Magick

2005-06-09 Thread Chris Devers
On Fri, 13 May 2005, Tham, Philip wrote: > I am getting a screen full of errors when trying to build Image::Magick Is the [non-Perl] ImageMagick suite installed? The Perl Image::Magick library will, as I understand it, depend on this. You get "probably harmless" warnings tha

RE: Error on trying to install Image::Magick

2005-06-09 Thread Tham, Philip
I did not receive any response yet. -Original Message- From: Colin Johnson [mailto:[EMAIL PROTECTED] Sent: Thursday, June 09, 2005 1:34 AM To: Tham, Philip Subject: Error on trying to install Image::Magick Hello Philip, Did you solve your problem installing Image::Magick? (I have

Error on trying to install Image::Magick

2005-05-13 Thread Tham, Philip
Hi I am getting a screen full of errors when trying to build Image::Magick Note that the error starts with gcc: unrecognized option `-pthread' Looks like it can be compiled only in the multithreaded version of perl 5.8.0 Is there a get around if I want to install in the non-multithr

RE: Make errors for Image::Magick

2005-03-21 Thread Chris Devers
On Mon, 21 Mar 2005, Tham, Philip wrote: > I am using Perl 5.8.6 which was built on a sparc Solaris 2.8. Okay, so why not start here? There's a binary release for Solaris -- won't that work? If you prefer to go to Sun for this, try here

RE: Make errors for Image::Magick

2005-03-21 Thread Tham, Philip
>-Original Message- >From: Chris Devers [mailto:[EMAIL PROTECTED] >Sent: Monday, March 21, 2005 5:06 PM >To: Tham, Philip >Cc: Perl Beginners List >Subject: Re: Make errors for Image::Magick >On Mon, 21 Mar 2005, Tham, Philip wrote: >> Need some advice. Th

Re: Make errors for Image::Magick

2005-03-21 Thread Chris Devers
On Mon, 21 Mar 2005, Tham, Philip wrote: > Need some advice. The installed version of perl is not currently > supporting multithreading. You seem to be using a custom Perl build in /usr/local/bin. What happens if you try the stock Perl in /usr/bin ? What operating system is this? If it's Linux,

Make errors for Image::Magick

2005-03-21 Thread Tham, Philip
After the command perl -MCPAN -e shell I run the following commands get Image::Magick The source files were downloaded properly. On Running the command make I get the following errors: Need some advice. The installed version of perl is not currently supporting multithreading. Thanks in

Re: GD vs Image::Magick

2005-01-02 Thread Bob Showalter
Octavian Rasnita wrote: Hi, Can you tell me what's the difference between GD and Image::Magick perl libraries? Can you do something with one and cannot do with the other? Which is working better? Which is more "advanced"? What do you recommend? (GD, Image::Magick, both)? GD prov

Re: GD vs Image::Magick

2005-01-02 Thread Octavian Rasnita
Re: GD vs Image::Magick Octavian Rasnita wrote: > Hi, Hello, > Can you tell me what's the difference between GD and Image::Magick perl > libraries? This will sound super generic but its the truth :) GD is a Perl API for the gdlib library ( http://www.boutell.com/gd/ ) and Image

Re: GD vs Image::Magick

2005-01-02 Thread JupiterHost.Net
Octavian Rasnita wrote: Hi, Hello, Can you tell me what's the difference between GD and Image::Magick perl libraries? This will sound super generic but its the truth :) GD is a Perl API for the gdlib library ( http://www.boutell.com/gd/ ) and Image::Magick is a Perl API for the ImageM

GD vs Image::Magick

2005-01-02 Thread Octavian Rasnita
Hi, Can you tell me what's the difference between GD and Image::Magick perl libraries? Can you do something with one and cannot do with the other? Which is working better? Which is more "advanced"? What do you recommend? (GD, Image::Magick, both)? I don't want to start usi

Image::Magick problem

2004-09-23 Thread Ing. Branislav Gerzo
Hi there, I hope someone is using Image::Magick here. I just installed it (win xp, active Perl...), I'm trying to anotate some text, here is my example script: use Image::Magick; my $colour1 = ("ff"); my $colour2 = ("ff"); my $text = ("Hello World"); m

Re: Image::Magick (Can't do inplace edit)

2004-08-27 Thread Wiggins d Anconia
images/L14627.jpg: No such file or directory at rezise~1.pl line > 17. > Can't open images/L14715.jpg: No such file or directory at rezise~1.pl line > 17. > > ...and here is the script: > > #!/user/local/bin/perl -w > > use strict; > use Image::Magick; > >

Image::Magick (Can't do inplace edit)

2004-08-27 Thread Brian Volk
such file or directory at rezise~1.pl line 17. Can't open images/L14715.jpg: No such file or directory at rezise~1.pl line 17. ...and here is the script: #!/user/local/bin/perl -w use strict; use Image::Magick; my $images = "C:/My Documents/images"; opendir (IMAGES, $images)

Re: image magick problem on free bsd

2004-07-20 Thread David Inglis
m having trouble using image magick on a free bsd box, the code below > works > > fine on redhat but gets the following error message using bsd > > > > /libexec/ld-elf.so.1: > > > /usr/local/lib/perl5/site_perl/5.8.3/i386-freebsd/auto/Image/Magick/Magick.so: > >

Re: image magick problem on free bsd

2004-07-20 Thread Randy W. Sims
On 7/20/2004 8:12 PM, David Inglis wrote: I am having trouble using image magick on a free bsd box, the code below works fine on redhat but gets the following error message using bsd /libexec/ld-elf.so.1: /usr/local/lib/perl5/site_perl/5.8.3/i386-freebsd/auto/Image/Magick/Magick.so: Undefined

image magick problem on free bsd

2004-07-20 Thread David Inglis
I am having trouble using image magick on a free bsd box, the code below works fine on redhat but gets the following error message using bsd /libexec/ld-elf.so.1: /usr/local/lib/perl5/site_perl/5.8.3/i386-freebsd/auto/Image/Magick/Magick.so: Undefined symbol "AcquireMagickMemory" C

RE: Image::Magick Montage usage

2004-03-10 Thread Taylor James
Taylor James wrote: > > Another good idea, which I shall try tonight along with the others, > or this afternoon if I can get Image::Magick installed on my work PC. > That's another story! > Done that, and revised the code as discussed earlier and it still seems to be hangi

RE: Image::Magick Montage usage

2004-03-10 Thread Taylor James
after the Montage before the Write so we can confirm > that the script is in fact hanging at the Montage rather than at the > Write. > Another good idea, which I shall try tonight along with the others, or this afternoon if I can get Image::Magick installed on my work PC. That

RE: Image::Magick Montage usage

2004-03-10 Thread Wiggins d Anconia
nd up, or would it just throw an error? Or just work? I > doubt it has anything to do with my problem anyway, just curious. > Possibly this could be the problem, though I would have hoped Image::Magick to throw an exception or some such if the file was not writeable instead of hanging. It

RE: Image::Magick Montage usage

2004-03-10 Thread Taylor James
Wiggins d Anconia wrote: > > HTH, > Indeed, you're right of course. I have a hunch that this is more than a resource issue, but of course I should try using less images first to eliminate it as a possibility. I'll try later and let you know how I get on. I was kind of hoping someone would spot

Re: Image::Magick Montage usage

2004-03-10 Thread Wiggins d Anconia
> > Hi there, > > I have 189 gif images at 200x200 and I want to combine them in a 3x61 > arrangement, ending up with a 600x12200 gif. Firstly is this just crazy > talk? I realise this is a large image, but I've dealt with larger in the > past. > As long as you have the resources... > Secondly

Image::Magick Montage usage

2004-03-10 Thread Taylor James
ter. Cheers, James ### #!/usr/bin/perl use warnings; use strict; use Image::Magick; my @images; my $input_file = '/home/james/montage_images/amalgam.txt'; my $output_file = 'home/james/montage_images/montage.gif'; my $image_dir = '/home/

Re: Image Magick

2004-01-09 Thread Scott Taylor
t I'm still stuck at how to do what I want. I don't want Apache writing files, I just want to display the new image dynamically. Is that even possible? Ah, silly me. Thanks Wiggins. while ( my (@PixData) = $sth->fetchrow) { my $PixDisp=Image::Magick

Re: Image Magick

2004-01-09 Thread Scott Taylor
At 10:28 AM 01/09/2004, Wiggins d Anconia wrote: > Hello all, > > I am trying to use Image::Magick to resize a JPEG. This routine works to > display the full size image from a blob in my Firebird database: > > while ( my ($PixData ) > = $sth->fetchrow

Re: Image Magick

2004-01-09 Thread Wiggins d Anconia
> Hello all, > > I am trying to use Image::Magick to resize a JPEG. This routine works to > display the full size image from a blob in my Firebird database: > > while ( my ($PixData ) > = $sth->fetchrow ) { > print header('im

Image Magick

2004-01-09 Thread Scott Taylor
Hello all, I am trying to use Image::Magick to resize a JPEG. This routine works to display the full size image from a blob in my Firebird database: while ( my ($PixData ) = $sth->fetchrow ) { print header('image/jpeg'); print $PixData;

[ANNOUNCE] 5.5.7 Image::Magick Windows ppm for Perl 5.8

2003-06-19 Thread Beau E. Cox
I have recently built and tested Image::Magick module for Windows ActiveState Perl 5.8.0 builds 804 and higher. This module is built on ImageMagick version 5.5.7. Details and full instructions are available at: http://ppm.beaucox.com Aloha => Beau; -- To unsubscribe, e-mail: [EMAIL PROTEC

RE: Image::Magick pixel replacement

2001-09-30 Thread Jade E. Deane
Perhaps I should rephrase this. Is anyone aware of a module or method of replacing pixels in an image? Jade -Original Message- From: Jade E. Deane [mailto:[EMAIL PROTECTED]] Sent: Saturday, September 29, 2001 4:53 AM To: [EMAIL PROTECTED] Subject: Image::Magick pixel replacement Is