kobra:
If I have a 1x1 inch image @ 72 dpi I can also have a 1x1 inch image at 600 dpi with only an increase in the file size Not the image dimensions.
I've tried different dpi resolutions with the same screen dimensions. When printed, 72 dpi looks really bad and 600 dpi looks bad too.
However, if I specify 600 dpi and large screen dimensions (1500 pixels wide or bigger) and then use HTML to force it down to 700 pixels wide, the image looks awesome on a laser printer.
On the packing slip, here is what appears in the browser source file:
<img src="images/logo.gif" border="0" alt="logo" title=" logo"></td>
The PHP code to create this looks like the following:
<?php echo zen_image(DIR_WS_IMAGES . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT); ?></td>
The problem is I don't know how to specify image widths in PHP. Is this done in the PHP code above, in a stylesheet, or in a template file?