Resizing page in an existng PDF file

HELLO: I am trying to resize a PDF file from 16x32 to Letter size. Use to be able to do this by printing a new PDF document. Can't do that now using the Mac Leopard OS. The "save as" function does not seem to allow any options on page size either. Any suggestions? Thanks!

Much appreciated. I will give it a try. Again, thank you. ROBERT
Robert Sabbatini AICP FASLA
283 Roosevelt Way
San Francisco CA 94114
415-828-1054
http://www.sabbbatini-loyd.com
[email protected]
CONFIDENTIALITY NOTICE: This email, including all attachments, may 
contain confidential material for the use of the intended recipient(s) 
only. Any review, dissemination, distribution or copying of this 
material by someone other than the intended recipient(s) is strictly 
prohibited. If you are not the intended recipient, please contact the 
sender and delete the message and all attachments

Similar Messages

  • How do I delete some pages from an existing pdf file?

    I have an existing pdf file that is too large to send to some people. How can I delete some pages from this existing pdf file, and break it up into two files?

    Acrobat
    You can download a 30 day trial at that link.
    You may also be able to do it with CreatePDF, but I'm not sure.

  • How come pages won't open PDF files made by Pages?

    How come pages won't open PDF files made by Pages?
    I have files I made with Pages and exported as PDF but I can't open them with pages to edit?
    Also, where are the recent files created by pages located? Can't find those to open either..

    Hi Tom,
    I was delighted when I signed up for Pages. Clunky yes, but it worked. I've been a graphic designer on a Mac for 25 plus years and have logged too many horror stories of "upgrade" wars which cost me massive lost time, data and money forcibly extracted just so I could finish a project.
    When I first used Pages in April of 2012? or there about, I was able to open Word documents exported to .pdf format, emailed to me, which I then dragged into Pages. I could make the changes I needed to make, export as a .pdf, return it back to my client which they could then edit on whatever it was they were using. I'm not a neophyte with this. I've had Original Photoshop as a stand alone, Quark (which locked users out 6 months after I purchased it.) Quark again, Freehand, Pagemaker, Illustrator, Photoshop again, Creative Suite for several upgrades, Acrobat Pro. 2 years ago I lost 6 years of Quicken data and had to and "upgrade" start over. This last go around I  had to "upgrade" my Apple ID - yes I had 2 on purpose, lost my Pandora One and my ability to get into the Tulsa County Library website.
    At this point, I'm retired and feel like what I've paid for in the past should WORK today. I have a 100+ page cookbook in Quark which I was able to export as a .pdf, that I've lost the tags too, Easier to start over. I have artwork that is hundreds of megs in Photoshop. Not the least bit interested in anybody's "cloud".
    Thanks for letting me vent. I'm determined to keep my equipment and software up to date so I can enjoy the skills I've acquired, but I completely cringe at Apple's antics. I truly hate it when I have to respond to some new "tip" or product offer. BooHiss. Happy Turkey Day. Pages is a "turkey" program.
    Best regards, mbd

  • How to change page order in a PDF file?

    Hi, how can I change the page order in my PDF file? I had read that it is possible but my editing options are showed gray and also my security settings cannot be edited.
    Do I need a special software? I have Acrobat Reader, and my document was exported from Illustrator as a PDF.

    You should ask in the Reader forum. But my guess is that Reader there is nothing you can do. Acrobat allows you to move pages around, but not Reader.

  • Merge Different Spools containing a Single PDF page into a Single PDF file.

    Greetings,
    I am developing a custom object where in i need to read PDF file from many different Spools(Range given on Input Screen), where each spool has a single PDF page in it. I need to combine all these PDF Pages into a single PDF file & either create a new Spool or save it on an Application Server.
    At present i have developed the code where in i am able to read the PDF files from different spools & convert them into Binary but i am not able to generate it back to PDF file.
    Kindly find my code for your reference.
    CODE:-
    START-OF-SELECTION.
      PERFORM f_get_spool_1000 .
      PERFORM g_conv_pdf_to_bin_2000 .
    *&      Form  F_GET_SPOOL_1000
          text
    FORM f_get_spool_1000 .
      SELECT * FROM tsp01
               INTO TABLE gt_tsp01
               WHERE rqident IN s_spool
               ORDER BY rqcretime DESCENDING.
      IF sy-subrc = 0.
        SORT gt_tsp01 BY rqident .
      ENDIF.
    ENDFORM.
    *&      Form  G_CONV_PDF_TO_OTF_2000
          text
    DATA: lv_filename_out   TYPE string,
                lv_len            TYPE i,
                lt_tab            TYPE tsfixml .
      DATA: lwa_print_parms    LIKE pri_params,
                  lv_valid(1)       TYPE c .
      DATA: lv_linsz LIKE sy-linsz VALUE 132, " Line size
                  lv_paart LIKE sy-paart VALUE 'X_65_132'.  " Paper Format
      DATA : lt_tsp01 TYPE STANDARD TABLE OF tsp01 ,
                   lwa_tsp01 TYPE tsp01 .
      CLEAR : gv_pdf, gwa_tsp01, gv_renderpagecount .
      LOOP AT gt_tsp01 INTO gwa_tsp01.
        CALL FUNCTION 'FPCOMP_CREATE_PDF_FROM_SPOOL'
          EXPORTING
            i_spoolid         = gwa_tsp01-rqident
            i_partnum         = 1
          IMPORTING
            e_pdf             = gv_pdf
            e_renderpagecount = gv_renderpagecount
            e_pdf_file        = gv_pdf_file
          EXCEPTIONS
            ads_error         = 1
            usage_error       = 2
            system_error      = 3
            internal_error    = 4
            OTHERS            = 5.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        CLEAR lv_len .
        REFRESH gt_bin .
        CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
          EXPORTING
            buffer        = gv_pdf
          IMPORTING
            output_length = lv_len
          TABLES
            binary_tab    = gt_bin.
        CLEAR gwa_bin .
        LOOP AT gt_bin INTO gwa_bin.
          APPEND gwa_bin TO gt_listout.
          CLEAR gwa_bin .
        ENDLOOP.
      ENDLOOP.
    Get FP reference
      DATA: lo_fp     TYPE REF TO if_fp VALUE IS INITIAL,
            lo_pdfobj TYPE REF TO if_fp_pdf_object VALUE IS INITIAL,
            lo_exc    TYPE REF TO cx_root,
            lv_xslt_message TYPE string .
      lo_fp = cl_fp=>get_reference( ).
    For handling exceptions
      DATA: lo_fpex TYPE REF TO cx_fp_runtime VALUE IS INITIAL.
      TRY.
          lo_pdfobj = lo_fp->create_pdf_object( connection = 'ADS' ).
      Set document
          lo_pdfobj->set_document(
            EXPORTING
              pdfdata = gt_listout ).
      Tell PDF object to extract data
          lo_pdfobj->set_extractdata( ).
      Execute the call to ADS
          lo_pdfobj->execute( ).
        CATCH cx_root INTO lo_exc.
          lv_xslt_message = lo_exc->get_text( ).
      ENDTRY.
    Your quick reply would be of great help.
    Regards.

    Thank Your for your concern, there are many replies & posts but all of them points only to Try what they have said. As being said that trying to convert PDF to binary & appending many PDF similarly would not let you generate a single PDF again.
    Your Kind guidance would be really appreciable.
    Regards.

  • How can you insert "Page Break" in a pdf file so you will specify the pages

    How can you insert "Page Break" in a pdf file so you will specify the pages

    How / from what was the PDF originally created?  It would be easiest to insert page breaks into the original document, then recreate the PDF.

  • Getting the page size and knowing how many pages they are in PDF file

    Hi There,
    when i do this script (
    var myPDFFile = File.openDialog(["Choose a PDF File"]); ) 
    with JS via Windows it is used for opening a new PDF file when i import this file i need to
    get the page size and how many pages they are in PDF file. but i dont know how to do it.
    please help me.

    Ask here: http://forums.adobe.com/community/indesign/indesign_scripting

  • How determine page size by opening PDF file in binary mode

    Hi,
    I have to print PDF file but I would like to know the page size of the PDF file.
    What I have to verify (section, parameters) in order to know the page size? (Letter, Legal)
    Thanks!
    FE

    And if you multiply the values by (1/72):
    (792 - 0) / 72 = 11
    (612 - 0) / 72 = 8.5
    You may also have to consider rotated pages and not all pages within a PDF will match the size of the first page.
    Using Acrobat JavaScript:
    var nPage = 0;
    var cBox = "Crop";
    var aRect = this.getPageBox(cBox, nPage);
    var width = aRect[2] - aRect[0];
    var height = aRect[1] - aRect[3];
    console.println("Page " + (nPage + 1) + " has a width of " + (width / 72) + " inches and a height of "
    + (height / 72) + " inches");
    Produces the following output on the Acrobat JS debugging console:
    Page 1 has a width of 8.25 inches and a height of 11 inches

  • How do I extract pages from a Secured PDF file

    How do I extract pages from a Secured PDF file?

    Adobe would call that hacking, and don't allow discussion of it in this forum. You should contact the copyright holder and see if they are prepared to release the password, or an unsecured document, to you. If it's something made for you like a bank statement you should tell the bank how inconvenient their choices are.

  • Pages 5.0, hyperlinks, PDF file, links don't work

    I upgraded to pages 5.0. My documents have many hyperlinks. When I convert them to PDF files the hyperlinks don't work in the pdf files. In pages: file > export > pdf > best image quality then to desktop. The links work on page 1 of the pdf file but not on the remainder of the pages. With the previous version of pages all the hyperlinks worked in the pdf files I created. Something I need to be doing with the new pages 5.0? Help. The links are a key component of my documents.
    Thanks in advance.

    DreAllDay wrote:
    Found a fix!
    1. In the new version of Pages, export your document to a Word doc. Save.
    2. Right-click on that Word doc in the Finder, Choose Open With > Pages (4.1) [Or just open Pages 4.1 yourself, then use File > Open and choose that new Word doc]
    3. The old version of Pages opens your doc. Choose File > Export... Choose PDF. File will save where you choose, links active and working just like old times.
    This is my first discussions post and hope it's useful!
    Why would you want to export to Word .doc?
    Just use Pages '09 4.3 in the first place and avoid the problem.
    Peter

  • Using pages how to insert pdf files on ipad?

    using pages how to insert pdf files on ipad?    
    Anybody have any idea, have pdf files in ibook do not see where to insert pdf's.
    Also trying to get word files onto ipad using drop box, do these word files need to be saved in another format?
    Also for pages.
    thnx

    No - the Word files do not need to be saved in any other format if you have Pages on your iPad. There are other apps that provide better compatibility than Pages but it will work for you. You have to have DropBox on your PC and the free DropBox app on the iPad to use DropBox to transfer files.
    To send the file using DropBox -  make sure DropBox is running on your computer. Then place the file in one of the folders that you have set in your DropBox folder on your PC. Launch DropBox on your iPad and find the folder that you placed the file into and tap on that folder. Find the document and tap on it. It will open in the window on the right. Tap the arrow icon in the upper right corner and select Open in Pages.
    If you have pdf files in iBooks that you want to put into Pages you have to email them to yourself and use the Open In feature when you open the email. You cannot send a file from iBooks other than to email it - at least I am not aware of any other way.

  • HT2693 how can i save my pages document as a PDF file or jpeg now?

    Hi...
    How can i save my pages document as a PDF file or Jpeg file now that the share is NA.

    In Pages, go to File > Export > Word, so the document will be saved in .doc to be able to use it in Word

  • How can detect and remove scanned white pages in an OCRd pdf file?

    How can detect and remove scanned white pages in an OCRd pdf file?

    Acrobat does not support an automated way of doing this directly. You can
    remove completely blank pages (pages that don't have any "marking
    objects"), but a scanned page does contain an image, so Acrobat won't help
    you here. There are a number of 3rd party applications and plug-ins
    available. Try a Google search for
    remove blank pages from scanned
    pdf<http://www.google.com/search?client=safari&rls=en&q=removeblankpagesfromscanned+pdf&ie=UTF-8&oe=UTF-8>
    This will bring up a few different solutions.
    Another way is to use JavaScript to find text. You say that these documents
    are OCRed, so if you have a blank page, it should not have any text on it.
    With some JavaScript, you can identify pages that don't contain text. This
    may however fail if you have a page that contains just e.g. a photographic
    image. There won't be any text, but the page is certainly not blank.
    Karl Heinz Kremer
    [signature removed by host]

  • HAVE NEW 13.3 MAC AIR AND when using it to open sites in safari I have no issue until I go to a link page that is a pdf file or I am trying to save the screen info as a pdf. I only get a black screen with no data, cannot find solution in help menu

    HAVE NEW 13.3 MAC AIR (previously, still have 13.3 MCbook pro which works captures what I am looking for an answer to)
    when i open sites in safari the page opens fine if it is not a pdf based page.
    Once i open a site that has a link to another page that is a pdf based page the page comes up as a black screen with no info showing
    If I open a site that gices me an open to save a file to a word, excel type document or a pdf , everything works fine until I try to save the information to a PDF and again the screen goes black
    I have tried the safari help site but to no avail, does anyone have a solution to thid problem. (I do have the abode ofr mac program loaded)

    If you delete all the Adobe Reader stuff it will probably fix this. For almost everything, the Apple pdf handling works better.

  • How to hyperlink from a pdf file to a specific page in a second pdf file

    I would like to setup a set of pdf documents, on the hard disk of a PC or Mac, that can be open in acrobat pro and have hyperlinks that jump to, and open in a new window, in acrobat pro, to a given page of a second document in the set.
    It seems to me to be something that everyone would want to do and should be simple enough.
    But I seem to be missing something.
    I had partial success a few years ago using what I recall are the following general points:
    Create files in word,
    Use absolute address
    Use / not \,
    Converting the spaces in the address to %20
    Set the hyperlink base to “file:///T:/PdfDocumentsFolder/”
    Add location with  #page=3 to end of file name, 
    Convert to pdf with acrobat pdfmaker
    Open pdf with web browser into reader.(could not get it to work on mac with OS 9) by Checking Edit-Preferences-Internet-Web Browser Options-Display PDF in browser
    This will allow the pdf to open to a given page, but only in the acrobat reader under MS IE, Not in Acrobat pro and not on a mac even in the reader.
    Now I have a large (500) PDF documents with a very large number of comments and a key user switched to a Mac and can not automatically go to the page and would lose or have to transfer comments that have been made on the pdfs.
    I have looked at and tried a number of things that have not worked:
    Change all the links by hand:
    Tools-Advanced Editing-Link
    Action-Open file
    I can not see where when Inserting a link by hand one can place the page number
    Action-Open weblink
    Close, This can open a file,
    If Edit-Preferences-Internet-Web Browser Options-Display PDF is checked it will jump to a page
    But if it is not checked it will open in acrobat pro and not to the page
    Does not seem to work on a mac
    Looked at acrobat javascript
    Don’t seem to see any method that would allow a page number
    Under open document
    Open under a URL
    app.launchURL("Document.pdf", true);
    seems to error if a #page=2 is add to file name
    Looked at security
    Don’t seem to see that there is anything in the preferences that can be set to enable the jump to page action
    Looked at privileged and non-privileged and did not see how that would help
    Looked at adding disclosed=true;
    function Disclose()
    this.disclosed = true;
    Looked at Portfolios to see if some kind of group of documents would allow the jumps but could not find a solution.
    I have not looked at bookmarks to see if I bookmarked every page “Pagexxx” and then jump to the bookmark would get around the problem.
    So I am not getting the right combination and could use some help
    Thanks
    John
    Current Systems in use:
    Windows XP
    Acrobat 9 pro version 9.4.4
    Or
    Mac OS 10 Lion version 10.7.4
    Acrobat 9 pro version 9.5.1
    (note I have limited understanding of Mac’s)
    P.S.
    In a similar vain within the word source documents I was able to get a hyperlinks to make the same kind of jump to a page using a VBA macro with the following call:
    Shell "C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe  /A page=" & iPageNum & "&Zoom=125=OpenActions """ & sHyperlinkBase & sHyperlinkAddress & """", vbNormalFocus
    After parsing the hyperlink and to get file name and  the page number
    So I know acrobat pro can be called as an application to jump to a page

    Thanks for that information.
    I did not see that the “go to view link” could change documents. I thought it was only within a document.
    I manually added two “go to view links” and that seems to work on both mac and pc computers.
    That brings up two questions.
    For old files can a acrobat java script batch file be setup to read the hyperlinks in a pdf document  and replace them with a “go to view link” style?
    Can one place a “go to view link” style in a word document and then have the adobe convert to acrobat process it into the pdf format with the rest of the document? (or set up the converter to make word hyperlinks change to pdf “go to view links”?

Maybe you are looking for

  • Issue with Insert in SP

    Gurus, I have an issue with inserting rows into temp table through SP. Here is my proc. its running fine. After the execution completed when i try to select the rows from srini_temp table its showing 0 rows. Whats wrong here. CREATE PROCEDURE BO_HR_R

  • IPod Touch can't import Apps

    I have a 2nd generation iPod Touch and I can't download any Apps to it from iTunes. I have no Apps icon on the iPod, and I can't check the Restrictions as it isn't listed under Settings! iTunes is saying that my software is up to date, though in Sett

  • In Lightroom mobile how can move photos within the collection????

    In Lightroom mobile how can move photos within the collection????

  • Ultra 10 + Sil0680 + 400GB drive still seen as 128GB

    I am trying to get a 400GB drive to work on an Ultra 10 with Solaris 10u4 (8/07) and the newest OBP (3.31). I understand that the on-board controller has a 128GB limit. However, I've done a fair amount of digging and from what I've read, a PCI card w

  • HP 7520

    I cannot scan to e-mail and send. I keep getting "unable to connect to web services", yet wireless network test results are good. I can send something to print wirelessly but cannot e-mail. Does anyone know whats wrong?