convert remainder of Storage to Imager

This commit is contained in:
Graham Knop 2010-09-11 02:19:50 -05:00 committed by Scott Walters
parent c4bb713d94
commit d1bf21b440
2 changed files with 43 additions and 79 deletions

View file

@ -326,7 +326,7 @@ sub www_annotate {
my $image = '<div align="center" class="yui-skin-sam"><img src="'.$self->getStorageLocation->getUrl($self->filename).'" style="border-style:none;" alt="'.$self->filename.'" id="yui_img" /></div>'; my $image = '<div align="center" class="yui-skin-sam"><img src="'.$self->getStorageLocation->getUrl($self->filename).'" style="border-style:none;" alt="'.$self->filename.'" id="yui_img" /></div>';
my ($width, $height) = $self->getStorageLocation->getSize($self->filename); my ($width, $height) = $self->getStorageLocation->getSizeInPixels($self->filename);
my @checkboxes = (); my @checkboxes = ();
my $i18n = WebGUI::International->new($session,"Asset_Image"); my $i18n = WebGUI::International->new($session,"Asset_Image");

View file

@ -22,7 +22,7 @@ use File::Copy ();
use File::Find (); use File::Find ();
use File::Path (); use File::Path ();
use File::Spec; use File::Spec;
use Image::Magick; use Imager;
use Path::Class::Dir; use Path::Class::Dir;
use Storable (); use Storable ();
use WebGUI::Paths; use WebGUI::Paths;
@ -254,28 +254,26 @@ Note: captcha images will NOT be synchronized to a CDN, even if other files are.
=cut =cut
use Imager;
sub addFileFromCaptcha { sub addFileFromCaptcha {
my $self = shift; my $self = shift;
my $error = ""; my $error = "";
my $challenge; my $challenge;
$challenge .= ('A'..'Z')[rand(26)] foreach (1..6); $challenge .= ('A'..'Z')[rand(26)] foreach (1..6);
my $filename = "captcha.".$self->session->id->generate().".png"; my $filename = "captcha.".$self->session->id->generate().".png";
my $image = Imager->new(xsize => 200, ysize => 50 my $image = Imager->new(xsize => 200, ysize => 50) || die Imager->errstr;
) || warn Imager->errstr;
$image->box( $image->box(
filled => 1, filled => 1,
color => 'grey', color => 'grey',
) || warn $image->errstr; ) or die $image->errstr;
$image->filter( $image->filter(
type => 'noise', type => 'noise',
amount => 100, amount => 100,
subtype => 1, subtype => 1,
) || warn $image->errstr; ) or die $image->errstr;
$image->filter( $image->filter(
type => 'autolevels', type => 'autolevels',
usat => 0.5, usat => 0.5,
); ) or die $image->errstr;
my $font = Imager::Font->new(file => WebGUI::Paths->share . '/default.ttf'); my $font = Imager::Font->new(file => WebGUI::Paths->share . '/default.ttf');
$image->align_string( $image->align_string(
@ -287,25 +285,25 @@ sub addFileFromCaptcha {
halign => 'center', halign => 'center',
valign => 'center', valign => 'center',
size => 40, size => 40,
) || warn $image->errstr; ) or die $image->errstr;
$image->line( $image->line(
color => 'white', color => 'white',
x1 => 5, y1 => 5, x1 => 5, y1 => 5,
x2 => 195, y2 => 45, x2 => 195, y2 => 45,
endp => 1, endp => 1,
aa => 1, aa => 1,
) || warn $image->errstr; ) or die $image->errstr;
$image->filter( $image->filter(
type => 'gaussian', type => 'gaussian',
stddev => 1, stddev => 1,
) || warn $image->errstr; ) or die $image->errstr;
$image = $image->convert( $image = $image->convert(
preset => 'gray', preset => 'gray',
) || warn $image->errstr; ) or die $image->errstr;
$image->box(color => 'black' $image->box(color => 'black'
) || warn $image->errstr; ) or die $image->errstr;
$image->write(file => $self->getPath($filename) $image->write(file => $self->getPath($filename)
) || warn $image->errstr; ) or die $image->errstr;
return ($filename, $challenge); return ($filename, $challenge);
} }
@ -864,7 +862,7 @@ sub generateThumbnail {
my ($x, $y) = ($image->getwidth, $image->getheight); my ($x, $y) = ($image->getwidth, $image->getheight);
my $n = $thumbnailSize; my $n = $thumbnailSize;
if ($x > $n || $y > $n) { if ($x > $n || $y > $n) {
$image->scale(xpixels => $n, ypixels => $n, type => 'min'); $image = $image->scale(xpixels => $n, ypixels => $n, type => 'min');
} }
$image->write(file => $self->getPath . '/thumb-' . $filename); $image->write(file => $self->getPath . '/thumb-' . $filename);
return 1; return 1;
@ -917,27 +915,6 @@ sub getCdnFileIterator {
} ## end if ( $cdnCfg and $cdnCfg... } ## end if ( $cdnCfg and $cdnCfg...
} ## end sub getCdnFileIterator } ## end sub getCdnFileIterator
#-------------------------------------------------------------------
=head2 getSize ( filename )
Returns width and height of image.
=head3 filename
The file to generate a thumbnail for.
=cut
sub getSize {
my $self = shift;
my $filename = shift;
my $image = Imager->new;
$image->read(file => $self->getPath($filename));
return ($image->getwidth, $image->getheight);
}
#------------------------------------------------------------------- #-------------------------------------------------------------------
=head2 getErrorCount ( ) =head2 getErrorCount ( )
@ -1377,7 +1354,7 @@ sub renameFile {
=head2 crop ( filename [, width, height ] ) =head2 crop ( filename [, width, height ] )
Resizes the specified image by the specified height and width. If either is omitted the iamge will be scaleed proportionately to the non-omitted one. Resizes the specified image by the specified height and width. If either is omitted the iamge will be scaled proportionately to the non-omitted one.
=head3 filename =head3 filename
@ -1422,25 +1399,20 @@ sub crop {
$self->session->log->error("Can't resize with no resizing parameters."); $self->session->log->error("Can't resize with no resizing parameters.");
return 0; return 0;
} }
my $image = Image::Magick->new; my $image = Imager->new;
my $error = $image->Read($self->getPath($filename)); $image->read($self->getPath($filename))
if ($error) { or die $image->errstr;
$self->session->log->error("Couldn't read image for resizing: ".$error);
return 0;
}
# Next, resize dimensions # Next, resize dimensions
if ( $width || $height || $x || $y ) { if ( $width || $height || $x || $y ) {
$self->session->log->info( "Resizing $filename to w:$width h:$height x:$x y:$y" ); $self->session->errorHandler->info( "Resizing $filename to w:$width h:$height x:$x y:$y" );
$image->Crop( height => $height, width => $width, x => $x, y => $y ); $image = $image->crop( height => $height, width => $width, top => $x, left => $y )
or die $image->errstr;
} }
# Write our changes to disk # Write our changes to disk
$error = $image->Write($self->getPath($filename)); $image->write($self->getPath($filename))
if ($error) { or die $image->errstr;
$self->session->log->error("Couldn't resize image: ".$error);
return 0;
}
return 1; return 1;
} }
@ -1554,22 +1526,18 @@ sub rotate {
$self->session->log->error("Can't rotate something that's not an image."); $self->session->log->error("Can't rotate something that's not an image.");
return 0; return 0;
} }
my $image = Image::Magick->new; my $image = Imager->new;
my $error = $image->Read($self->getPath($filename)); $image->read(file => $self->getPath($filename))
if ($error) { or die $image->errstr;
$self->session->log->error("Couldn't read image for resizing: ".$error);
return 0;
}
$self->session->log->info( "Rotating $filename by $degree degrees" ); $self->session->errorHandler->info( "Rotating $filename by $degree degrees" );
$image->Rotate( $degree );
$image = $image->rotate(degrees => $degree)
or die $image->errstr;
# Write our changes to disk # Write our changes to disk
$error = $image->Write($self->getPath($filename)); $image->write(file => $self->getPath($filename))
if ($error) { or die $image->errstr;
$self->session->log->error("Couldn't rotate image: ".$error);
return 0;
}
return 1; return 1;
} }
@ -1618,17 +1586,15 @@ sub resize {
$self->session->log->error("Can't resize with no resizing parameters."); $self->session->log->error("Can't resize with no resizing parameters.");
return 0; return 0;
} }
my $image = Image::Magick->new; my $image = Imager->new;
my $error = $image->Read($self->getPath($filename)); $image->read(file => $self->getPath($filename))
if ($error) { or die $image->errstr;
$self->session->log->error("Couldn't read image for resizing: ".$error);
return 0;
}
# First, change image density # First, change image density
if ( $density ) { if ( $density ) {
$self->session->log->info( "Setting $filename to $density" ); $self->session->errorHandler->info( "Setting $filename to $density" );
$image->Set( density => "${density}x${density}" ); $image->settag(name => 'i_xres', value => $density);
$image->settag(name => 'i_yres', value => $density);
} }
# Next, resize dimensions # Next, resize dimensions
@ -1637,23 +1603,21 @@ sub resize {
$width = $1; $width = $1;
$height = $2; $height = $2;
} }
my ($x, $y) = $image->Get('width','height'); my ($x, $y) = ($image->getwidth, $image->getheight);
if (!$height) { # proportional scale by width if (!$height) { # proportional scale by width
$height = $width / $x * $y; $height = $width / $x * $y;
} }
elsif (!$width) { # proportional scale by height elsif (!$width) { # proportional scale by height
$width = $height * $x / $y; $width = $height * $x / $y;
} }
$self->session->log->info( "Resizing $filename to w:$width h:$height" ); $self->session->errorHandler->info( "Resizing $filename to w:$width h:$height" );
$image->Resize( height => $height, width => $width ); $image = $image->scale(xpixels => $n, ypixels => $n, type => 'nonprop')
or die $image->errstr;
} }
# Write our changes to disk # Write our changes to disk
$error = $image->Write($self->getPath($filename)); $image->write(file => $self->getPath($filename))
if ($error) { or die $image->errstr;
$self->session->log->error("Couldn't resize image: ".$error);
return 0;
}
return 1; return 1;
} }