Blank pages in pdf file!?!

I just created a 100-page book with 567 photos. All looks well in iPhoto, but when I "order" the book and then look at the generated pdf file, the first 74 pages look fine, but pages 75 to 100 are blank! I've repeated this process several times and each time the results are the same.
Anyone have any idea why and what I can do about these blank pages? I'd like to submit the book to Apple as soon as possible, but I don't want to take a chance of receiving a book with 25 blank pages.
Thanks!

Hi!
I'm using the Picture Book theme. And after much tinkering, I think I've found the problem -- and the solution.
Remembering posts from some time ago discussing ways to improve the quality of the printed photos -- including tweaking the iphoto prefs file -- I used the Property List Editor app to check my book settings (BookTargetDPI-BookTargetMediumIMageDPI-BookTargetSmallImageDPI). The three items were all set to 300. I reduced them to 250 each, then tried 'ordering' the book again. Lo, and behold, there were now 20 fewer blank pages. So I set about playing with different combinations of settings, trying to find the optimum resolutions that would print all 100 pages. I've ended up with something like 250-220-220.
Now I have no idea what these settings actually control, or what the optimum settings would be for this or any other book project, but clearly, they affect how many pages are accepted for printing. While the 300-300-300 settings worked for my last book, that book was only 20 pages. For this current book, those numbers are too high.
I looked at many of the other posts in this forum and wonder if those having trouble with blank pages haven't also played with these settings. I tried moving the iPhoto prefs file out of the Library/Preferences folder in order to force iPhoto to create a new file with default settings, and discovered that 150-150-300 seem to be Apple's preferred settings. But the very first book I ordered from Apple, which used those settings, was a bit disappointing in terms of resolution. Hence my boosting of these numbers for the second book.
The problem of blank pages could also have something to do with file size. At the higher resolutions, the generated pdf file tipped the scales at a beefy 193 MB, but at the lower resolutions, the pdf file is a relatively svelte 133 MB. There might be some limitation built into iPhoto to prevent people from trying to send1 GB pdf files to Apple's printers.
In my case at least, the problem is NOT related to the number of photos I'm using. After playing with the numbers, I actually went back and added a dozen more photos, pushing the total to 587 across 100 pages. And with the new resolutions, all photos on all pages print fine.
I wish I knew what all of this meant and how it could be used to predict iPhoto's book creation behavior, but at least I'll be able to print this book now.
Thanks for your quick reply! Hope my experiences help someone else with similar problems.

