Centering the image on 4x6 paper.

Still trying to print an image on 4x6 paper with a border and I cannot center the image. It makes no difference if I hit the "center" button.
I've gotten the latest Epson drivers for my MAC (Lion).
Also makes no difference if I "crop to fit", or not.
The image and borders look fine on the computer screen, but will not print what the screen shows.
Anybody have any ideas?
Richard

I did that; makes no difference. Still gives me no border on top, and 3 differenrt size borders on the other 3 sides. Makes no difference if I click "center" or not.
It looks perfect on the computer screen when I "center" it, but it doesn't print the way the screen show.
It also makes no difference if I click "crop to fit" or not.
I'm using PSE 9, on Lion MAC, with Epson 1280 printer.
It seems like the most basic thing that a PSE program should do is to center a print. In the past I've used this same printer with Photoshop, and no problem.

Similar Messages

  • Firefox upon opening an image in a new tab, centers the image from top and bottom and surrounds the image with a grey frame. Just started having the problem today, searched Google to no avail.

    Firefox upon opening an image in a new tab, centers the image from top and bottom and surrounds the image with a grey frame. Just started having the problem today, searched Google to no avail.

    Oh wow, looks like a new feature.
    The "page" links in a stylesheet with the address "resource://gre/res/TopLevelImageDocument.css". If you remove that reference, then the image displays in the old style.
    '''''Edit: Please skip the rest of this post and check out the next one.'''''
    There might be a more elegant solution than that, but you could use a bookmarklet to strip out that link when you want to view the page in its old style. A bookmarklet is a snippet of JavaScript you save on the Bookmarks toolbar for quick access.
    First, copy the following code to the clipboard (it's all one long line):
    <br>javascript:var ssheet=document.querySelector('link[href="resource://gre/res/TopLevelImageDocument.css"]'); if(ssheet)ssheet.parentNode.removeChild(ssheet); void 0;
    Next, if you are not displaying the Bookmarks Toolbar, use View > Toolbars > Bookmarks Toolbar to display it. (If you aren't using the classic Menu bar, press Alt+v to call up the old View menu. Right-clicking the gray area just below the page address also allows you to display the Bookmarks Toolbar.)
    Right-click on the Bookmarks Toolbar (or Mac equivalent of right-click!) and choose New Bookmark.
    Paste the code into the Location box (the second box).
    Then type a useful name in the Name box (e.g., Oldstyle Picture) and click Add.
    Now, when you want to tweak the image display, click the button to run the script.
    Manual clicking is a hassle, so it might make sense to look into other solutions. (Greasemonkey didn't seem to work; I think it might not run on .jpg files.)

  • Printing photo get half the image on some paper

    I have printed photos on my Photosmart C4580 without a problem in the past.  Now it prints text from my Mac OS 10.6.8 without a problem but on 4x6 photos, the top half of the photo paper is blank, half the image appears, and there are ink streaks on the back.  
    Strangely, this happens ONLY with premium paper (KodakPremium, gloss) and NOT if I use Kodak everyday paper, also gloss. (I left all the settings the same when I switched paper.) This seems really weird! 
    Removing the printer and adding it back did not help.
    Thanks for any suggestions, Snapperblue

    Hi there @snapperblue , welcome back
    I'de personally suggest trying different paper type settings, and even trying a different paper type altogether. Perhaps try changing the quality as well.
    Here are some guides for you to check out that might help:
    Changing Print Settings in Mac OS X
    Streaks or Lines in the Printed Image
    If the troubleshooting does not help resolve your issue, I would then suggest calling HP's Technical Support to see about further options for you, such as a replacement or trade in. If you are calling within North America, the number is 1-800-474-6836 and if you are calling outside of the US/Canada region,: click here.
    Best wishes
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Pasting from a script centers the image

    Hello,
    I'm new to these formus and to extendScript in particular, and I would be verry happy if someone could point out what I'm doing wrong.
    I have a script that opens a image (lets call it icon), and for all the images in a folder, resizes icon to the current folder image, pastes the image on top, and saves it.
    It works great except for a small problem which I can't seem to fix. When the image from the folder is smaller than the canvas ej:
    Then when the image gets copied over the icon image, it's pasted centered, like this:
    Which defeats the purpose of what I wanted to do, I needed it pasted in the same position as it was in the original image. As we are talking of well over 1k images, doing this by hand is a bit problematic, so I would be really thankful if someone could help me out.
    Here is the script:
    #target photoshop
    app.bringToFront();
    function main()
        var iconFile = File.openDialog ("Select the base (icon0) file", "*.png", false);
        var inputFolder= Folder.selectDialog ("Please select folder to process");
        if(inputFolder == null) return;
        var fileList = inputFolder.getFiles("*.png");
        var outFolder = Folder(inputFolder +"/Processed");
        if(!outFolder.exists) outFolder.create();      
        // Open icon file and create a new layer, making the background one invisible
        var icon = open(iconFile);   
        var artLayerRef = icon.artLayers.add()
        icon.layers[1].visible = false;
        for(var z in fileList)
            // Open icon file
            var icon = open(iconFile);
            var artLayerRef = icon.artLayers.add()
            icon.layers[1].visible = false;
            // Open 32 bit file
            var img32 = open(fileList[z]);
            var img32Name = decodeURI(fileList[z].name.replace(/\.[^\.]+$/, ''));
            // select all document
            img32.selection.selectAll();
            img32.selection.copy();
            // Copy image to the icon layer
            activeDocument = icon;
            icon.resizeImage (img32.width.value, img32.height.value);
            icon.paste();
            // Save icon with name
           var saveFile= File(outFolder + "/" + img32Name + ".png");
            Save24 (icon, saveFile);
            // Clear layer, close open image
            icon.selection.selectAll();
            icon.selection.clear();       
            img32.close();
        icon.close(SaveOptions.DONOTSAVECHANGES);
    main();
    function Save24(doc, saveFile)
         pngSaveOptions = new PNGSaveOptions();
         doc.saveAs(saveFile, pngSaveOptions, true, Extension.LOWERCASE);

    Hy Michael,
    first, thank you for taking time to reply. I apologize for how confusing the post is, I realize how hard it is to understand by code, so I'll try it with images to make it clearer.
    Here is the original icon file:
    // Open icon file
            var icon = open(iconFile);
            var artLayerRef = icon.artLayers.add()
            icon.layers[1].visible = false;
    And now we open the first img32 file (sorry for the size, it's a bit hard to see but there is a small green hill on bottom left)
    // Open 32 bit file
            var img32 = open(fileList[z]);
            var img32Name = decodeURI(fileList[z].name.replace(/\.[^\.]+$/, ''));
    Then we select the img32 and copy it:
    // select all document
            img32.selection.selectAll();
            img32.selection.copy();
    And then we resize the icon document to fit the img32 size:
    // Copy image to the icon layer
            activeDocument = icon;
            icon.resizeImage (img32.width.value, img32.height.value);
    Finaly we paste on the icon the img32 content we had copied:
    icon.paste();
    Notice how the img32 contents get copied smack in the center? I needed to copy it in it's original position, not the center.
    You can probably see the problem with working with translate, as I can't figure out the displacement the image needs. All images I need to work are different sizes and positioned in random positions in the canvas, so I can't hack it to be always bottom right or something like that, I need it in the original position.
    Any tips? Your help is greatly appreciated, and frankly, the only hope I have about this whole busines right now.
    Thanks again.    

  • How do I change the image to fit the paper

    I have just bought a Deskjet 1510 all in one printer and I cannot get the image size and paper size to the same there is a 1.5cm white area at the bottom  ane on the side. Does anyone have any ideas please.

    Hi bunabella,
    Thank you for visiting the HP Support Forums! I understand when you print to your HP Deskjet 1510, you are unable to get the image size and paper size the same, there is a 1.5cm white area at the bottom and on the side.
    Are you able to make a copy from the front panel of the DJ 1510 with no problems, or is this off as well?
    First let's go ahead and run the HP Print and Scan Doctor- It was designed by HP to provide users with the troubleshooting and problem solving features needed to resolve many common problems experienced with HP print and scan products connected to Windows-based computers.
    Please let me know what the PSDR finds, if you are still running into problems continue here: Fixing Ink Streaks, Faded Prints, and Other Common Print Quality Problems, start on Solution four and work your way down, make sure the alignment passes.
    I hope to hear from you soon.
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Resizing the images

    hi,
    i want to resize and centering external images.
    i have done with centering the images.
    but how to do resizing.....here is my code....
    // code for centering images starts
    //Define center coordinates
    var centerX:Number = _root.emptymc_mc.imagemc_mc._width / 2;
    var centerY:Number = _root.emptymc_mc.imagemc_mc._height / 2;
    var movieClipLoader:MovieClipLoader = new MovieClipLoader();
    var loaderListener:Object = new Object();
    //Use the onLoadInit function to get the loaded images
    proportions
    loaderListener.onLoadInit = function(target:MovieClip) {
    trace(target._width + " x " + target._height)
    target._parent._x = centerX - target._width / 2;
    target._parent._y = centerY - target._height / 2;
    // end resizing and centerring code
    // now loading images into movie clip loader
    movieClipLoader.addListener(loaderListener);
    var movieClipHolder:MovieClip =
    _root.emptymc_mc.imagemc_mc.createEmptyMovieClip(" container",
    getNextHighestDepth());
    var movieClipLoaderTarget:MovieClip =
    movieClipHolder.createEmptyMovieClip("loader", 1);
    //Load an image to the target
    movieClipLoader.loadClip(_parent._parent.thumbs.fi
    rstChild.childNodes[2].childNodes
    .childNodes[0].nodeValue, movieClipLoaderTarget);
    // end
    now how to resize the images???

    Thanks for the reply...
    now its resizing and centering the images well but not
    according to the aspect ratio.
    see... i have one mc called imagemc_mc in which i want to
    load the images.
    so first i grab the width and height of the imagemc_mc in a
    varibale.
    var imgwidth = _root.emptymc_mc.imagemc_mc._width;
    var imgheight = _root.emptymc_mc.imagemc_mc._height;
    and then in onLoadInit() method first its check the width and
    height of the target and is it is greater than imagemc_mc then it
    resize the image to the imagemc_mc 's width and height.
    if(target._width > imgwidth && target._height >
    imgheight)
    target._width = imgwidth;
    target._height = imgheight;
    else
    target._parent._x = centerX - target._width / 2;
    target._parent._y = centerY - target._height / 2;
    target._parent._x = centerX - target._width / 2;
    target._parent._y = centerY - target._height / 2;
    its working ....but if image is greater than imagemc_mc then
    the image is squeezing ....it is not according to the aspect ratio.
    please reply..............
    thanks a looooooooot

  • Canon Pixma Pro-100 printer ejects 3.8 in of a 4X6 paper and prints only 2.2 in of the image printing from Photoshop CS6, I'm sure I set everything correctly - what could I be missing?

    Using Mac Pro running Snow Leopard (10.6.8) & editing & printing from Photoshop CS 6.
    Have new Canon Pixma Pro-100 printer and set it up yesterday.  First thing printed was a
    document from MS Word (a letter) 8.5 X 11 plain paper - this came out OK.  Next I fire up
    Photoshop and open a 4 X 6 inch image to do a test print.  I set it up in the print dialog as
    4X6 paper, Canon's Pro Glossy paper profile, rear tray, standard print quality, Photoshop
    manages the color.  I load the paper in the rear tray close the covers and hit print.  Now, when
    it starts to print the printer moves about 3.8 inches of paper out of the printer and starts printing
    on the remaining 2.2 inches then spits the paper out.  It does this in Photoshop (any image it doesn't
    matter), and it does it printing from Capture NX.  I have been able to get it to print on the paper
    correctly using Apple's Preview program but that that's not going to do me any good.  I was on
    the phone with Canon tech support for about 2 hours and they were completely puzzled suggesting
    I would have to use Canon's printing apps instead to print - that doesn't do me any good either.
    I want to be able to print from Photoshop.  Any one every heard of this or experienced the same
    problem? Thanks JamesD!

    Hello again. I recognize that a print is good if you like it and bad if you don't, despite what others might say, but I will at least share my experiences. They might help you or others who are following this thread.
    My monitor is calibrated with Spyder 3. Gamma 2.2, 6500K, 83 cd/m^2. Contrast at 50%; brightness about 52%. My monitor lets me choose blackness level - it defaults to 50%.
    When I print the test image I linked to above, using Lightroom, with no adjustments, my technical output is as follows:
    Middle step wedge shows twelve disticnt steps. Whitest step is color of unprinted paper.
    It varies from paper to paper, but I can discerne at least the 252 step and on some papers 253 - telling me I have good highlight detail.
    On the black side I discerne 8 or 10, nothing lower. (That sounds like what you are reporting).
    Artistically I am very happy how my print looks - nice red strawberries, good flesh tones, etc.
    One my monitor, the on-screen image is almost identical to the print. I am surprised that you can see the 2 wedge step on screen at a very similar brightness.
    I also checked out this B&W test image:
    http://www.northlight-images.co.uk/article_pages/bw_printing/bw-test-image-2.html
    You are probably aware of this since you are printing with Print Studio Pro, but others may not be.
    You can print a series of test images:
    find the one that best suits your taste, enter the calibration values in PSP, and save them as a custom setting. Then, each time you want to print recall the setting.
    You can do a similar thing in Lightroom using the printer driver and User Templates.
    There would be some one-time trial and error to that approach.
    John Hoffman
    Conway, NH
    1D Mark IV, Rebel T5i, Pixma PRO-100, MX472

  • How do I print multiple identical small images on the same sheet of paper?

    I would like to know how I can produce multiple identical small images (10mm x 10mm) on the same sheet of paper?
    I used to be able to do this in older versions of Adobe Photoshop.
    Thank you.

      Try using picture package. There is an option to print 10 copies on a single sheet.
    1. Select your photo in Organizer
    2. Click File >> Print
    3. Choose picture package in section 4 of the print dialog
    4. Select layout in section 5 and choose fill page with first photo
    5. Click print button
      Click to view image

  • Why is the image moving when I print on 300gsm card, but is fine on 160gsm paper?

    Hello,
    I am printing a double sided invitation for a customer. I am not sure what it was originally set in as I have only been given the pdf up to now. The invite has a thin black line around the writing.
    I am trying to put a proof together so they can see it on the colour they've chosen, when I cut it out (using their crop marks) on 160gsm everything lines up nicely, however, when I cut it out from 300gsm I end up cutting either the top or the bottom off as the image has moved. I am sure this is down to the weight of the card but how do I (or the customer) counteract this and what is the term for the issue? (If there is one)
    Thanks
    Louise

    Can you duplex the 300 gsm card inside the machine?
    Or are you forced to print one side and then run the cardstock through the machine 2nd time to print the other side?
    Double sided heavier cardstock is more problematic than paper and this issue is a common occurence.
    Are you using the bypass tray or (if your printer allows it from a drawer?. usually there are limits to the stocks that can be run from drawers on smaller, less expensive machines)
    It may help if you make sure the correct media type/weight  and  drawer/bypass tray is selected correctly in your print dialog/print setup.
    There may be more than 1 place to select these parameters; check them all
    Also check the media/weight setting on the printer itself for the bypass or drawer you are using.
    There may be no real solution to achieving perfect registration from front to back on all type of media in your machine.
    Good Luck!
    Just realized you are printing from PDF. Make sure that Actual Size in selected each time in the print dialog when printing both sides. sometimes it defaults to Fit when you aren't paying attention and this can cause problems.
    You wrote: The invite has a thin black line around the writing.
    Do you mean they placed a stroked box around the edge of the invitation? This is a no-no. The crop marks should be adequate. A thin stroked box at the trim size will be an invitation to disaster when cutting a stack of printed items, even single sided would be hell, Double sided, forget it. Have them remove the box and just have crop marks. When cutting you will obviously cut off some of the marks which makes it difficult to determine the later cuts.  This is when you get out a ruler to determine the settings you need to make for these cuts using your cutter.

  • Images in the full screen lightbox are not centered horizontally on the screen. Is there a way to center the images?

    I have tried it in different screen sizes but teh result is all same. Horizontally images are slightly on the right. How can I center the images?

    Hi,
    Thanks for your answer. It is ok when using the lightbox without full screen option. When I use the fullscreen option, the container of the image is centered but the image in the container is not. I do center everything but when it comes to full scren there is nothing like centering.
    Here is what happens when I view in the browser:

  • How to keep the image centered in the window when mouse zooming in cc 2014

    I,m not able to keep the image centered in the window when using the mouse scroll wheel for zooming.

    Ctrl + and - keys are meant for "center zoom".  As far as I know, the zoom tool is a "point zoom" tool. If you move the zoom tool with your mouse, it will zoom in on that part of the image.
    Also Ctrl 0 is "fit to screen" and Ctrl 1 is 100% zoom. (Use Cmd if this is a Mac)
    Gene

  • I downloaded the trial versus of Adobe Illustrator to print clip art to my Graphtec CE 5000 vinyl plotter, the image goes to my paper printer instead, my question is how I set the illustrator to print to my vinyl cutter?

    How do I connect the trial version of Adobe Illustrator to my Graphtec CE 5000 vinyl plotter?  When I go to print the image goes to my paper printer, any help will be appreciative

    Yes, I have been using the software that came with this printer and has been working great for 2 years however I couldn't print clip art, I asked the place that sold the plotter to me and they said with the software that came with the printer I could not print clip art and I had to formal an illustrator and recommended Adobe
    Sent from my iPhone

  • Centering Images using CSS but having links on the Images

    Hi all,
    I have a problem on centering an image using CSS. I read on many forums that you have to use margin-left , margin-right and set to auto. and also set the display:block which I had done.
    The problem is if I want to have a link from the image. Because I have set the display to block, the link will span the entire container containing it! How do I resolve that? I only want the image to be linkable and not the entire container!
    Thanks for reading!

    Murray *ACP* wrote:
    Because I have set the display to block, the link will span the entire container containing it!
    That's incorrect.  If the display:block is applied to only the IMAGE, the anchor tag will be exactly the same dimensions as the image and will not fill the container.
    Hi Murray,
    Weirdly it does in my experiments. (code below). Even if I set the 'a' tag to the width of the image it still makes the whole <div> container clickable:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    #imgWrapper {
        width: 900px;
        margin: 0 auto;
        border: 1px solid #000;
    #imgWrapper img {
        margin: 0 auto;
        display: block;
    </style>
    </head>
    <body>
    <div id="imgWrapper">
    <a href="http://www.bbc.co.uk"><img src="slice_2.jpg" width="595" height="130" /></a></div>
    </body>
    </html>

  • Print multiples of the same image on one paper. I tried to change the layout to 9 per page, but it's only showing up and printing one per page, though it is the size i would like. But only one image is showing up as opposed to 9

    I'm trying to print multiples of the same image on one paper. I tried to change the layout to 9 per page, but it's only showing up and printing one per page, though it is the size i would like. But only one image is showing up as opposed to 9. HELP!!Version 7.0 (826.4)
    I'm using Preview Version 7

    Hello @kgingeri1, 
    Welcome to the HP forums.
    If you have sent a test print via ePrint, and experience this issue, i would call the Cloud Services department.
    If ePrint works fine, it is definitely a Google Cloud Print issue.
    Also, when you print from your android device, are you using Google Cloud print or the HP ePrint app?
    Please call our Cloud Services at 855-785-2777.
    If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Hours:
    Mon-Fri. 8am - 11pm, Sat. 9am-8pm - EST
    Mon-Fri. 7am - 10pm, Sat. 8am-7pm - CST
    Mon-Fri. 6am - 9pm, Sat. 7am-6pm - MST
    Mon-Fri. 5am - 8pm, Sat. 6am-5pm - PST
    Aardvark1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!

  • Last night suddenly when I right-click-view-images in firefox, they appear centered and against a black background. It's usually meant to be a white background and the image appearing at top left. How to revert it?

    I'm having trouble with something in firefox, it's quite minor but still bugs me. Last night suddenly when I right-click-view-images in firefox, they appear centered and against a black background. It's usually meant to be a white background and the image appearing at top left. I can't remember what I did to change this if it's my fault; if someone knows how to revert it I'd be thankful.

    cor-el : thanks for the pointers! I wish the solution isn't an add-on every time ... if such long-standing behaviour is going to change, the least that could be done is put in an about:config option to get back the old behaviour.

Maybe you are looking for

  • Documnets are not picking while posting tds challen

    Hi, I have one issue related to TDS When I have posted document it is having block for payment indicator R.This indicator is having for all documents but one document is not picking up while doing the j1inchl. Thanks RAVi

  • I installed the driver for my hp t1300 and when i print, it opens my webbrowser

    I recently installed the driver for my T1300. When I try to print from AutoCAD 2013, it opens a web browser and puts my print in the que on HOLD. Please tell me how to stop this from happening. 

  • BB not getting external IP address but can detect ...

    Hi Guys im just wondering what you guys thought to this, since Friday afternoon ove had no internet connectivity logged to ISP.  I have tried two new netgear routers both with correct config, it sees ADSL and the speed im getting ie downstream and up

  • Add component to JPanel

    Hello everyone, I have a JComboBox, and when i select an Option i would like to add a new component to the JPanel (just below the JComboBox). This is what i have at the moment, but i must be doing something wrong because it does nothing. String[] cho

  • How to double space words in pages

    I want to know how to double space WORDS NOT LINES on pages