Almost-minimal filesystem based blog.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
314 B

package App::WRT::Image;
use strict;
use warnings;
use base qw(Exporter);
our @EXPORT_OK = qw(image_size);
use Image::Size;
=over
=item image_size($path)
Returns (width, height) of a variety of image files. Called by icon_markup and
line_parse.
=cut
sub image_size {
return imgsize($_[0]);
}
=back
1;