Merge two books

I began to create two different books in iphoto and would now like to merge them into one without to much work. So far I have not found a way to copy paste the pages from one to the other book. Any ideas?

Actually Larry has a very good idea there.  It can be done and the images of each page can be creatyed at a resolution of 300 dpi which is what iPhoto created the PDF file at for printing.
Here's how to get a book or any file into iPhoto as a jpeg file:
1 - open the file in any application that will open it.
2 - type Command+P to start the print process.
3  - click on the PDF button and select "Save PDF to iPhoto".
Note:  If you don't have any of those options go to Toad's Cellar and download these two files:
Save PDF to iPhoto 200 DPI.workflow.zip
Save PDF to iPhoto 200 DPI.workflow.zip
Unzip the files and place in the HD/Library/PDF Services folder and reboot.
4 - select either of the files above (300 dip is used for photos to be included in a book that will be ordered).
5 - in the window that comes up enter an album name or select an existing album and hit the Continue button.
That will create a 200 or 300 dpi jpeg file of the item being printed and import it into iPhoto.  You will want to use the 300 dip option.
OT

Similar Messages

  • Merging two Aperture Books

    I have tried following all the directions I could find.  Let's call my book files Book1 and Book 2.  I exported Book2 to my mac as "book as library"  This appears to work.   I then highlight Book1 and choose Import library.  I end up with a book called Book2 (1) which is a duplicate of Book2.
    Am I doing something wrong?  Is there a way to merge two different books?

    Am I doing something wrong?  Is there a way to merge two different books?
    It is simply not possible. You can merge two Aperture libraries and move the photos from one book to another, but you cannot move the pages you played out to a different book.
    As a work-around you could print one book to PFD or JPEG and then simply add the JPEGS as full page images to the book, but the quality would suffer.
    For a full-quality merge, add the photos from the second book to the first, and then copy and paste all texts from the first to the second.

  • Can I merge photo books??

    I've created 2 photobooks using the same theme/format and would like to add entire pages from one book to the end of the other book. Is there a way to merge these two books or copy and paste entire pages in an efficient way?? Thanks for the help!

    You can't just merge them. You will have to add the photos of Book B to Book A and add new pages to A to duplicate those in B.
    NOthing was said about copying and pasting - you add the photos from book B to book a, add pages to bbok a and recreate teh pages in book a
    Another way would be to print book B to PDF sending the PDF to iPhoto and then placing the pages as full page images in book A
    LN

  • Merging two or more separate Pages documents into a single document

    Hello everyone... I have written a book as a bunch of separate Pages docs. I want to compile these together as a single document that I can edit and paginate. Therefore, I don't want to convert to PDF format, since I wouldn't be able to do any editing. Does anyone know how to merge two or more separate documents into one?
    Thanks for your time and thoughts,
    Mike Ryan

    Michael,
    Display both documents with the Page Thumbnails showing in the Sidebar. Copy the thumbnails from one document and Paste them into the Thumbnail sidebar of the other.
    Jerry

  • When I merge two contact records, some of the email addresses vanish

    Most of my contacts have multiple email addresses. When I save a new address from Mail, I often end up with multiple contact records in Address Book for the same person (same name).
    When I Merge Selected Cards to merge two of the records, one of the email addresses is erased completely — which, of course, completely negates the value of being able to merge the records. My guess is that it's because the email addresses are all listed as "Work" email addresses, and Address Book can't handle that concept.
    Does anyone know a way to make the Merge Selected Cards feature actually merge all of the data?Or at least warn me it is about to erase important data?
    Many thanks.

    I don't have a mouse with a right click. But found answer on another support thread that works easily for me.
    Mail keeps track of all your addresses to whom you sent mail before. In Mail, go under Window then Previous Recipients. Type in the address you want to drop and then click on Remove from List.

  • Merge two acroforms using itextsharp

    I've found a good bit of code on how to merge two pdf files using iTextSharp, but I have Acrofields on several forms I want to merge, and using the examples I've found the fields are not present in the final file.
    I'm going to go out and buy the iText book, but I'm a little surprised how hard it is to find samples to do this - it must come up all the time.
    I have several pdf files with acrofields on them, I want to be able to mix and match the forms into one big pdf file. Ideally this would be done in a memory stream not a file, but I can handle that part.
    Any links to samples for this would be greatly appreciated!
    Thanks,
    kpg

    You may use a forum for iTextSharp.

  • How to merge two XML's with JDOM?

    How to merge two xmls's using jdom? like:
    is there a way to add the complete content one xml into the parent node of another xml?
    //in.xml
    <?xml version="1.0"?>
    <people>
    <person>
      <name>ABC</name>
      <email>[email protected]</email>
    </person>
    </people>
    //out.xml
    <?xml version="1.0"?>
    <address>
    <city> abccounty</city>
    <state> abcstate</state>
    </address>
    Merged XML:
    <?xml version="1.0"?>
    <people>
    <person>
      <name>xyz</name>
      <email>[email protected]</email>
    </person>
    <address>
    <city> abccounty</city>
    <state> abcstate</state>
    </address>
    </people>
    import java.util.List;
    import org.jdom.Document;
    import org.jdom.Element;
    import org.jdom.input.SAXBuilder;
    import org.jdom.output.Format;
    import org.jdom.output.XMLOutputter;
    public class MergeXMLS {
         public static void main(String[] args) {
              try{
                  SAXBuilder builder = new SAXBuilder();
                  Document books = builder.build("D:/in.xml");
                  Document onebook = builder.build("D:/out.xml");
                  Element root = books.getRootElement();
                  List rows = root.getChildren();
                  for (int i = 0; i < rows.size(); i++) {
                      Element row = (Element) rows.get(i);
                      onebook.getRootElement().addContent(row.detach());
                      System.out.println(row.getName());
                  new XMLOutputter(Format.getPrettyFormat()).output(onebook, System.out);
              }catch(Exception e){
                   e.printStackTrace();
    }

    The above code only add's the first node.
    I changed the code little differently to
                  SAXBuilder builder = new SAXBuilder();
                  Document books = builder.build("D:/in.xml");
                  Document onebook = builder.build("D:/out.xml");
                 //trying to add second xml into the first
                  books.getRootElement().addContent(onebook.getRootElement().getContent()); 
                  new XMLOutputter(Format.getPrettyFormat()).output(books, System.out);
    here is the exception from the above code:
    org.jdom.IllegalAddException: The Content already has an existing parent "address"
         at org.jdom.ContentList.add(ContentList.java:218)
         at org.jdom.ContentList.add(ContentList.java:140)

  • Can you merge 2 books in keepsake into 1 or do you have to start all over

    Can you merge 2 books on Keepsake into 1 or do you have to start with a new book?

    Hi WillCD,
    Yes It is possible to copy that paragraph by selecting text and then paste that paragraph to your company letter head pdf.
    and no you can't merge two pdfs in such a way that it overlaps the data of resultant pdf.
    Does that help? Please let me know if i have misinterpreted your issue or if you need any further assistance.
    Regards,
    Rahul

  • Merge address books from 2 blackberry's

    I just tried to merge two address books.  I transfered my address book from my blackberry 8110 to my 8330.  All my 8110 contacts went over to the 8330, but all the contacts that were on my 8330 are gone.  Any idea how to recover those without losing what is on the phone now?

    Yes, good at least you have the backup.
    Do as John suggested... that is where I was headed with asking if you head the backup.
    So, backup the 8130 also, first.
    Sync it to Outlook.
    Restore the 8330 data and sync it (set the sync config one-way) to Outlook.
    Get all your data correct and fully in Outlook, and sync (set the sync config back to two way) back to the BlackBerry
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Merge two XML

    10g
    xml1 = "
    <item>
    <name>Book</name>
    <price>12</price>
    <detail></detail>
    </item>"
    xml2 = "
    <title>kids book</title>
    <year>2007</year>"
    I'm using a "DBMS_XMLDOM" to merge two XML to one.
    Would you please help me?
    result:
    <item>
    <name>Book</name>
    <price>12</price>
    <detail>
    <title>kids book</title>
    <year>2007</year>
    </detail>
    </item>

    Or maybe this?:
    SQL> SELECT xml1,
           xml2,
           XMLTYPE (REPLACE (xml1, '</item>') || xml2 || '</item>') merged_xml
      FROM (SELECT '<item>
    <name>Book</name>
    <price>12</price>
    <detail></detail>
    </item>' xml1,
                   '<title>kids book</title> <year>2007</year>' xml2
              FROM DUAL)
    XML1                      XML2                      MERGED_XML                                       
    <item>                    <title>kids book</title>  <item>                                           
    <name>Book</name>         <year>2007</year>         <name>Book</name>                                
    <price>12</price>                                   <price>12</price>                                
    <detail></detail>                                   <detail></detail>                                
    </item>                                             <title>kids book</title>
                                                        <year>2007</year>
                                                        </item>
    1 row selected.

  • Any freeware to merge two iPhoto Libraries?

    I saw lots of discussions back in 2007-8 pointing to iPhoto Library Manager... Question is if any freeware came up that can merge two libraries...
    Thanks for helping!

    SilentSifter is not a way to merge to iPhoto Libraries. It's an alternative to apps like Bridge as it's a file browser. It has no processing, especially no lossless processing, no integration with the OS, no books, no slideshows, no emailing etc etc etc

  • Please help me to merge two places.sqlite to get my old and New history at the same time, every time i rename my two places.sqlite to see my old and new history

    every time i rename my new places.sqlite to see my old history and come back rename old places.sqlite to see my new history, i tired and i found No Way to merge two places.sqlite :( but it's must be found this way for The PPL to see their old and new history :(
    Thank You all in Advance

    You can't merge history otherwise then using Sync to store the history and bookmarks of one places.sqlite on the Sync server and then disconnect.<br />
    Copy the second places.sqlite file to your Firefox profile folder with Firefox closed.
    Then setup Sync once again using that account and merge the content on the Sync server with your computer.
    * Merge this device's data with my Sync data

  • TS3988 how do i merge two icloud accounts - on on my computer and ipad, a different icloud id on my iphone?

    How do I merge two iCloud accounts into one?  One account is on my mac and ipad, the other on my iphone.

    Welcome to the Apple community.
    You cannot merge accounts, you will need to choose one and use it.

  • How do I merge two valid, purchased iTunes accounts into one so all my music is in same account?

    I have two valid, purchasd iTunes accounts.  Older iPod has some great music, I just got a new iPad and set up second iTunes account, bought some more iTunes items for that account.  Just discovered iCloud.  Now I want to put all my music from both accounts onto the cloud so I can access it on all my apple devices.   Can't seem to add from one account to the other.  Can sign onto the new account wiht my old iPod, but it will not let me sync without erasing all the music on the device.  How can I merge these two accounts into one?
    PS  Makes you wonder how helpful support is when the usernames "Frustrated," "really frustrated," and "Help!!!!" are all taken...lol

    HeyStupid wrote:
    how do I merge two valid, purchased iTunes accounts into one so all my music is in same account?
    You cannot. iTunes pruchases remian tied to the account they were purchased with.
    I just got a new iPad and set up second iTunes account,
    Why?
    Remove your info from new account, update old account as needed and use that.

  • How can I merge two iPhoto libraries stored on an external drive?

    Today I was in a One-to-One at the Apple Store.  I want to merge two i-Photo libraries into one.  One library is on my Air, the other is on my iMac.  Both libraries have been moved to an external drive.  When I try to move one onto the other, they won't go.  Yet I am certain that while at the store today, the person there started to merge them.  He did not need the library manager software in order to do so.  We stopped the merge in order to move on to another issue.  Now that I am home, I can't get the libraries to merge.  What am I failing to do?  Thanks!

    The only way to merge two libraryies is to use  iPhoto Library Manager which will merge two libraries and keep keywords, titles, faces, places, and other metadata intact.
    If one imports one library into another library every image file in the first library, originals, thumbnails, face files, etc,  get imported as an original photo. You will end up with a total mess.  DO NOT IMPORT ONE LIBRARY INTO ANOTHER LIBRARY!
    If you have backup copies of your libraries get them back and use iPhoto Library Manager to merge them.
    OT

Maybe you are looking for

  • Photoshop resolution on Macbook Pro 15" Retina display too small

    I've just bought a Macbook Pro 15" and I'm trying to use Photoshop, but the resolution its displaying the images at for 100% are too small. I have to design for the web, so need to be intricate with detail, but I'm finding it adjusts the resolution o

  • Firefox crashes - shockweave plugin

    https://crash-stats.mozilla.com/report/index/1300e5f4-5290-4f1d-a1b7-c59e52150308 https://crash-stats.mozilla.com/report/index/060c24d9-2e6a-408d-8264-e07c22150308 Hey guys - Again and again and again. Absolute fresh installation of the system - comp

  • S/C/D user codes

    i want to register in pearsonvue.com for certification, while doing the registration, system asking for S/C/D user codes, how i will get that number? i wan to write exam in Dubai or kuwait exam center. Is am doing the wrong way / regards, Sanju MS

  • Configuration for public & private network

    I am working on two Separated networks and different ip range, one of the Internet, second only to traffic between the editing workstation has tried to get the open directory path to a second network and here I am having some problems, such as that c

  • BIP download 11.1.1.5  file Disk 2 (2of2) issue

    Hi, I am unable to download and extract Disk 2 (2of2) of Oracle Business Intelligence, v. 11.1.1.5.0 for Microsoft Windows x86 (32-bit) Please provide me the solution.