>In fact, there seems to be no choice at all as Image::Size can only output size, not change it.
It seems an important question is whether you want to mess with the size(pixels) or the weight(kilobytes). If all you're trying to do is change the *html display* size , I've used
Image::Size
succesfully for this.
###############
use Image::Size;
$pixel_path = "/path/$directory/$file_name";
($width, $height) = imgsize("$pixel_path");
$new_width = $width/4;
$new_height = $height/4;
print qq~
<img src="/path/to/image/file_name.jpg" width="$new_width" height="$new_height">
~;
##############
The above (which would display the image at 1/4 size) has been working fine for the applications I use it in. Maybe it'd work in yours?
I'm new to the monastery - not sure what the protcol is here about signatures, etc ... hope this is of some help
Carl Hagstrom
hagstrom@epix.net
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.