How can I print my poster I made in 'pages'?

I recently purchased Aperture and then Pages. I used Pages to create a collage poster with numerous images and limited text. The poster is 26 x 26 inches. It is saved as a PDF. I just tried to print it at a local store. They said it needs to be jpeg, tiff or some other format. How can I save this so it can be printed with quality images I've included?

Thanks. I have tried / done this. It says I cannot save with the extension ".jpeg" but I can with ".jpeg.pages".
I have not taken that to the local store. So I don't know if it will work. But I'll try it. Thanks again.

Similar Messages

  • How can I find a post I made esterday

    How can I find a post I made yesterday

    Click on your name above to go to your Profile, then click on Activity. You should see your recent posts there. Click on the title of the Post to go directly to it.
    Cheers,
    GB

  • How can I print just a part of the page and not the full page with Adobe Reader v 10.1.2?

    how can I print just a part of the page and not the full page with Adobe Reader v 10.1.2? I need to print a engineering print with lot of information but information is too small in letter size and I don't have a plotter.

    Two ways to print a portion of a page: zooming or using the Snapshot Tool.
    ZOOMING:
    Zoom into the area you want to print.
    Click the Print icon.
    Under "Pages to Print", make sure "Current view" is selected under "More options" (you may need to click "More options" to open it).
    If you aren't satisfied with the preview, try clicking "Fit" under the Size button.
    SNAPSHOT
    Choose Edit > Take A Snapshot.
    Drag a rectangle around the area you want to print. 
    Click the Print icon.
    Under "Pages to Print", make sure that "Selected Graphic" is selected under "More options".
    To enlarge the snapshot to fit the sheet of paper, choose "Fit" under the Size button.
    Hope this helps!

  • How can I print the bar code in the page?

    Hi,
    I can see the bar code in the print preview but that bar code was not printed in the paper. Can any one help me How can I print in the paper.

    HI.
    if you are not able to see the barcode on paper,you need to do some printer settings..
    refer the following link.
    Hope it helps you.
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/903c3cf0344e4de10000000a11402f/content.htm
    Thanks,
    rashmi

  • How can I print more than one picture per page?

    In the previous edition of iPhoto I could print several pictures on one piece of photo paper and not have to waste one whole piece of paper on one small picture.  The latest version seems to print one photo in the middle of the page.  How can I chane that?

    Start the print process and click on the Custom layout.  At the bottom you can set the size of the image desired and see how many photos can be placed on the page size selected.
    OT

  • How can I print multiple photos on the same page from iPhoto?

    I want to print multiple pictures on one paper. How can I do that from iPhoto? If I select multiple photos they are printed on separate pages.

    Select the photos and click print - select the printer, paper size and print size (be sure that they will physically fit on the paper) and click customize - on the resulting page click on the settings icon - the gear looking thingy at the bottom - and in the selection window set print multiple photos on a page - the preview should reflect this change - and click print again to continue
    LN

  • How can I print out a section of a pages document?

    I am helping my dad with his (massive) memoirs. He wants to send individual chapters to friends and erstwhile colleagues, by PDF and snail mail. The chapters are in individual sections. How can he share or print these - without having to specify page numbers? Much obliged for any help.

    Well you could chop up the document into individual documents or just Print from page x to y to PDF.
    Since your father's friends will most likely have PCs or simply not have Pages, that would be the best format anyway.
    Peter

  • How can I print a booklet where each pdf page is vertically placed on each half page instead of one pdf on each booklet page?

    I've printed a booklet before but each pdf page had two powerpoint slides on each pdf file.  This binder has one powerpoint slide on each pdf page and if I try to print it as a binder, each pdf page takes up the whole half-page on the booklet.  I want to print two pdf slides on each page of the booklet so when I open the booklet, there are four powerpoint slides printed.  So I basically want to combine the ability to print multiple slides per page but in a booklet form.

    Why not reconstruct the pages in InDesign they way you want the double pages to appear. There may even be an imposition script available that will do the trick. You could then output to pdf all the pages you want the full spread on. Leave the original to create the pages you wanted left as is.
    You can ask in the ID forum about an imposition script. I know there was one with CS4, there may have been one with CS3.

  • How can I print more than one slide per page from the iPad????

    Im having problems printing from the iPad. I want to print more than one slide in one peace of paper. 3, 6, 9 ...
    Can any one help?

    Start the print process and click on the Custom layout.  At the bottom you can set the size of the image desired and see how many photos can be placed on the page size selected.
    OT

  • How can I print only "odd" or only "even" pages with version10.6.3

    Sorry for my stupidity, but I'm very new to Mac. Love it, but am about to throw it across the room. My old PC just had a button to click in the print window that said "print only odd pages", then I could turn the pages over and click "print only even pages" and they would be two sided.
    Where is this button on the Mac?
    Thank you

    Your welcome. BTW you may want to invest a few bucks on a good OS X book, lots of really useful information that can save you a huge amount of time. One I really like is:
    http://www.amazon.com/Mac-OS-10-6-Snow-Leopard/dp/0321635388/ref=sr11?ie=UTF8&s=books&qid=1273639626&sr=8-1
    Regards,
    Roger

  • How can I print a label on the last page of the report in the margin

    I would like to display a label on my report but has to appear only on the last page of the report in the margin area or as a footer. I have tried using the solution below that I came across in this forum. This solution only worked if I put the label as a report trailer and not in the margin of the main section of report. The problem of putting the label as a report trailer is that it will only appear at the end of the report on it's own page, i.e. on a new page. I would like the label to appear at the end of the report, on the last page which has the other report details and not to appear on a new page on its own. Could you please help? Thanks.
    1. Create a dummy query, like
    select 1 dummy
    from dual
    2. Create a package spec:
    PACKAGE pkg_globals IS
    totalPages number(3);
    END;
    2. Create a repeating frame and field for this dummy at the end of the report layout.
    3. Create a format trigger for this frame:
    function R_1FormatTrigger return boolean is
    begin
    SRW.GET_PAGE_NUM(pkg_globals.totalPages);
    return (FALSE);
    end;
    4. Create a format trigger for your margin field:
    function F_1FormatTrigger return boolean is
    pagenum number;
    begin
    srw.get_page_num(pagenum);
    if pagenum = pkg_globals.totalPages then
    return (TRUE);
    else
    return (false);
    end if;
    end;

    user8655468 wrote:
    I would like to display a label on my report but has to appear only on the last page of the report in the margin areaCreate a fixed frame at the bottom of margin area and inside the frame put your label.
    set the frame print object on: Last page
    Hope this works..

  • How can i print a PDF to fit to page ?

    Maybe this is due to some setting i am overlooking..
    I have some PDF pages which i want to print on A4 sheets. However, the pages which come out are zoomed in copies , displaying about 60% of the page and cutting out the rest.
    I want to fit the page to A4 size paper while printing.. Where do i have to make this setting ?
    Thanks

    That depends on the program, but if it's Preview, go to Page Setup... under the File menu. Select the appropriate paper size there. Then go to File > Print... and do a Preview. If the content does not fit on the page, some printer drivers will have a Scale to Fit setting. If there is none, go back to Page Setup... and manually adjust the Scale until it fits nicely when you do a Preview.

  • How can I print more than one page of an internet site?

    When I try to print pages from internet sites (Facebook, Merchant Circle, Linked In, NBC.com, etc.), Firefox will only print the first page.
    In order to print more information, it is necessary to reduce the scale of the print so more of the information will print on the first page.
    How can I print out more than just one page of a website without having to make the print so small that I cannot read it when it prints?

    Firefox has problems with some style rules.
    First, it's always helpful to use any print-formatted or print-optimized version of the page. Sometimes there is a link for this.
    Second, in some cases you need to use this trick: press Ctrl+a to select all content on the page, then Ctrl+p to display the print dialog, and click the radio button next to Selection.
    Those tricks don't always work, but hopefully they will help.

  • How can i print logo in all the page

    i've created a form(SAP script) which have  five page.pls can anybody tell me how can i print logo in all the five page?

    hi,
    u can try this in
          windows
    change window type as CONST or MAIN.
    cheers,
    sam

  • How can I edit a post that I made?

    How can I edit a post that I made?

    Hi Matt. There is only a very short window of time to edit a post (15 minutes). However, I have spotted your other post and requested a moderator to edit out your contact info.

Maybe you are looking for

  • Cannot load Itunes or Quicktime and can't uninstall old version

    I'm trying to load iTunes. The installation fails because, "The installation of QuickTime did not complete successfully. iTunes requires QuickTime." Have tried unintallation the current version of QuickTime and installing the latest version of QuickT

  • Connecting my xbox elite to my wireless connection...

    i have just got bt internet with the bt wireless hub (without phone). I have left the wireless network and wireless key as they were but cant get my Xbox elite to connect up with it!! Is there anyone who has had this problem who solved this? Thanks,

  • Certificate at Goods Reciept without QA

    Hi Gurus, How do you manage materials with certificate at goods receipts without QM? Regards, Joel

  • ADF BC 10.1.3.3 multiple VO on one entity display problems

    Hi all, I have a table in my database called CARGO. In my app I have an entity for this table. There is an attribute on this entity called "ArrDep" with possible values "A", "T" and "D". I have three view objects on this entity, CargoIncoming, CargoT

  • Add discount for particular customer on delivery

    Hi, I need add discount for particular customer on delivery. Actually what i want; ABC as customer takes Goods quantity 100 pc rate 5 total=500 and VAT 15% of total =75 then gross total =575. and discount for this customer is 1.5% of base amount that