Ask a Question related to PERL Modules, Design and Development.
-
Kasper Holtze #1
ImageMagick and threads
Hello
I have a problem with PerlMagick, it crashes every time I run the
script. Perl version 5.8.1, ImageMagick/PerlMagick version 6.1.0-3.
A simple test script:
------
#!/usr/local/bin/perl
use threads;
use Image::Magick;
$i=1;
while ($i < 5) {
$t[$i] = threads->new(\&threadtest,$i);
$i++;
}
sleep 6;
sub threadtest()
{
($i) = @_;
my $image = Image::Magick->new;
$image->Read("$i.jpg");
}
------
It segfaults on the line $image->Read("$i.jpg");
Can somebody help me? I have tried PerlMagick/ImageMagick v. 6.0.8 with
the same result. Perl and ImageMagick is compiled with thread support.
Thanks!
// Kasper
Kasper Holtze Guest
-
ImageMagick & cfexecute
I just moved all our websites to a new server which is running win2003 and CFMX 6.1 with updates. The old server was Win2k and CFMX 6.1 no updates.... -
using imagemagick
Hello Would you please give me some good references and tutorials on how to use imagemagick in PHP. I am trying to create an extended gallery for... -
imagemagick
I need some help with imagemagick how is it possible to resize a pic to a fixed size (640x480) and if the image is too small (640x400) to fill up... -
ImageMagick probz in PHP
Hi there, Just a little problem I guess... I have stripped out just an imageresize string for ImageMagic in a php-file: <? exec('convert... -
imagemagick via fink, still no go
I installed fink, then did sudo apt-get install imagemagick That failed because I don't have xfree86 installed (I really only need the command...



Reply With Quote

