in reply to Re^5: Image magic creation of thumb fail
in thread Image magic creation of thumb fail
Leave me and exception within Magick.xs.dll is not loaded.#!C:/Strawberry/perl/bin/perl.exe -w use warnings; use Image::Thumbnail; use CGI; use CGI::Cookie; use Time::HiRes qw(gettimeofday); use CGI::Lite (); my $query = CGI->new ; $imgdir= "C:/Users/41786/OneDrive/Documents/recordz1/upload"; #my $t = new Image::Thumbnail( # module => 'Imager', # size => 55, # create => 1, # input => "$imgdir/282.jpg", # outputpath => "$imgdir/test.jpg", #); # With Image Magick my $file = $query->param("image"); print "Content-Type: text/html\n\n"; my $t = new Image::Thumbnail( size => "55x75", create => 1, module => "Image::Magick", input => "$imgdir/282.jpg", outputpath => "$imgdir/test2.jpg"); print "test";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Image magic creation of thumb fail
by *alexandre* (Scribe) on Jan 08, 2023 at 02:29 UTC |