How to get Safari printing images in proper resolution?

I have problems printing high resolution images from a web page.
Example: When printing a 300 dpi image that measures 5 x 6 inches Safari rescales this image to a resolution of about 282 dpi which results in a slightly larger image. The web page contains CSS definitions with the correct image size. It is suspicious that the printed images always seem to be rescaled by 6.348%. I tried different CSS definitions and page structures with the same result.
When the CSS definition for the image size is increased by 6.348% the resolution and image size fits the original values and dimensions.
What about this magical 6.348%?
The problem is verified on 10.4.11 and 10.5 with Safari 3.0.1 on different machines with all kind of images in every resolution you can think of, with different printer drivers (but I do not think this is relevant) - all images are rescaled by this magic factor. I tried all kind of printer settings, took a look at the Library plists related to printing ... Please help me.
It is weird that Safari offers ICC support for color proof matches but is not able to print an image with its correct resolution/dimensions. Firefox for example does not touch the image resolution, why the heck Safari does?

Hi Ned,
Website builders are using maximum 75 DPI images. These are to small i quality for other use when you are looking for quality images. The reason for using images in small size like 75 DPI is to prevent that the website is getting to big in size, an for using them on the internet they are good enough for best viewing.
QuickTimeKirk is right to get better images from a website. If the developer is NOT offering a downloadble better quality you have to do it with the on they offer.
Dimaxum

