Custom-sized photobooks

I have already been printing my photobooks through Apple, which have a few size options, but at least one doesn't correspond to Kodak or Shutterfly (10x13).
I would like to continue using Apple for consistency on size and other attributes Apple offers.  iPhoto is the included software on my computer, but is quite static when it comes to templates (thus a need to upgrade to Aperture, but I am not sure I am sold on Aperture, thus the reason why I am trying PSE9).  I was wanting to make custom album pages (where necessary), but cannot seem to find a way to pick my own page size, etc.  Is there a way to do this?
And, how do you get it (selecting only the pages you want) to print to a pdf so I could import those pages into iPhoto (the only way to print through Apple, I believe, is through iPhoto or Aperture, which I can do if I import the pages as large jpegs)?

I have a photobook started with two pages to start open.  I have clicked on the page in the edit window and gone to edit>.  I have clicked on the page in the right section with the pages mapped out.  Neither location ungreys the edit>add blank page or edit>add page with current layout. 
I am assuming once this does work for me, that is where the page size is offered???  This seems odd, because I would think the whole album would need to be the same size, so why would it all of a sudden let you add a page that is larger or smaller than the title and any other page you have created?

Similar Messages

  • How can I create a custom sized video in PP cs6?

    How can I create a custom sized video in PP cs6? I have read references to the "desktop" setting but cannot find it. I am trying to find the right settings for a 1080 px x 486 px video (which I need to qualify for hi res on Vimeo).  I need to output a 450 x 1000 px video for
    my website. Ideally, I'd like the sequence settings as well as the output settings. I am using still shots- no actual video.

    What are the exact properties of the still images, particularly the pixel dimensions and pixel aspect ratio (PAR).* The letterboxing (black bars top & bottom) is most likely a result of a mismatch in these settings. If this is the case, then the easiest fix is to make sure not only the dimensions but the PAR match.
    Say for instance your source images are 1000x1000 with a PAR of 1.0 (square pixels) and your sequence is set also set to 1000x1000 but with the PAR set to D1/DV NTSC (0.9091), the result would be letterboxing as seen here:
    *if you're not sure about the PAR of your source images, right click on one of them in the Project panel and select Properties.

  • Default printer does not appear in custom-sized templates

    I posted this question in the 'Pages' community, but received no replies, so I am possting it again here.
    I now have an Epson XP-750 printer-scanner. I have set it as my default printer in System Preferences. When I create a document in Pages whose paper size is one of the standard ones catered for by the XP-750 or open a previously saved one in one of those sizes, or I open a document from one of the templates provided by Pages, the printer shown in Page Setup is always the XP-750. But if I create a document in a custom size (such as a 9 cm x 14 cm correspondence card), Page Setup shows 'Any Printer' until I re-set it to 'XP-750', and even if I save the document or save it as a template and then re-open it, the printer is always shown as 'Any Printer'.
    Is there any way of making the XP-750 'stick' as the printer shown in Page Setup even in these custom documents?

    Thanks for this, Joe Bailey. I am ignorant of programming and cerainly wouldn't dream of trying to make such a modification. But the interesting thing is that if I create a document in MS Word and give it a custom size, the printer's name and paper size are retained after saving, closure and re-opening, though they are not retained in Pages.
    I want to use Pages for my custom-sized correspondence cards because the database that I use for mail merge is in Numbers. I suppose I could export it as Excel and use that with a Word correspondence card, but it all gets a bit messy, especially when it comes to updating the database, and will be a lot of work, as I have several such cards with different letter-heads, etc.
    I contacted Epson about this problem, and they said it was a matter for the application in which the custom-sized document was created — i.e. Pages in my case — so according to Epson it is not a matter of the printer driver.

  • Problems printing on custom sized paper.

    Hello all,
    I am trying to iron out my problems with printing on custom sized tractor paper (using an impact printer). Every time I print a test page, the printer behaves as if it was loaded with tractor paper that is 11 inches long, rather then the 7 inches that the forms are on.
    Before I list my code, let me explain everything that I have done. I am running Windows XP, so I went to the Printers and Faxes folder, clicked File > Server Properties, and created a custom form size (8.5" wide by 7" long with zero margins). Going back to the Printers and Faxes folder, I right clicked on the impact printer and clicked properties. From there I clicked the Device tab and selected my custom form that I had created for the tractor feed section. I then clicked the general tab and clicked the printing preferences. From there I clicked the Paper/Quality tab and selected Tractor Feed for the source. Then I clicked the advance button and selected my custom form for paper size. I also changed the resolution to 360X180.
    The printer itself has hardware settings for paper size. I've went through the menu and selected 7 inches for the form length.
    Now going to the code, I created the paper object and set it size to 612 for width and 504 for height. I also changed the ImageableArea to the size of the paper (which I think eliminates the margins), and set its orientation to 0, 0. I then set the paper object to the PageFormat, and used drawString to test my settings.
    Program compiles fine. When I run it and click the button, I select the correct printer. I also went through the preferences to make sure that all the setting are correct (especially to make sure my custom form is selected.). The closest I can get the string to the corner of the page is 75, 80. On the paper it measures 7/8" from the left, and 1" from the top.
    I have tested my custom form settings with word 2007. I was able to get the text on the very corner of the paper, and the printer was able to determine where the next form started. I believe that my problem lies within my code. Any help would be greatly appreciated!
    Thanks!
    import java.awt.*; 
    import java.awt.event.*; 
    import javax.swing.*; 
    import java.awt.print.*; 
    public class Print01 implements Printable, ActionListener { 
        public int print(Graphics g, PageFormat pf, int page) throws 
                                                            PrinterException { 
            if (page > 0) {  
                return NO_SUCH_PAGE; 
            double width = 612; 
            double height = 504; 
            Paper custom = new Paper(); 
            custom.setSize(width,height); 
            custom.setImageableArea(0,0,width,height); 
            pf.setPaper(custom); 
            Graphics2D g2d = (Graphics2D)g; 
            g2d.translate(pf.getImageableX(), pf.getImageableY()); 
            //The following returns the correct dimensions (612 width, 504 height). 
            System.out.println("Width: "+pf.getImageableWidth()+" Height: "+pf.getImageableHeight()); 
            g.drawString("Testing", 75, 80); //Smaller values result in clipping. 
            return PAGE_EXISTS; 
        public void actionPerformed(ActionEvent e) { 
            PrinterJob job = PrinterJob.getPrinterJob(); 
            job.setPrintable(this); 
            boolean ok = job.printDialog(); 
            if (ok) { 
                try { 
                     job.print(); 
                } catch (PrinterException ex) { 
        public static void main(String args[]) { 
            UIManager.put("swing.boldMetal", Boolean.FALSE); 
            JFrame f = new JFrame("Test page printer."); 
            f.addWindowListener(new WindowAdapter() { 
                  public void windowClosing(WindowEvent e) {System.exit(0);}}); 
            JButton printButton = new JButton("Print test page."); 
            printButton.addActionListener(new Print01()); 
            f.add("Center", printButton); 
            f.pack(); 
            f.setVisible(true); 

    I have a similar code to print a jasperreport,
    when I ran on Windows, the report is printed normally, all the document appeared, but when I ran on Linux (Debian), the document is missing some parts of report, printed without lines, appear only the middle of report. I don't understand what happen, on windows is ok, but linux is wrong. I tried the margins, but didn't work.
    Some one have an idea that can help me?
    sorry my english, but I need print in linux.
    Thanks a lot
    JasperPrint jasperPrint = JasperFillManager.fillReport(diretorioProjetos, parametros, getConexao().getConnection());
                getConexao().close();
                PrinterJob job = PrinterJob.getPrinterJob();
                /* Create an array of PrintServices */
                PrintService[] services = PrintServiceLookup.lookupPrintServices(null, null);
                int selectedService = 0;
                /* Scan found services to see if anyone suits our needs */
                for (int i = 0; i < services.length; i++) {
                    if (services.getName().toUpperCase().contains("HPD1360")) {
    /*If the service is named as what we are querying we select it */
    selectedService = i;
    job.setPrintService(services[selectedService]);
    PrintRequestAttributeSet printRequestAttributeSet = new HashPrintRequestAttributeSet();
    MediaSizeName mediaSizeName = MediaSizeName.ISO_A4;
    printRequestAttributeSet.add(mediaSizeName);
    printRequestAttributeSet.add(new MediaPrintableArea(
    0f, 0f,
    85f,
    54f, Size2DSyntax.MM));
    //MediaSize.findMedia(85f, 54f, Size2DSyntax.MM);
    printRequestAttributeSet.add(new Copies(1));
    JRPrintServiceExporter exporter;
    exporter = new JRPrintServiceExporter();
    exporter.setParameter(JRExporterParameter.JASPER_PRINT, jasperPrint);
    /* We set the selected service and pass it as a paramenter */
    exporter.setParameter(JRPrintServiceExporterParameter.PRINT_SERVICE, services[selectedService]);
    exporter.setParameter(JRPrintServiceExporterParameter.PRINT_SERVICE_ATTRIBUTE_SET, services[selectedService].getAttributes());
    exporter.setParameter(JRPrintServiceExporterParameter.PRINT_REQUEST_ATTRIBUTE_SET, printRequestAttributeSet);
    exporter.setParameter(JRPrintServiceExporterParameter.DISPLAY_PAGE_DIALOG, Boolean.FALSE);
    exporter.setParameter(JRPrintServiceExporterParameter.DISPLAY_PRINT_DIALOG, Boolean.FALSE);
    exporter.exportReport();

  • Custom sized prints

    I have been trying unsuccessfully for hours to print a panorama on custom sized paper (5x20). I was able to print panoramas on the earlier version of Aperture (1.5) with my Epson R2400, but cannot on 2.1. In the print dialog box, I set paper size as custom 5x20. In the layout options, I have tried scaling to "custom 5x20", "fit entire page" and "fit entire image". I have tried every paper tray/paper feed on the printer and the printer will not print. Watching the print que in the printer utility while I hit the print button - it reads "printer ready", then "data being sent to printer", then the printer stops without ever starting. I try and resume the printer but it immediately reverts back to a "Stopped" mode.
    Has anyone had any success printing panoramas? Does anyone have any suggestions? Help please. This is so frustrating.
    Thanks.

    Chris and Allen,
    Thanks for your comments. I tried everything I could think of working only in Aperture, including Allen's suggestions and nothing worked. After a lot of trial and error, I finally came up with a work around using iPhoto. Here are the steps:
    1. Go into iPhoto and click on "page setup" in the "file" menu.
    2. Click on "paper size" and then click "manage custom size".
    3. Define the custom size (for margins, I selected the option to let the Epson 2400 set the margins), name it and save it.
    4. Close out of iPhoto and go into Aperture.
    5. In Aperture, in the "file menu" go to "print image".
    6. In the "Paper Size" dialogue box, the newly defined custom size created in iPhoto will appear. Select that as the paper size option.
    7. In the "Layout Option" dialogue box, select "fit entire page"
    8. In the "Border Option" dialogue box, set the appropriate margins.
    9. Finish with the "printer settings" of choice and then print.
    Its a cumbersome process, but it doesn't really take that long and I have printed several panoramas now using this work around.
    Dave

  • Paper mismatch on Envy 114 - trying to do custom-sized paper

    I just got the Envy 114.  It's been printing wonderfully for letter-sized documents.  
    Issue is:  I have custom-sized paper for invitations - 5X6.5, 5X6, 5X5.5 & 5X5.  I am not able to print from Microsoft Word 2007, I'm on Windows XP.  
    I tried to follow the directions on the support page, but when I try to choose the "paper size", there is no "custom" listing on the pull down list to add a custom size....Help!

    Hi there kellybrooklyn,
    It seems custom print sizes may not be available with your printer software. Check out this post by Travis_C, he details using an alternate generic driver to obtain the custom print sizes you are looking for:
    http://h30434.www3.hp.com/t5/Printer-All-in-One-Install-Setup/HP-photosmart-5510-B111a-gt-where-are-...
    Give his steps a shot and let us know if it helps.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • What is your export process for printing custom-sized books?

    I will be printing my first custom-sized book created in Aperture.
    Anyone have much experience doing this?
    I am assuming that exporting to pdf and then sending that file to print is the process, but I'm wondering if the compression will affect the image quality enough to be concerned for a 9''x9'' book?

    Lots of experience here.
    I outsource albums either as single page or double spread. Unfortunately Aperture only allows single page export, not as a full spread (required by some printers).
    Unfortunately the Export options are a little limited, so read on
    If you click on the Print button for your custom sized book, you'll get a dialog. Choose the PDF button at the bottom and a bunch of options will appear.
    If you just want to export a proof for a client to review, you can select Save PDF to Aperture. The files will import as 200dpi JPEGs / TIFFs depending upon the option you choose. You can then export to a sharing service / web album etc.
    If you want to export at a different dpi then DON'T choose the Save PDF to folder as JPEG option... again you'll get just 200dpi images. So what you can do is choose the Save as PDF option. When you choose that it will export the whole book as single pages in a PDF, with the embedded JPEGs (fully quality jpeg 12) at 350dpi (I know as I've checked this)....
    You can then do 2 things:
    1. For services that require a single pages, run an automator action to run through the PDF and export the images at your desired DPI and change the colour profile (eg sRGB). Your images are then exported to the same folder. Here's the action: http://dl.dropbox.com/u/117989/Save%20PDF%20to%20Folder%20as%20JPEG.zip
    2. For services that require a double page spread instead, run an automator action to run through the PDF, change the colour profile and DPI and then import to Aperture.
    What I do is have an entirely separate project called Album Proofs and import all images into there. When the action runs, it will ask where to put the images - place them in Album Proofs. I then have a custom book size that is twice the width of the album you are creating (e.g. if making a 12x9, the size is 24x9) with no margins or spacing. Then create a template album (you can reuse by right clicking and selecting Duplicate Book) that has two images per page, each image taking up EXACTLY half of the page (again no margins or spacing). I then drag the images I imported into this template, then auto-fill unplaced images. Your images are then layed out as spreads... So now what you do is re-export using the Save as PDF print option. Then run the action described in 1 above.
    Here's the action: http://dl.dropbox.com/u/117989/Save%20PDF%20to%20Aperture%20as%20JPEG.zip . If it doesn't work use the other action above and just import manually.
    Hope this helps

  • Help me open a link in a new custom-sized window.

    I know how to open a link in a new window target="_blank" but I can't figure out how to get the window to open to a custom-sized window.
    Look at this page http://web.mac.com/theshow2/iWeb/weddings/Samples/Samples.html and hit the "Sample #1" link to see what I'm talking about. I want the window to open to the size of the movie instead of all the dead-browser space around it.
    Can anybody out there help me?

    Read through this topic for some ideas about using Javascript to open links in a new window.
    http://discussions.apple.com/thread.jspa?messageID=1960167&#1960167
    It may not include the custom-sizing you're specifically interested in, but you may well find general information which will be of help.
    Visit here for iWeb Tips, Tricks and Hacks ]

  • Printing on custom-sized pages (10.625" x 11.69") with my hp photosmart pro b8350.

    I need to be able to print on custom-sized pages (10.625" x 11.69") with my HP Photosmart Pro B8350.  In fact, it's the only reason I have this printer.  I used to be able to, and don't know why I can't now.  I did upgrade my OS to Win7 a while back.  That may have been the killer.  It would really annoy me if my OS upgrade has rendered my printer totally useless.
    (In case there's no solution to my problem, then here's my next question......)
    If I can't do this anymore, I will need to buy a new printer that WILL allow me to print these special custom pages.  Any suggestions?

    The envelope size that you might be talking about is a 6.75 Regular, or 6.75R.  If you were printing on window envelopes, it would be 6.75W.  In all my life, I have never heard of a #6 ep.  Yes, you have a challenge with 6.75 because the rollers are not in the correct place for this size of item.  In order for me to print 10R envelopes, I have to insert a precut sheet of paper inside the envelope so that the envelope pulls correctly and doesn't get jammed. You might try this with your 6.75 and see if that works for you.

  • HP LaserJet 200 colorMFP M276nw-Can't print custom sized paper

    HP LaserJet 200 colorMFP M276nw
    I'm trying to print on a custom page Size (95mm x 171mm) but it starts printing about a third way down the page so the whole text insint printed. I adjusted the paper tray to the right size, canged the page size to my custom size. I tried to scale to destination paper size but the custom size wasn't in the drop-down menu (To get to the  destination paper size: Mac OSX-File>Print>Paper Handling>Destination Paper Size area>Scale to Fit Paper Size box> Drop down list | Windows-Print>Properties or Prefrences>Effects>Print Document On box>Drop down list) So I don't know what the problem is because the size in bigger than the minimum(76mm x 127mm)
    PLEASE HELP!

    Welcome to the HP Forums dancer200013,
    I see by your post that the custom size isn't printing correctly on the Mac or Windows computers.
    I can help you with this issue today.
    On the Windows computer, click on start, control panel, printers and faxes, right click the printer, left click properties, click preferences, the effects tab should be selected as actual size. Then select the Paper/Quality tab. Click on the custom button. Type in the size, type in a name you want to use, select save and OK. (if the name is too long the save button won't be active)
    Close the preferences window and reopen it again.
    Then on the paper/quality tab or Printing Shortcuts tab. Under paper size select the new paper size by the name you just created.
    Test the printer.
    Hope this helps.
    Have a nice day.
    Thank You.
    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!
    Gemini02
    I work on behalf of HP

  • HP Officejet 6210 All-in-One, print custom sized paper

    I need to print on  size 3 3/4 x 8 1/2 paper.  I click on custom size, then format the size, but it always reverts to 8 1/2 x 11.
    They suggested I go to the chooser to choose the Officejet 6210, but it is not one of the choices.  Is there another choice that would be compatible?  I'm on a deadline to print my daughter's wedding programs...any help would be appreciated!
    Is there something I could download to update my printer so it could print on this size paper?

    Yes, but it is hard to get working and only supports printing, not scanning.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Hp c4280 photo-smart added to new hp pavilion dv7 notebook. printing custom sized paper won't center

    I recently bought an HP Pavilion dv7 notebook and added my HP C4280 printer. It prints normal things fine, but when I try to print with custom size paper (for instance, 5" by 10" notecards) and want my information centered in the middle of the page, the alignment prints it in the middle of an 8.5" by 11," way off center. I've read help on word and hp and can't find an answer. The only difference is an updated version of word.
    I did download the patch and had no luck with that. Any suggestions would be great! Thanks!

    Hi - It definitely sounds like the SW or printer driver isn't recognizing the paper size.  First thing I would do is make sure that the paper size in both the printer driver and in Word match.  For the printer driver, go into File, Print and you should see an option for Printing Options or Printing Properties.  Click there and verify that you've got the paper size set correctly.  In Word (not sure which version you're using) 2010, go into Page Layout and choose Size to make sure it matches the printer driver.  Try printing again.
    I'm assuming you're using the printer driver that came with the printer?  If not, you can download the latest Win7 driver from here.  Once downloaded, install it and follow the steps above.
    Hope that helps.
    Say Thanks by clicking the Kudos thumbs up. Please mark the post that solves your problem as an Accepted Solution so other forum users can utilize the solution.
    I am an HP employee.

  • Trying to print invitations on custom sized card stock - like a postcard

    Trying to print invitations on 8.5 x 5.5 card stock (like a postcard) and I cannot change the paper to a custom size.
    When printing from the software, Print Artist Platinum 24, which has the correct size paper, the printer thinks I want to print an envelope.
    How do I get the printer to print on the custom paper correctly?

    My custom settings.
    Please mark the post that solves your issue as "Accept as Solution".
    If my answer was helpful click the “Thumbs Up" on the left to say “Thanks”!
    I am not a HP employee.

  • Can I make a custom sized movie us iMovie?

    What I am looking to create is a demonstration for an iPhone application for a situation where recording in the emulator is not feasible. I thought I'd capture a bunch of screen shots and drop them in to iMovie then use transitions so simulate the behavior of the app such as screens sliding in etc. This works well with one major exception - I can only create a movie that is 4:3 or 16:9. As such when my new page slides in the black bar slides over it first.
    I was hoping I could make the canvas for my movie a custom size that matches the size of the iPhone screen then the transition would neatly simulate the way the application transitions between screens.
    I read an article for an older version of iMovie that suggested using a PICT file as a mask but this doesn't seem to work in iMovie 11 (or I am doing something wrong).
    Thanks in advance for any assistance.
    Chris.

    With iMovie 11 you could do this, but to fit the 4:3 aspect ratio, you would have to use Letter Boxing. To do this, select the screen shot jpeg in your project, and use the Rotate, Crop, Ken Burns Tool to select FIT.
    However, there is a solution that will let you use the exact dimensions of the iPhone. QuickTime Pro will let you customize the dimensions any way you want.
    You can get QuickTIme Pro online from Apple for about $30. You will need QuickTime Player version 7, which is an optional install on the OSX install disk (if you have Show Leopard). If you have Leopard, you probably already have QuickTIme Player 7.
    In QuickTime Player 7, click QuickTime Player 7/Registration/Buy QuickTime 7 Pro.
    There is a QuickTime discussion group if you need detailed help from experienced users.

  • Aperture and Custom Sized Books

    I am starting with my own little publishing company – private, precious coffetable books. I have my own printer/bookbinder, i.e. I don‘t want to use any of the affiliated online printers that Aperture offers plug-ins for. As of now I would work my layouts with InDesign and work the fotos with Photoshop but I am very interested in the automation and integration of Aperture. So here is my main concern.
    Is it possible to create my very own templates, i.e. overall format, grids of fotos, text, other elements? I found this question in this forum from 2008 and was wondering, if by now and with Aperture 3 this shouldn’t be possible and easily so. Maybe there is even a tutorial somewhere.
    Thanks for your help. Goso

    This site Customizing Aperture Books might be  some help. There is lot you can do in Aperture itself as far as customizing book layouts before you need to resort to creating your own templates.

Maybe you are looking for