IPhoto Doesn't Print Full Image

Odd problem here. I'm having trouble printing my images at 100%. For some reason that I haven't been able to troubleshoot, when I try to print an image from iPhoto, I lose a half inch or more of the photo around the edges. This happens whether I choose 'borderless' or not.
When I bypass iPhoto altogether and use my printer software, this cropping issue doesn't exist, but I prefer some of the options iPhoto offers.
By the way, I'm running Mac OSX 10.5.8-haven't yet updated to iLife 09.
Any suggestions?

Since your image is probably in the 4:3 size ratio (from a digital camera) you will have to select a custom size in iPhoto's print window. If you're printing to 4x6 borderless stock select a custom size of 3x4 or 4x5.33 (to get the max size on the 4x6 stock.
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

Similar Messages

  • New iPhoto doesn't offer "full image" prints. Still available?

    When ordering prints from iphoto, (prior to Snow Leopard and now Mavericks), there was an option for each print to select "full image."  I don't see that anymore.  Does Mac now crop all photos indiscriminatey the same as Walgreens or Shutterfly?  If Mac doesn't offer full image, does anybody know a print provider who does?

    When ordering prints from iphoto, (prior to Snow Leopard and now Mavericks), there was an option for each print to select "full image."
    The option "Fit" appears in the "Print" panel, when you print to your own printer, but not in the "Order Prints" panel.
    In the "Print" panel you'll see:
    You could use the Print panel to print your photo to a file, sized to a custom sheet with a border. To print a jpeg to a file, use the "PDF" option. Then reemport the image with the added border and order your prints.

  • Having trouble with iphoto, will not print full image

    Having trouble with iphoto on my laptop and desk top computers.  On laptop will not let me print full image and having trouble getting correct rotation to print
    On desk top printing too dark and cannot get correct rotation there either, seems like the problem just started recently

    Ronleedek-
    What App are you using with the microphone?  I've used Skype, which has a "test call" feature to check your microphone.
    There is a good chance your microphone is defective, possibly disconnected inside the iPad.  If an Apple Store Genius can not fix it, you may get a new iPad on the spot.
    Fred

  • - iPhoto won't print entire image -

    I'm running '11, 9.2.2
    I've tried all the print settings & sizes, and I am not able to print an entire image. The image is always cropped, usually quite severly. 5x7 or 8x10, major crop. Only contact sheet setting shows full image. I have to move an image to Preview to print an entire image.
    What am I missing?

    Obviously if a photo is larger than the size you are pirnting then something has to give
    You can crop to the target size prior to printing so you control the coprring or you cn print and after making the setting on the first screen click customize and right click on the image(s) and select fit to frame to add white space fill so the entire photo prinbts
    LN

  • Not Printing Full Image

    Hello,
    I'm new to prinitng in Java, and I'm trying to simply send the contents of a JTextArea to the printer, but I have two issues with the results that come out of my printer.
    1) After hitting the writeButton a few times to create text in the text area, it appears fine on the screen, however when I print the page, it cuts out the beginning of every sentence, so my printout is full of lines that read: "e this prints someday!!!!!!! rather than "Lets hope this prints someday!!!!! . I'm on a network, so I sent the job to multiple printers, and it still does the same thing....so it's definitely my code.
    2) The print job always comes out as portrait, even if I take out the comments in my code to try and force landscape, or even if I just choose in the print dialogue box to print landscape.....it always comes out portrait.
    I know I'm catching the JTextArea text somewhat, but I don't think I'm rendering it to the printer correctly. Eventually, the "write" button will actually be renamed and read a file off of a server and display the text file on the screen. I would then like the user to be able to use the print button to print a report of the text on screen.
    One last thing....Is there a way I can make this an Applet, and not have to write a securityPolicyManager for the print functions to work????
    Thanks!
    Here is my code:
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.geom.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.awt.print.PrinterJob;
    import java.awt.print.*;
    public class Print2 extends JPanel
                                 implements Printable, ActionListener {
        //NEW VARIABLES FOR SWING APPLICATION
        static private final String newline = "\n";
        JFrame frame;
        JButton writeButton, printButton;
        JTextArea log;
        public Print2() {
            super(new BorderLayout());
            log = new JTextArea(30,60);
            log.setMargin(new Insets(5,5,5,5));
            log.setEditable(false);
            JScrollPane logScrollPane = new JScrollPane(log);
            //Create the open button
            writeButton = new JButton("Write Sample Text");
            writeButton.addActionListener(this);
            //Create the save button
         printButton = new JButton("Print");
            printButton.addActionListener(this);
            //For layout purposes, put the buttons in a separate panel
            JPanel buttonPanel = new JPanel(); //use FlowLayout
            buttonPanel.add(writeButton);
            buttonPanel.add(printButton);
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(logScrollPane, BorderLayout.CENTER);
        public void actionPerformed(ActionEvent e) {
            //Handle open button action.
            if (e.getSource() == writeButton) {
              log.append("Let's hope this prints someday!!!!!!!\n");
         //Handle open button action.
            if (e.getSource() == printButton) {
              log.append("test print button\n");
              PrinterJob printJob = PrinterJob.getPrinterJob();
                     printJob.setPrintable(this);
                 if (printJob.printDialog()) {
                          try {
                                                    //Tried adding these lines here to print Landscape, but it still prints PORTRAIT
                       //PageFormat landscape = printJob.defaultPage();          
                       //landscape.setOrientation(PageFormat.LANDSCAPE);          
                                      printJob.print(); 
                          } catch (Exception ex) {
                                   ex.printStackTrace();
         public int print(Graphics g, PageFormat pf, int pi) throws PrinterException {
                 if (pi >= 1) {
                          return Printable.NO_SUCH_PAGE;
                   drawShapes((Graphics2D) g);
                      return Printable.PAGE_EXISTS;
         public void paintComponent(Graphics g) {
              super.paintComponent(g);
              Graphics2D g2 = (Graphics2D) g;
              drawShapes(g2);
         public void drawShapes(Graphics2D g2){
              log.paint(g2);
        private static void createAndShowGUI() {
         try{
              UIManager.setLookAndFeel(
                          //UIManager.getSystemLookAndFeelClassName());
                   "com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
             } catch (Exception e) { }
            //Create and set up the window.
            JFrame frame = new JFrame("Print Tester");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            JComponent newContentPane = new Print2();
            newContentPane.setOpaque(true);
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();

    The graphics object passed to the print method has (0,0) as the coordinates of a corner of the paper.
    (Which corner depends on your orientation.) But pages are printed with margins (usually 25mm=1inch)
    on all sides -- that is why text is being clipped. To fix this, use the imageableX/Y properties
    of PageFormat:
    public int print(Graphics g, PageFormat pf, int pi) throws PrinterException {
        if (pi >= 1)
            return Printable.NO_SUCH_PAGE;
        Graphics2D g2 = (Graphics2D) g;
        double x = pf.getImageableX();
        double y = pf.getImageableY();
        g2.translate(x, y);
        drawShapes(g2);
        return Printable.PAGE_EXISTS;
    }As far as portait/landscape mode: letting the user choose in the page setup dialog works for me:
    public void actionPerformed(ActionEvent e) {
        if (e.getSource() == writeButton)
            log.append("Let's hope this prints someday!!!!!!!\n");
        if (e.getSource() == printButton) {
            log.append("test print button\n");
            PrinterJob printJob = PrinterJob.getPrinterJob();
            PageFormat pf = printJob.defaultPage();
            pf = printJob.pageDialog(pf);
            printJob.setPrintable(this, pf);
            if (printJob.printDialog()) {
                try {
                    printJob.print();
                } catch (PrinterException ex) {
                    ex.printStackTrace();
    }Or you can explicitly set the orientation:
    public void actionPerformed(ActionEvent e) {
        if (e.getSource() == writeButton)
            log.append("Let's hope this prints someday!!!!!!!\n");
        if (e.getSource() == printButton) {
            log.append("test print button\n");
            PrinterJob printJob = PrinterJob.getPrinterJob();
            PageFormat pf = printJob.defaultPage();
            pf.setOrientation(PageFormat.LANDSCAPE);
            printJob.setPrintable(this, pf);
            if (printJob.printDialog()) {
                try {
                    printJob.print();
                } catch (PrinterException ex) {
                    ex.printStackTrace();
    }Finally, having a displayed page range of 1-9999 may be disconcerting to users!
    The way around that is to print a Pageable, not a Printable object. The standard
    Pageable object, a Book, is easy to work with. Here I let the user choose orientation,
    but you could choose it as I did above:
    public void actionPerformed(ActionEvent e) {
        if (e.getSource() == writeButton)
            log.append("Let's hope this prints someday!!!!!!!\n");
        if (e.getSource() == printButton) {
            log.append("test print button\n");
            PrinterJob printJob = PrinterJob.getPrinterJob();
            PageFormat pf = printJob.defaultPage();
            pf = printJob.pageDialog(pf);
            Book book = new Book();
            book.append(this, pf);
            printJob.setPageable(book);
            if (printJob.printDialog()) {
                try {
                    printJob.print();
                } catch (PrinterException ex) {
                    ex.printStackTrace();
    }

  • OfficeJet 8600 doesn't print full page range from pdf with Mac OS X

    I have an OfficeJet Pro 8600 linked to a Mac with OS X Mavericks
    We often need to print a block of pages (say the first 40, or 10-20 out of the middle) out of large pdf documents of 250pg or more. To do so we put in the page range under 'pages' in the print instructions box.
    The printer sometimes prints an initial block of pages, then cuts off. If we then try to print the remaining pages, it starts by printing the whole range again, with the ones we already have, and then still cuts off maybe after having done 2-3 more than the first time round. To print the whole range we've eventually had to print the last pages one at a time.
    Any suggestions as to why this is happening, and how we can stop it? It happens with documents in Adobe Reader and web pages.
    Thanks for any assistance.

    Hi @NickRN8 
    I am not sure what is causing the inconsistency in selected pages not printing, but I'd be happy to help.
    Let's reset the printing system, repair disk permissions, re-add the printer using the right driver, and try to scan again.
    Reset Printing System
    Click the Apple icon (   ), and then click System Preferences.
    In the Hardware section, click Print & Fax/Scan. The Print & Fax/Scan  dialog box opens.
    Right-click (or  Ctrl  +click) in the left panel, and then click Reset printing system…
    Click OK to confirm the reset.
    Type the correct Name and Password.
    Click OK to reset the printing system. The Print & Fax dialog box shows no printer selected
    Note: This will remove all printers in the print and Fax/Scan, any printer removed can be re-added later by clicking the plus (+) symbol.
    Repair Disk Permissions
    On the Dock, click Applications, and then click Utilities.
    Double-click Disk Utility.
    Highlight your hard drive/partition on the left (by default this is "Macintosh HD").
    Click the Repair Disk Permissions button at the bottom of the window.
    Once the repair is complete, restart the computer and add the printer back.
    When you add the printer, please ensure you are using the HP driver.
    Select Add other Printer or Scanner                                                      
    Select the printer you are adding and next to 'Use' you can select the printer driver 
    I look forward to hearing from you. If the issue remains unresolved, I will post instructions to completely scrub the HP software from the computer and start fresh.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • This is about iPhoto:  I need to print the FULL IMAGE as shown on the screen:  the image is SQUARE (equal on four sides).  iPhoto keeps cropping it into a rectangle - THIS IS NOT ACCEPTABLE!  How do I get what I see on the screen in print form???

    I need to print the FULL image as shown on the screen - the image is SQUARE (equal on all four sides).  iPhoto keeps cropping it into a rectangle - this is not acceptable!  How do I get what I see on the screen into print form?

    Like Terence explained:
    OT

  • How to get my photos printed with the full image?!

    I just bought iLife and when I select certain cropped photos to print, the top of someone's head gets cut off in the the photo. If I change sizes of prints or rotate the photo, it cuts off different amount of head but never gives the full image. I did not have this problem with iphoto before I installed this new version. I need to have access to printing photos. I use Canon MP500, ibook G4 and Airport Express for wireless printing. I think the prob is iLife cuz it didn't do this before in iPhoto and I have no prob with other applications. Help!!!!!!

    Select the photo you want to print, and click on Edit. Then click on Crop, and a drop-down menu will appear. Use this menu to select the photo size that you want to print. Then use the cropping frame to get the photo the way you want. It is important to select the correct size of the printed photo because the ratios of length to width are not the same from one size to another. For example, a 4 x 3 is closer in shape to a square than is a 5 x 7. You might have to try different photo sizes from the drop-down menu to get he result you want.

  • The photos in my IPhoto have all become mini-thumbnails and I can't open or edit them. When I print the image it comes out normal size.  How do I get the thumbnails back to the standard size and be able to work with them?

    The photos in my IPhoto have all become mini-thumbnails and I can't open or edit them. When I print the image it comes out normal size.  How do I get the thumbnails back to the standard size and be able to work with the photo files?

    What version of iPhoto and system are you running?  On the guess that you're running the latest iPhoto, 9.4.2, Try the following:
    1 - launch iPhoto with the Command+Option keys held down and rebuild the thumnails, Option #2.
    2 - It may take 2-3 attempts so don't give up after only one attempt.
    OT

  • IPhoto 08 contact print problems - after 5 images. prints pt a screenshot

    iPhoto 08 contact print problems - after 5 images. prints pt a screenshot

    Okay - So, I teach photography and have my students print contact sheets from iPhoto version 08.  I have one student (out of forty) having the following problem (I have removed preferences, reinstalled iPhoto, used the iPhoto updater for 7.1.5, reloading the printer driver and upgrading the system software to 10.6.8 {I teach in a high school, so no funds for newer software})
    The problem is isolated to one student - the others on the same machine do NOT have the same problem.  When this student selects more than 5 images, the resulting output looks as if he has taken a screen shot - the palettes on the left of the frame show and the titles he has inserted (using Batch Change) are moved on to the pictures.
    At this point, I am going to let him screenshot his submissions, just wondering if anyone else has had this problem.
    Thanks!
    Sandy Snyder

  • I'm trying to upload pictures from iphoto to stores such as walmart or costco for prints. the images won't upload to these sites. i'm new to mac so i know i'm missing a step somewhere.

    i'm not able to upload pictures from iphoto to stores such as walmart or costco to order prints. the images just won't load. does anyone know what i'm doing wrong??

    Well, since there is no function to export from iPhoto to these sites directly, here is a simple way how you can try it:
    - create a folder on your desktop
    - name it like "WalMart pics"
    - open iPhoto
    - resize it so you can still see the folder you just created
    - select the pictures you want to send to the store in iPhoto and drag them onto the new folder
    The folder now contains the pics you selected. Now go to the stores' websites and upload the pictures from that folder.
    You might also use the "Share" option in iPhoto to get the photos into a folder, but I like the direct drag and drop better.

  • .pdf prints very small - full image, but only quarter page

    i have adobe reader 10.1.1 for mac.  when I print, the full image prints, but is shrunk to the top left quadrant of the paper.  I have tried to change page scaling settings.  i have also changed advanced setting 'print as image', but none of this seems to work.  i've spent endless hours on this and am hoping someone can offer a suggestion.  this happens regardless of the original application (.xls, .doc, .ppt).

    Here's your answer
    http://forums.adobe.com/message/3810431#3810431

  • Print as image doesn't work Adober Reader X

    Recently, I tried to print out a 'For Sale' .pdf file available from autotrader.com and it split the image into two parts and didn't print out as displayed on the computer screen with an hp d2445 deskjet printer. I tried to follow a suggestion found in the forums for Adobe Reader that says to mark the 'Print as image' box in the advanced print setup part of the Adobe Reader program to no avail.
    What should I do in this situation beyond check marking this box?
    I did try another printer on another machine and it printed correctly. I called hp about this problem and they said that it was likely a problem with the Adobe Reader software or a problem with the driver for the hp d2445 printer which was purchased in 2009 but is now considered obsolete in 2011. It seems to me, that if it looks ok on the screen it should print out ok on the printer, though. So, I was disappointed for this printer. I also tried to reinstall windows 7 32 bit home premium, and reinstalled the drivers for the printer from hp.com to no avail. The troubleshooting utility for the printer indicates that all systems are go.
    -Duane

    This was happening to me with a form I created in acrobat Pro X and was testing using Reader X (accessing the fillable form from the internet so I want to make sure people can use it) for submitting.  This general preference change fixed my problem but I can't fix it for all the visitors on my website (no way to set this in the form itself after it is opened?) I can get the file to attach and create an email but only if I leave off the email address (I just enter 'mailto:' in the URL). Please let me know if anyone out there has a possible solution that will work for the web - I have an order form that can be filled out online.

  • Print Preview of Browser(IE) does not show the image, Printer doesn't print

    Hi,
    I am using a servlet to stream image (GIF) to the browser.
    Image is accessed by browser using the img tag. src attribute points to the servlet which send the image stream.
    Servlet has the image as the array of bytes. It simply write these bytes on the response object's output stream. It does not use any encoder.
    I get the image on the browser. But when I try to see the properties of the image I don't see the type of image. I also don't see the created time, modified time and size of the image. When I do Save As on this image it tries to save it as BMP instead of GIF. Also when I do the print preview I don't see the image in the preview window. When I try to print the web page, it prints everything except this image. I get small cross(image missing) on the printed page.
    I would like to know why the image attributes on browser go missing and why can't I print the image?
    I would like to add that I am getting the image as the array of bytes from a different application on which I do not have control?
    Thanks.

    I don't know much about Java Image API , but I could offer a few hints:
    - set the type of the image explicitly as GIF
    - similarly there might be a feature to set the data / time.
    Someone in the File I/O forum or Java Image forum might know better than me.

  • Outlook doesn't display print screens images sent in my inbox from other people

    Hi,
    I am using a MacBook Air. My professional Outlook never displays print screens images sent from time to time by other colleagues (they all use PC's with Windows OS), i instead have a little blue question mark icon.
    Do i need to download a specific plugin to display those print screens? Could someone help me out with this please?
    Thank you for your assistance.
    Youjine

    Yes, I have added the Page to the Workset, and also the IView to the Page.
    If I set up a temporary workset, And assign the 2 objects to it (the IView and the Page), they appear as links at the top of my Portal. When I click the link assigned to the IView, the Inbox is shown. When I click the link assigned to the Page, it only shows a blank window instead of the Inbox.
    Michael.

Maybe you are looking for

  • Issue in PDF export from InDesign CS4

    Hi, We are facing one issue while creating  PDF file from the InDesign document. The document has 2-column texts created in InDesign CS4 application. The issue is, we export the PDF from InDesign document. When we open the PDF in Acrobat and selectin

  • TS3697 Most of my photos are not available in iTunes

    When I sync my iPod or iPhone to iTunes, only approximately 600 photos are available for syncing....I have almost 7,000 photos.   All the photos appear in iPhoto.  All my software is up to date.   I tried clearing out the iPod Photo Cache as suggeste

  • Quality of photos BAD in iDvd5- is iDvd 6 any better? Jaggies, blurring...

    I've found that the quality of photos is BAD in iDvd5- and I want to know is iDvd 6 any better? Jaggies, blurring, pixelation... nothing NEAR the quality of the original photos. I've read a bunch of old posts on this topic, and I know I can't expect

  • Duration for  a Job

    Hi All, Oracle 10gR2 Need help to generate a sql script, Not getting the proper output; Need to check duration on sql statement of a Module by date. If the Module runs more than once per day, should output the Date/Time accordingly The output should

  • How to add alt tags to photos in iWeb?

    How do I do this? Both for accessability and to allow users to hover over the image and get a caption. Thank you!