Similar Messages

  • How to get the full image directory when i upload the image to web page???

    hai, how to get the full image directory when i upload the image to web page???
    here is the example:
    <form action="uploadfile.jsp" method="post">
    image<input type="file" name="image" />
    <input type="submit" value="submit"/>
    <%
    String s=request.getParameter("image");
    %>
    <%=s%>
    </form>
    i upload the image from C:\image\center.gif. i use request.getParameter just can get the image name like "center.gif". Can anybody help me how to get the full path name. Thanks a lot..

    There is no need to get the path. It is also fairly pointless as the server cannot access the client's local file system.
    Carefully read this article how you can upload files the right way: http://balusc.blogspot.com/2007/11/multipartfilter.html

  • How to get Safari to ask if I want to download

    Using other browsers, I can set the preferences not to immediately start a download. I can set them to ask me if I am ready to download. How do I do that with Safari?

    Went there, read it, no mention at all of how to get Safari to allow me to choose whether to download or not. I am sure you haven't seen this option in Safari either, and that's why you thought Apple's guide would provide some solution for my not knowing the Safari routines. In fact, I am quite familiar with the use of Safari other than this one ommision: how to get an option to choose to download a file. You see, many download links do not show the file name. Only after Safari begins to download can I see the file name in its download list, which is difficult to use, as it shows the oldest download at the top and the active download is far down at the bottom of the list. That leaves me scrolling and looking to find out if it is either a Windows-only file (.exe) or a file I may already have. In those case, I have to cancel the download, or if I am not fast enough, I must trash a file that I didn't want in the first place. With all other browsers (Firefox, Internet Explorer, Opera, Chrome, etc.) I can choose to allow the download to proceed or cancel it based on the small window that appears showing the file name after I click the link on the webpage. Surely Safari has that option also.
    Here is a capture of what I mean (got to paste the entire URL as this forum doesn't have a link button):
    http://www.flickr.com/photos/36589940@N04/4466396332/

  • How to get videos from touch, in full resolution?

    How to get videos from touch, in full resolution?
    I tried email, but that compresses them.

    Import them as you would from any digital camera.
    http://manuals.info.apple.com/enUS/iPod_touch_iOS4.1_UserGuide.pdf

  • How can I resize an image without losing resolution or using the crop tool? I am using Photoshop Elements 13 on a PC.

    How can I resize an image without losing resolution or using the crop tool? I am using Photoshop Elements 13 on a PC.

    Hi Peru Bob,
    I've tried two images, the results were:
    Image 1
    Jpg, original file size 923KB, dimensions 848px x 279px.
    After resizing to 848px x 180px with 72dpi, the file size decreased to 164KB.
    Image 2
    Jpg, original file size 809KB, dimensions 1200px x 1800px.
    After resizing to 668px x 722px with 72dpi, the file size decreased to 307KB.
    So, there seems to be a fair file size loss - is this to be expected?

  • How to get mp4 in 640 x 360 resolution ?

    Hi there,
    I am ne to Compressor.
    How to get mp4 in 640 x 360 resolution ?
    Sorry if this question is too basic ...
    Thanks

    Ryan,
    When you create a batch, the batch can have many "jobs" (such as make a small file out of a big file so it can be uploaded to the Web, and so forth). See Getting Started Quickly, p 12–18.
    The easiest way is to start with a batch template and then adjust the presets to your liking. To access these controls, select the job in the batch (not the batch or the source file) and open the Inspector. You'll see several different tabs. The first pane summarizes the settings that will be applied if you do nothing. The others include the controls for encoder, geometry etc.
    I strongly recommend that you get a small piece of test footage and experiment with these controls to see how these controls affect your a/v files . And the best way to make sure you get your $ worth from your Compressor purchase is to become familiar with the manual – and perhaps learn from a tutorial from someone like Lynda.com or Ripple Training.
    Russ 

  • How to Get the Print of General Ledger with Opening balances

    Hi Friends.
    How can I get the print out of G.Ledger with all line item transactions and opening balances in a company code?
    Please explain.
    Regards.
    Srini

    hi
    for line item-
    goto s_alr_87012282 and select menu bar "list">print
    for g/l statement
    goto s_alr_87012332 same step above
    rgs

  • How to get a .tif image with n different colors?

    Hi..i want to know how can i get a .tif image colored by some colors. I want to do something like this:
    if(tifImage.pixel < 0.1) {
    tifImage.pixel = yellow;
    else if( 0.1 <= tifImage.pixel && tifImage.pixel <0.5){
    tifImage.pixel = red;
    up to n colors.
    I prove the next code, but it is not getting the colors i want.
    public void generateImage(BufferedImage bi,double alto,double medio,String output){
              int width = bi.getWidth(); // Dimensions of the image
              int height = bi.getHeight();
              // Some constant colors (as arrays of integers).
              int[] red = {255, 0, 0};
              int[] green = {  0,255,  0};
              //int[] blue = {  0,  0,255};
              int[] yellow = {255,255, 0};
              //int[] background = { 85, 85, 85};
              int[] background = { 255, 255, 255};
              // The original image data will be stored on this array.
              int[][][] imageData = new int[width][height][3];
              // We'll fill the array with a test pattern bars thingie.
              double[] pixelArray=null;
              for(int w=0;w<width;w++)
                   for(int h=0;h<height;h++)
                        if(bi.getRaster().getPixel(w,h,pixelArray)[0]>=9000){
                             //lo dejo blanco
                             imageData[w][h] = background;
                        else if(bi.getRaster().getPixel(w,h,pixelArray)[0]>=alto){
                             //lo dejo rojo
                             imageData[w][h] = red;
                        else if(bi.getRaster().getPixel(w,h,pixelArray)[0]>=medio){
                             //lo dejo amarillo
                             imageData[w][h] = yellow;
                        else{
                             //lo dejo verde
                             imageData[w][h] = green;
              // Now we have a color image in a three-dimensional array, where the
              // third dimension corresponds to the RGB components.
              // Convert the color image to a single array. First we allocate the
              // array.
              // Note that this array will have the pixel values composed on it, i.e.
              // each R,G and B components will yield a single int value.
              byte[] imageDataSingleArray = new byte[width*height*3];
              int count = 0;
              // It is important to have the height/width order here !
              for(int h=0;h<height;h++)
                   for(int w=0;w<width;w++)
                        // Rearrange the data in a single array. Note we revert RGB, I still don't
                        // know why.
                        imageDataSingleArray[count+0] = (byte)imageData[w][h][2];
                        imageDataSingleArray[count+1] = (byte)imageData[w][h][1];
                        imageDataSingleArray[count+2] = (byte)imageData[w][h][0];
                        count += 3;
              // Create a Data Buffer from the values on the single image array.
              DataBufferByte dbuffer = new DataBufferByte(imageDataSingleArray,width*height*3);
              // Create an pixel interleaved data sample model.
              SampleModel sampleModel =
                   RasterFactory.
                   createPixelInterleavedSampleModel(DataBuffer.TYPE_BYTE,
                             width,height,3);
              // Create a compatible ColorModel.
              ColorModel colorModel = PlanarImage.createColorModel(sampleModel);
              // Create a WritableRaster.
              WritableRaster raster = RasterFactory.createWritableRaster(sampleModel,dbuffer,new Point(0,0));
              // Create a TiledImage using the SampleModel.
              TiledImage tiledImage = new TiledImage(0,0,width,height,0,0,sampleModel,colorModel);
              // Set the data of the tiled image to be the raster.
              tiledImage.setData(raster);
              // Save the image on a file.
              JAI.create("filestore",tiledImage,output,"TIFF");
    Thanks

    I tried that. When I open one image and set the exposure, then go to open the second image, nothing happens. I then saved one image as a psd file, then it would let me open the raw file a second time. When I had both open on the same screen and dragged the layer from one into another image, the layer size ended up being different than the other file. It was shifted down and to the left. I need these images to be pixel locked, and the user experience I went through did not allow me to do this.
    I also do not see a way to copy/paste layers between files.

  • HT3669 Hi I have a Konica Minolta PagePro 1300W printer. This works with my Windows-based Toshiba laptop but not with my i-Mac. Can someone please advise me how I get the printer to work with my i-Mac? I have installed it but documents don't print. Thanks

    Hi I have a Konica Minolta PagePro 1300W printer. This works with my Windows-based Toshiba laptop but not with my i-Mac. I have the latest (Mountain Lion 10.8.2) OS-X software.
    I have installed the printer using 'System Preferences' on my i-Mac and it appears on the list of available printers but documents that I create just don't print.
    Can someone please advise me how I get the Konica Minolta PagePro 1300W printer to work with my i-Mac?
    Thanks, John Lee

    Looking at the Konica web site for the PagePro 1300W, I saw the following note.
    Please note: This printer is designed to be used in computer operating systems running MS Windows only. Operating systems such as UNIX, Macintosh, or Linux are not supported nor do we have workaround drivers available. Older MS Windows versions, such as Windows 3.1/95/98[pre-SE] and NT 3.51/4.0, are not supported.
    So KM are not going to help you. But the LinuxFoundation does provide a workaround that should allow you to print. Have a look at this web page. You will need to install all three packages as per the instructions from that page.

  • How to Get Safari to STOP asking for Password

    Whenever I start up Safari for the first time, it annoyingly asks for a password, and I've dismissed this prompt without typing in any passwords, and I've been able to continue doing what I'm doing. But how do I get Safari to stop asking for a password? I've read similar posts but nothing has been asked in exactly this way, as far as I can tell. What I've done:
    - Gone into Keychain Access and deleted the only Safari-related item I find there, called "Safari Forms Autofill." This works temporarily but the password prompt comes back again, and this item appears again in Keychain Access.
    - Gone into Safari Prefs Autofill and made sure Passwords was unchecked; it was.
    Any ideas?

    Aha, I've answered my own question: You have to uncheck the "Other Forms" option in Safari Auto-Fill Prefs as well. Ho ho ho all.

  • How to get Safari to open an HTML document created in AIR on iOS

    We have an iOS app that creates a 3-page HTML document on the user's device and then prints it. We were using Darkredz ANE to do this, but the ANE is broken in iOS 8 and the Darkredz website is abandoned.
    As a workaround, we want to use Safari to launch the HTML document, then print from Safari. But Safari won't open a local document that belongs to another app, probably because of the security sandbox. We don't have a network connection, so we can't save the file remotely. Is there a way to get Safari to open a local document?
    If not, does anyone know of a FileManager app that can open files that are located in the "documents" folder of other apps on the device? I've tried several of them, but so far, they only load files from iCloud, Box, etc.
    Thanks for any tips.

    Sorry I didnt think about it needing to print as 3 separate pages at specific points. If you can't get the HTML printing to work then you could keep could this thought in mind. If the height of the, I presume, HTMLLoader object is the right value, you can draw the white-space of the page into the BitmapData and then it might still print at the right location. If it doesn't work immediately and you felt like putting in a little more effort, you might be able to tweak the height of the HTMLLoader objects so that each one represents a single page. Granted this approach would likely only work for one paper size format, such as 8.5x11. Sorry I don't have any easier ideas that work with what you already have done so far

  • How to Get Windows 10 Image for Galileo

    I purchased a Galileo gen 2 board and would like to start prototyping a project I have in mind -- but I cannot for the life of me figure out how/where to get a Win10 image for the board.  I've signed up (twice) through the 'Connect' web site (and gotten
    zero replies), and the links on the Connect site that talk about getting an image if you bought your board yourself just lead to a 404 error.
    Any suggestions?

    Figured this out.
    sign up/join
    MICROSOFT WINDOWS FOR WINDOWS DEVELOPER PROGRAM FOR IOT EULA
    Under
    Windows Embedded Pre-Release Programs Home / Programs Windows Developer Program for IoT
    once you've joined and click on link below, you will see the downloadable link to get 170mb  9600.16384.x86fre.winblue_rtm_iotbuild.150309-0310_galileo_v2.wim  - this file under EULA cannot be shared.
    Hope this helps someone else.
    Go create something using IoT!

  • How to get the printer button to appear

    The buttons on my printer should say scan, copy & print.
    They are now saying scan, copy & copy.   how do I get the print button back, as I cannot print

    Hi,
    What is the exact printer model? is it the HP Photosmart C4385?
    The following model does not provide any fax capabilities as you may find by its datasheet below:
    http://cdn.cnetcontent.com/b6/14/b6144c8e-0a16-4ce3-a66d-2eb03e86f4d9.pdf
    If I misunderstood your pritner model, please clarify the exact model.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How to get the jpeg image contained in a URL

    I have a jpeg image which is contained in a URL
    http://california.biocars.org/viewFrames2?seqDir=/data/pub&
    fFileName=test
    How can I get the image only? The file is not in jpeg format
    but in some other format which adds two lines in front of a
    jpeg file. This jpeg file is what I want. But how to get it?
    Note that california.biocars.org/ is inside a firewall and can not
    be viewed from outside.
    Thanks.

    right-click and select Save As... hahahaha

  • How to get and display image file through servlet

    If I've got a jpg file on the server..
    How can I use servlet to return that image via the following calling method
    /displayfile?filename=image.jpg
    the image.jpg in the server will return
    I know that I need to set the content type to image/jpeg
    after that, how can I return the image file to browser?

    - Get the "file" Parameter from the URL QueryString
    - check if the File specified exists on your filesystem
    - read in the jpg from the file (best would be binary)
    - set the right Mime Type (as you already wrote)
    - write the filecontent to the ServletOutput as you would do with any other content
    - that's it.

Maybe you are looking for

  • How do I put my iTunes library from one computer to another?

    My old computer is infected with spyware and is no longer usable. My question is: how do I get the iTunes library from that computer to my new computer that I have now? Is this even possible?

  • Changing "Icon size" causes .ARW thumbnail image in folder to disappear and icon to appear

    Is this a bug everyone is getting? Have  .ARW files in a folder and it shows  thumbnail images of the .ARW files, but if I increase or decrease the slider to different sizes (to view better), a icon will appear instead of the . ARW preview image. Out

  • Cover for macbook pro to eliminate slipperry grip?

    When picking up my macbook pro i often slips in my hand. Is there something out there for mbp cover or any suggestions as to what to put on it?

  • Can't import songs to the ipod

    Hi, I bought some songs off iTunes with a gift voucher from someone and for some reason they won't go into the ipod even though they are in the music library. I have itunes selected to sync music automatically and earlier it did import the songs in t

  • Cannot stop and start CCMS agent

    Hi experts, I'm new to SAP and here we have problem on sapccmsr agent not running. Previously the sapccmsr was running fine until one day it is not. When i tried to start the application, it says that theres another CCMS agent running with the profil