Leeoniya
07-17-2008, 05:51 AM
is there any way to consistently control how large a JPEG image will print when printed from a browser?...say if you send people a link of a jpeg coupon on your site.
or is PDF the only answer?
thanks,
Leon
rangana
07-17-2008, 05:55 AM
You might find these links useful:
http://meyerweb.com/eric/articles/webrev/200001.html
http://www.yourhtmlsource.com/stylesheets/cssmediatypes.html
rmedek
07-17-2008, 07:13 AM
What I would do is size the image in your print css in inches:
img.coupon {
width: 8in;
height: 2.5in;
}
…and save the img with a really high resolution, like 300dpi. Printing the image should result in a fairly consistent, high-quality print.
Leeoniya
07-17-2008, 04:20 PM
What I would do is size the image in your print css in inches:
img.coupon {
width: 8in;
height: 2.5in;
}
…and save the img with a really high resolution, like 300dpi. Printing the image should result in a fairly consistent, high-quality print.
nice, thanks.
macwiz
07-17-2008, 11:45 PM
You can use the @media print rules to set the look of a page when it prints.