Similar Messages

  • Officejet 6500 prints 1 blank page from pdf files and nothing else

    We just installed this printer.  It prints from websites, word, quickbooks just fine.  It also successfully copies and faxes.  When we try to print from a adobe pdf attachment it prints one blank page and that is all.  This also happens when we try to print from googledocs.
    Thanks!
    Message Edited by laura1982 on 06-05-2009 11:19 AM
    Message Edited by laura1982 on 06-05-2009 11:20 AM

    I have the same problem with an HP Officejet Pro L7680. Moreover, it now only prints double-sided!

  • Blank page when pdf files are opened in reader 9

    I have an issue with reader 9 and opening pdf files in internet explorer 7. A large number of computers on my network loose the ability to open pdf files in internet explorer 7.
    When this event happens and after uninstalling Adobe reader 9, and doing a reinstall I am able to view these files normally. However the problems returns within a day.
    I am looking for clues as to what could be breaking the ability to view pdf file in internet explorer 7.

    Hi,
    We can use jQuery plugin to open the PDf file in browser.
    The following link for your reference:
    http://www.jqueryrain.com/2012/09/best-jquery-pdf-viewer-plugin-examples/
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Spool List more than 99 pages to PDF File to Mail

    Hi All,
    I want to convert a big spool list (342 Pages) to PDF file to send it by e-mail.
    I use the following code to convert my spool to PDF file:
    Convert to PDF file*
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid              = w_spool_id
          no_dialog                = 'X'
          dst_device               = c_device
        IMPORTING
          pdf_bytecount            = gd_bytecount
        TABLES
          pdf                      = it_pdf_output
        EXCEPTIONS
          err_no_abap_spooljob     = 1
          err_no_spooljob          = 2
          err_no_permission        = 3
          err_conv_not_possible    = 4
          err_bad_destdevice       = 5
          user_cancelled           = 6
          err_spoolerror           = 7
          err_temseerror           = 8
          err_btcjob_open_failed   = 9
          err_btcjob_submit_failed = 10
          err_btcjob_close_failed  = 11
          OTHERS                   = 12.
      CHECK sy-subrc = 0.
    Transfer the 132-long strings to 255-long strings*
      LOOP AT it_pdf_output.
        TRANSLATE   it_pdf_output           USING ' ~'.
        CONCATENATE gd_buffer it_pdf_output INTO gd_buffer.
      ENDLOOP.
      TRANSLATE gd_buffer USING '~ '.
      DO.
        it_mess_att = gd_buffer.
        APPEND it_mess_att.
        SHIFT  gd_buffer LEFT BY 255 PLACES.
        IF gd_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    The problem with the FM 'CONVERT_ABAPSPOOLJOB_2_PDF' is when my spool have more than 99 pages. In this case, the FM generate a backscreen job (sm37) to convert my spool and generate a binary PDF spool.
    After this step, the 'FM SO_DOCUMENT_SEND_API1' send an e-mail with the binary PDF File recovered in the spool list but i can't open the file with Adobe Reader because the format is wrong.
    Someone knows how could i convert my big spool list to PDF file to send it by e-mail adress ?
    Thanks a lot for your precious help that i need so much !

    Generate big spool list
    REPORT  ZGEN_SPOOL.
    tYPE-POOLS: slis.
    TYPES: BEGIN OF str_mara,
    matnr TYPE mara-matnr,
    ersda TYPE mara-ersda,
    ernam TYPE mara-ernam,
    laeda TYPE mara-laeda,
    aenam TYPE mara-aenam,
    vpsta TYPE mara-vpsta,
    END OF str_mara.
    DATA: i_mat TYPE TABLE OF str_mara,
    wa_mat LIKE LINE OF i_mat.
    DATA:params LIKE pri_params.
    DATA: days(1) TYPE n VALUE 2,
    valid TYPE c.
    DATA: obj TYPE REF TO cl_salv_table.
    SELECT matnr
    ersda
    ernam
    laeda
    aenam
    vpsta
    UP TO 4999 ROWS
    FROM mara INTO CORRESPONDING FIELDS OF TABLE i_mat.
    TRY.
    CALL METHOD cl_salv_table=>factory
    IMPORTING
    r_salv_table = obj
    CHANGING
    t_table = i_mat.
    CATCH cx_salv_msg .
    ENDTRY.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING
    * destination = 'QAS'
    list_name = 'ZTEST_VERTEX'
    list_text = 'TEST'
    no_dialog = 'X'
    immediately = ' '
    expiration = days
    IMPORTING
    * OUT_ARCHIVE_PARAMETERS =
    out_parameters = params
    valid = valid
    * VALID_FOR_SPOOL_CREATION =
    EXCEPTIONS
    archive_info_not_found = 1
    invalid_print_params = 2
    invalid_archive_params = 3
    OTHERS = 4
    IF sy-subrc ne 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    TRY .
    NEW-PAGE PRINT ON PARAMETERS params NO DIALOG.
    CATCH cx_sy_nested_print_on .
    ENDTRY.
    CALL METHOD obj->display.
    NEW-PAGE PRINT OFF.

  • I recently signed up for a one month trial of adobe pro.  I logged in.  I cannot convert a single page of PDF file to word or Excel with this trial.  I just get the request to sign up for a year.  What good is the trial if I can't try it?

    I recently signed up for a one month trial of adobe pro.  I logged in.  I cannot convert a single page of PDF file to word or Excel with this trial.  I just get the request to sign up for a year.  What good is the trial if I can't try it?

    Hey vcomfort6,
    Please ensure that you are using Adobe Acrobat and not Reader to convert PDF file to word or excel.
    Could you tell me whether it is a scanned document? Does this happen with all PDFs or any specific one?
    Do you get any error message? What exactly happens when you try doing the same?
    Hope to hear from you.
    Regards,
    Anubha

  • I like to edit single letter in the pdf file having more then 1000 page, Example "T" in place of "V" in all the 1000 pages in pdf file. Please let me know

    I like to edit single letter in the pdf file having more then 1000 page, Example "T" in place of "V" in all the 1000 pages in pdf file. Please let me know !

    In a PDF you can´t change single letter.
    You can only try to convert the PDF document into a Word document.
    Now you can search and replace a letter.

  • [solved] How to remove specific pages from PDF file?

    I'm looking for a way to remove few pages from PDF file.
    Last edited by delor (2008-07-04 10:28:22)

    To remove first page I did this:
    pdftk original.pdf cat 2-end output result.pdf
    Any other propositions ?

  • Printing web page to pdf file using Acrobat Standard 9

    When I print a web page to a pdf file, the text in the file is mostly garbled.  I have no problems in creating pdf files from MS office or other software.  I have Windows 7 Home.
    Any help will be appreciated.
    Thanks

    I do have Internet Explorer 9 and I was able to print web pages correctly following  your suggestions.
    Thanks for your help.
    Date: Sat, 12 Nov 2011 06:53:59 -0700
    From: [email protected]
    To: [email protected]
    Subject: Printing web page to pdf file using Acrobat Standard 9
        Re: Printing web page to pdf file using Acrobat Standard 9
        created by Bill@VT in Acrobat Windows - View the full discussion
    There were problems with IE9 on it's initial release and that may be what you are seeing if that is the browser (you did not indicate the browser and that may be a key). If you have a different browser you might try that one with the same pages to see if it browser related.
    By saying garbled it sounds like the fonts did not make it or you have selected "Use Local Fonts" in Acrobat. Try checking the latter first. Then check if the fonts are embedded in the PDF by checking the document properties (ctrl-D). If they are not, go back to the browser and select the press or print job options before printing and see if they get embedded and if your problem is resolved.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4021509#4021509
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4021509#4021509. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Acrobat Windows by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • I scan a page to PDF file, but I  couldn't to highlight it.

    I scan a page to PDF file, but I  couldn't to highlight it. I use Adobe Reader, is any way I can use this funtion?

    You need run OCR first using Acrobat, then you should be able to highlight text.

  • Can't delete blank page in combined files PDF

    I combined a number of files to create a new PDF binder in Acrobat X, then added a blank page in the middle using Tools > More Insert Options > Insert blank page. I later decided I didn't need the blank page and tried to delete it but received this error message:
    One or more pages are in use and could not be deleted.
    I gave up, trashed the PDF, and started all over again. But the new binder included the blank page in the same spot, and it won't let me delete it! I tried creating the PDF using my old Acrobat Pro 8. It created the file correctly, but when I closed the file and reopened it, it opened in Acrobat X - with the blank page again! How do I get rid of the blank page?

    Open the file in Acrobat, delete the blankpage, and save the file.

  • I use iMac desktop. I can't save web pages as PDF file by using Firefox, but by Safari is fine.

    I'm using Mac OS X 10.6.4. Today, I tried to save my email content as a PDF file. However, I only got a PDF file that have partial content of email. Then I adjust the printer setting and did it again, then I only got a blank PDF file. There was nothing inside. Then I tried to save email as a PDF file by using Safari browser. And I got a complete and sucessful PDF file. I usually save web pages or web mail, online receipt as PDF file by use Firefox. But since I have updated to the new version, there were many problems with my Firefox. I tried to restore all my application and made Firefox in the old 3.6.3 version which I used to have no problem. But now still not working.

    I solved it for myself: it was my HP smart-web printer crap that was a plug in and add on for firefox that somehow automatically got installed when I upgraded to 5. I disabled both in the add-ons manager, and voila, printing is working.
    It seems there are many things, like this and the Google toolbar, that were screwed by the oddly fast update to 5. Looks like Mozilla didn't give anybody any notice! Must've been some really bad security hole.

  • I use iMac desktop. I can't save web pages to PDF file by using Firefox, but by Safari is fine.

    I'm using Mac OS X 10.6.4. Today, I tried to save my email content as a PDF file. However, I only got a PDF file that have partial content of email. Then I adjust the printer setting and did it again, then I only got a blank PDF file. There was nothing inside. Then I tried to save email as a PDF file by using Safari browser. And I got a complete and sucessful PDF file. I usually save web pages or web mail, online receipt as PDF file by use Firefox. But since I have updated to the new version, there were many problems with my Firefox. I tried to restore all my application and made Firefox in the old 3.6.3 version which I used to have no problem. But now still not working.
    ''Duplicate post, continue [https://support.mozilla.com/en-US/questions/746583 here]''

    hello jlzibell, please go through the troubleshooting steps described at [[Websites say cookies are blocked - Unblock them]].

  • HELP! BLANK PAGES ON PDF

    Hi From Paris, France. I need your help, i ceated my 4th book (on iphoto 5.0.4), it's a large one with the maximum pages (100) and around 280 pictures. When i saved it as a pdf file o have a look before ordering, i had the bad surprise to discover lots of blank pages, i tried several times with the same result. After reading the topics in the iphoto 5 forum, i tried to find the prefs to reduce the dpi's from 300 to 230, but apparently it's not possible on Tiger anymore. So i opened some pictures on PS and reduced the dpi and no change! So finally i deleted some pages (thing i really didn't want to do!) & it's better but i still have 2 or 3 blank pages. So my last hope is with you, has someone had this problem + the solution , & what if i buy the last version of iphoto, will it work? Last question, but not least, if i buy the last version when i install it what happens to all my photos & books? I hate apple for offering a book with 100 pages & at the end, when you've spend hours & hourss on it, you discover that the system has a bug!
    Many many thanks if someone can help!

    See [[Firefox keeps opening many tabs or windows]]
    You can have infinite tabs opening if you have selected Firefox as the application to handle a file if you get an ''Open with'' download window.
    Firefox should not be selected as the application to handle a file and you have to remove the action that is associated with that file type.
    You can delete [http://kb.mozillazine.org/mimeTypes.rdf mimeTypes.rdf] in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder] to reset all actions or set that action in Tools > Options > Applications to 'Always Ask'.
    See http://kb.mozillazine.org/File_types_and_download_actions ("File handling in Firefox 3 and SeaMonkey 2" and "Reset Download Actions")

  • Blank pages in pdf exported from InDesign

    Forgive me if I've already posted this, but I'm new here. All was well with a book project until yesterday when I exported to pdf and two pages came up blank. Why would that be and how can I fix it?

    Actually, there is no such set of privileges as preview privileges in terms of embedding. TrueType and OpenType fonts either allow no embedding (the font cannot be embedded within a PDF, EPS, or ePUB file under any condition), preview and print embedding (the font may be embedded, but only for purposes of display and printing - such text within the PDF file may not be edited), or installable embedding (the font may be subsequently installed someplace else).
    When you export PDF from InDesign, if the font used within the InDesign document has at least preview and print embedding privileges, it will be embedded within the PDF file. Otherwise, you will likely get a warning from InDesign export as well as a PDF file that does not display properly unless you have those fonts actually installed on the PDF file recipient's computer system.
    The way to check as to whether the font is properly embedded in a PDF file is to open the file in Acrobat, press Command D, and click the Fonts tab at the top of the dialog box. Each font referenced in the PDF file is listed. If the font is embedded, it says either Embedded or Embedded Subset along with the font's name. If the font isn't embedded, it will also tell you what font is being used for display, possibly the same font accessed from your installed fonts or perhaps a substitution font.
              - Dov

  • Opening pages made pdf files

    After saving a project in Pages format I often save again as a pdf document and distribute them to others as a pdf document. When I save it as a pdf document using Pages to my desktop, the icon is just a blank square and Pages cannot open its own pdf file?

    James,
    When I export a document to pdf format, the icon says pdf on it.
    Pages doesn't open pdf files. What you're describing is normal behavior. A pdf file should be opened using a pdf browser like Adobe Reader, Acrobat, or Preview.
    -Dennis

Maybe you are looking for

  • Solaris 8 on Toshiba Notebook

    I?m buying a Toshiba notebook to run Solaris 8 and Windows 2000. My options of buying are: Toshiba Satellite 1800-S253 or 3000-S353. Is Solaris 8 compatible with one of these models, including graphic applications ? Thanks for answers.

  • Employee vendor creation job cancelled

    When we were trying to create the vendor in backgroud, using the standard program RFBIKR00, job failed. Here is the error message, no idea what happend. Job started Step 001 started (program RFBIKR00, variant &0000000023327, user ID ******* Session  

  • How to use Hierarchy for Planning?

    Hi everybody, I have created a query, which is input ready. This query uses a hierarchy which contains different positions being used for cashflow-planning. My Problem is that cashflow not only consists of positions that have to be added, but also po

  • Weird error when trying to log in

    Hello, After an incredible support from an user I was able to install Developer Suite 10g. However when I try to perform this action suggested: Part 2: Steps to setup Designer 10g Time Taken: 30 minutes to 60 minutes depending on the speed of your PC

  • Buggy behavior with Windows 8.1

    I've seen a few posts related to this, but no resolution. I have a freshly installed Illustrator on a Windows 8.1 machine.  All of the settings are default as far as I know, and I haven't installed any plugins. When I started using the app, the popup