|
We'll I've been fighting with this one for a minute. This is kind of a coding/image question
200 dpi jpg with pixel dimenions 1717X2213 [document size 8.5X11]
we have these images in a folder and a webpage that finds and views the images based on the user putting the image name in a form. So it's a websearch by image name, images are in a folder on the webserver.
------------------------------------------------------
<div align="left"><img src="\\Cltfs1\Debit Memo\web_search2\200dpi\<%=Trim(request.querystrin g("tkt"))%>.jpg" alt="" width="780" height="960" border="0" align="left">
--------------------------------------------------------
I have the code scaling the image down so it fits on the screen:
width="780" height="960"
when users right click the image and select print, the image is very large and does not fit on the page. The funny thing is that if you print the image by itself it fits fine on 8.5X11.
is 1717X2213 not really translated to 8.5"X11"?
Confused at this point. We need the image to print on one page and not be tiny on screen. PDF not an option right now, using ABBYY formreader actually
|