Edit Internal PDF Structure - Rotate?

I'm having some issues with a few forms I've created and I can't find a solution to. Long story short, when a user prints this editable PDF to PDF, it rotates the page 90 degrees. This form was a template that I used for other forms, but in the beginning I had issues with the form fields being rotated 90 degrees as discussed & corrected in this discussion:
http://http://forums.adobe.com/message/4126465#4126465
I notice that when I go to print this landscape form, it defaults to portrait and when I look in the internal PDF structure is show "Rotate: 90". Does anyone know how I can remedy this? All my other forms have "0" in this field. Thanks in advance...

You cannot edit the internal structure of a PDF via the Preflight dialog, it's a view-only tool. There are plugins to allow low-level editing (PDF Can Opener, PDF Surgeon, etc.).
Page rotation can be defined via the contect menu on the page thumbnails sidebar, but if you've mixed up content with different orientations then simply resetting the /Rotate tag won't necessarily solve your problem.

Similar Messages

  • How do i edit a PDF file that was sent to me in an email?

    How do i edit a PDF file that was sent to me in an email?

    Depends on the extent of the edits. You will need Acrobat in any case. If the edits or minor, you can use the text edit tool. For major edits, you need to request the original file be sent or see if you can Save As a DOC or related file type. PDFs are not really structured for editing and you are asking for a lot of grief if you want to do much. Exporting is the best way, or even better simply asking the author for the original (non-PDF type).

  • Problems with editing/opening PDF's in Acrobat X

    We have 2 situations going on with Acrobat X:
    1.  We are scanning drawings on a Xerox Wide Format scanner to PDF's.  When I open them in Acrobat 8 Pro I can rotate and edit them.  When my boss opens them in Acrobat X the same file opens as a PDF/A and he can't do anything with them.  Any thoughts on how we can change this?
    2.  When my boss get's PDF attachements in his email he is not able to open them, he has to email them to me so I can open them in Acrobat 8 Pro.
    We were considering upgrading the whole office to the latest version of Acrobat but until we can get these 2 basic items solved it won't happen.  Any help is appriciated.
    We are running Macs with OS X verison 10.8.4
    Thanks
    Christinia

    Hi Christina,
    For first issue, you are scanning your PDFs as PDF/A i.e why Acrobat 10 cannot edit them. (Acrobat 8 could edit PDF/A, this feature not to enable editing on PDF/A files were added in later versions). Now you can:
    1. Either turnoff the checkbox to create PDF/A while scanning as shown in image below: You need to click on "PDF Output Options"  button on the scan dialog to access this and other options.
    or
    2. When you open PDF/A in Acrobat X, you will get a blue message bar at the top, saying that "This file has been opened read only" along with the button "Enable Editing". You can click on "Enable Editing" to modify the pdf. See image below:
    This should take care of the first issue.
    Regarding the second issue of PDF attachments, I am not sure what could be the problem. It may be an OS issue related to file association. You can try associating the pdf files to Acrobat. To do this, Right Click on any pdf file and click "Get Info", then under "Open With" panel, select Acrobat and click on "Change All". See image below:
    Thanks,
    Varinder

  • How to Edit Existing  PDF

    Hi... i am try to edit existing pdf in itext any one can help me this sending code.......

    Using Itext i want to remove some content in the PDF
    This is my code i want to Edit or Remove some text in the Pdf
    package view;
    //import com.itextpdf.text.BaseColor;
    //import com.itextpdf.text.DocumentException;
    //import com.itextpdf.text.pdf.PdfContentByte;
    //import com.itextpdf.text.pdf.PdfCopyFields;
    //import com.itextpdf.text.pdf.PdfStamper;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.pdf.PdfContentByte;
    import com.lowagie.text.pdf.PdfCopy;
    import com.lowagie.text.pdf.PdfCopyFields;
    import com.lowagie.text.pdf.PdfDictionary;
    import com.lowagie.text.pdf.PdfImportedPage;
    import com.lowagie.text.pdf.PdfName;
    import com.lowagie.text.pdf.PdfNumber;
    import com.lowagie.text.pdf.PdfReader;
    import com.lowagie.text.pdf.PdfStamper;
    import java.awt.Color;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.List;
    public class SplitingFlat {
        public static void main(String[] args) {
            String fileName =
                "D://OMR//OMRpdf//FlatFlies//EligibilityLists_Flat.pdf";
            splitPDFFile(fileName);
            rotateFlatPDF();
            markPdf();
            mergeFlatPdf();
        public static List splitPDFFile(String fileName) {
            List list = new ArrayList();
            int startPageNo[] =
            { 1, 29, 47, 67, 85, 133, 179, 197, 225, 243, 277, 295, 319, 337, 365,
              393, 419, 439, 471, 491, 513 };
            int endPageNo[] =
            { 28, 46, 66, 84, 132, 178, 196, 224, 242, 276, 294, 318, 336, 364,
              392, 418, 438, 470, 490, 512, 532 };
            try { /**
                     * Read the input PDF file
                PdfReader reader = new PdfReader(fileName);
                int totalPages = reader.getNumberOfPages();
                int split = 0;
                for (int i = 0; i < endPageNo.length; i++) {
                    for (int pageNum = 1; pageNum <= totalPages;
                         pageNum += endPageNo[i]) {
                        if (pageNum == 1) {
                            pageNum = startPageNo[i];
                        split++;
                        String outFile =
                            "D://OMR//OMRpdf//flat//split//Flat-split-" + split +
                            ".pdf";
                        Document document =
                            new Document(reader.getPageSizeWithRotation(1));
                        PdfCopy writer =
                            new PdfCopy(document, new FileOutputStream(outFile));
                        document.open();
                        int tempPageCount = 0;
                        int number = endPageNo[i] - pageNum;
                        for (int offset = 0;
                             offset < number && (pageNum + offset) <= totalPages;
                             offset++) {
                            PdfImportedPage page =
                                writer.getImportedPage(reader, pageNum + offset);
                            writer.addPage(page);
                            tempPageCount++;
                        document.close();
                        writer.close();
                        list.add(outFile);
                        break;
            } catch (Exception e) {
                e.printStackTrace();
            return list;
        private static void rotateFlatPDF() {
            String pdfFolderPath = "D:\\OMR\\OMRpdf\\flat\\split\\";
            int split = 1;
            File pdfFolder = new File(pdfFolderPath);
            if (pdfFolder != null && pdfFolder.isDirectory()) {
                String[] pdfFileNames = pdfFolder.list();
                if (pdfFileNames != null && pdfFileNames.length > 0) {
                    int documentNumber = 0;
                    for (String pdfFileName : pdfFileNames) {
                        File pdfFile =
                            new File(pdfFolderPath + File.separator + pdfFileName);
                        if (pdfFile.isFile()) {
                            documentNumber++;
                            PdfReader pdfReader;
                            String opFile =
                                "D:\\OMR\\OMRpdf\\flat\\rotate\\" + "DocumentSplitRotate-" +
                                split + ".pdf";
                            try {
                                pdfReader =
                                        new PdfReader(pdfFolderPath + File.separator +
                                                      pdfFileName);
                                int n = pdfReader.getNumberOfPages();
                                int rot;
                                PdfDictionary pageDict;
                                for (int i = 1; i <= n; i++) {
                                    rot = pdfReader.getPageRotation(i);
                                    pageDict = pdfReader.getPageN(i);
                                    pageDict.put(PdfName.ROTATE,
                                                 new PdfNumber(rot - 90));
                                PdfStamper stamper =
                                    new PdfStamper(pdfReader, new FileOutputStream(opFile));
                                stamper.close();
                                pdfReader.close();
                                split++;
                            } catch (IOException e) {
                            } catch (DocumentException e) {
        public static void markPdf() {
            try {
                //Flat
                String pdfFolderPath = "D:\\OMR\\OMRpdf\\flat\\rotate";
                File pdfFolder = new File(pdfFolderPath);
                if (pdfFolder != null && pdfFolder.isDirectory()) {
                    String[] pdfFileNames = pdfFolder.list();
                    if (pdfFileNames != null && pdfFileNames.length > 0) {
                        int documentNumber = 0;
                        for (String pdfFileName : pdfFileNames) {
                            File pdfFile =
                                new File(pdfFolderPath + File.separator +
                                         pdfFileName);
                            if (pdfFile.isFile()) {
                                documentNumber++;
                                PdfReader pdfReader =
                                    new PdfReader(pdfFolderPath + File.separator +
                                                  pdfFileName);
                                int pageCount = pdfReader.getNumberOfPages();
                                    String outputFileName =
        "D:\\OMR\\OMRpdf\\flat\\mark\\" +File.separator +pdfFileName.substring(0, pdfFileName.lastIndexOf(".pdf")) +
                                "_OMR_Marked.pdf";
                                FileOutputStream fileOutputStream =
                                new FileOutputStream(outputFileName);
                                PdfStamper pdfStamper =
                                new PdfStamper(pdfReader,
                                               fileOutputStream);
                                for (int i = 1; i <= pageCount; i++) {
                                PdfContentByte cb =
                                    pdfStamper.getOverContent(i);
                                cb.beginText();
                                cb.setColorStroke(Color.RED);
                                if (OMRMarkingUtilityFlatfold.isFlatZone1MarkingEnabled(documentNumber,
                                                                                i))
                                    OMRMarkingUtilityFlatfold.drawFlatOMRMark(cb,
                                                                      1, i,
                                                                      pageCount);
                                if (OMRMarkingUtilityFlatfold.isFlatZone2MarkingEnabled(documentNumber,
                                                                                i)) {
                                    PdfContentByte cb2 =
                                        pdfStamper.getOverContent(pageCount);
                                    OMRMarkingUtilityFlatfold.drawFlatOMRMark(cb2,
                                                                      2, i,
                                                                      pageCount);
                                if (OMRMarkingUtilityFlatfold.isFlatZone3MarkingEnabled(documentNumber,
                                                                                i)) {
                                    PdfContentByte cb3 =
                                        pdfStamper.getOverContent(1);
                                    OMRMarkingUtilityFlatfold.drawFlatOMRMark(cb3,
                                                                      3, i,
                                                                      pageCount);
                                if (OMRMarkingUtilityFlatfold.isFlatZone4MarkingEnabled(documentNumber,
                                                                                i))
                                    cb.endText();
                                pdfStamper.close();
                                fileOutputStream.close();
            catch (IOException ioe) {
                ioe.printStackTrace();
            } catch (DocumentException de) {
                de.printStackTrace();
        private static void mergeFlatPdf() {
            try {
                PdfCopyFields copy =
                    new PdfCopyFields(new FileOutputStream("D:\\OMR\\OMRpdf\\flat\\merge\\output1.pdf"));
                String pdfFolderPath = "D:\\OMR\\OMRpdf\\flat\\mark\\";
                File pdfFolder = new File(pdfFolderPath);
                if (pdfFolder != null && pdfFolder.isDirectory()) {
                    String[] pdfFileNames = pdfFolder.list();
                    if (pdfFileNames != null && pdfFileNames.length > 0) {
                        for (String pdfFileName : pdfFileNames) {
                            copy.addDocument(new PdfReader(pdfFolderPath +
                                                           pdfFileName));
                copy.close();
            } catch (IOException e) {
            } catch (DocumentException e) {
    package view;
    import com.lowagie.text.pdf.PdfContentByte;
    import org.apache.log4j.Logger;
    public class OMRMarkingUtilityFlatfold {
        private static final Logger logger =
            Logger.getLogger(OMRMarkingUtilityFlatfold.class);
        //public static final int Flat_Zone_X_Position     = 14;    // 0.1875 inches
        public static final int Flat_OMR_Mark_Thickness = 1; // 0.01   inches
        public static final int Flat_OMR_Mark_Length = 29; // 0.3    inches
        public OMRMarkingUtilityFlatfold() {
            super();
        public static boolean isFlatZone1MarkingEnabled(int documentNumber,
                                                        int pageNumber) {
            boolean flatZone1 = true;
            //        if (pageNumber % 2 != 0)
            //            trifoldZone4 = true;
            return flatZone1;
        public static boolean isFlatZone2MarkingEnabled(int documentNumber,
                                                        int pageNumber) {
            boolean flatZone2 = true;
            //        if (pageNumber % 2 != 0)
            //            trifoldZone4 = true;
            return flatZone2;
        public static boolean isFlatZone3MarkingEnabled(int documentNumber,
                                                        int pageNumber) {
            boolean flatZone3 = true;
            //        if (pageNumber % 2 != 0)
            //            trifoldZone4 = true;
            return flatZone3;
        public static boolean isFlatZone4MarkingEnabled(int documentNumber,
                                                        int pageNumber) {
            boolean flatZone4 = true;
            //        if (pageNumber % 2 != 0)
            //            trifoldZone4 = true;
            return flatZone4;
        public static int getFlat_Zone_X_Position() {
            return getFlat_Zone_X_Position();
        public static int getFlat_Zone3YPosition() {
            return getFlat_Zone3YPosition();
        public static int getFlat_Zone4YPosition() {
            return getFlat_Zone4YPosition();
        public static void drawFlatOMRMark(PdfContentByte cb, int zone,
                                           int pageNumber, int pageCount) {
            float x;
            float y;
            System.out.println(pageNumber);
            if (pageNumber == 1) {
                x = 14;
            } else {
                x = 7;
            switch (zone) {
            case 1:
                if (pageNumber == 1)
                    y = 689;
                else {
                    y = 688;
                break;
            case 2:
                y = 679;
                break;
            case 3:
                x = 14;
                y = 670;
                break;
            case 4:
                if (pageNumber == 1)
                    y = 661;
                else {
                    y = 660;
                break;
            default:
                y = 0;
                break;
            cb.moveTo(x, y);
            cb.lineTo(x + Flat_OMR_Mark_Length, y);
            cb.stroke();

  • Internal pdf links not working in chrome and firefox

    I have some PDF files that I am adding links to additional PDF files that are located in the same folder on our webserver using Acrobat Pro XI. The links work fine in IE and the other PDF files open up and display well in the IE browser, but the links don't even show up in Chrome and will not open in Firefox. Further, the links in Safari, deliver an error message pop up saying the file could not be opened. If you click OK, the file does open. Also, in Acrobat > Tools > Add or Edit Link, I can change the properties to "Open File" and pick the "Open in New Window" option, but when I save the changes and come back, the option has automatically changed back to "Execute a Menu Item" and of course, the file I'm linking to does not open in a new Window.  These files were originally created in Word by another person and the person who converted them to PDF added fillable form fields throughout the document prior to converting to PDF. The links I am adding are being added using Acrobat Pro XI in the PDF file. Should we insert the above-mentioned links in the Word docs prior to converting to PDF to ensure the links work in all browsers, or are these browser issues common to all internal PDF links?
    Please help!
    Thanks,

    Make sure that you are using the Adobe PDF NPAPI viewer for Chrome and Firefox.  Both Google Chrome and Mozilla Firefox now have their own default PDF viewers.
    To change Chrome's settings use this blog:  Change PDF Viewer back to Adobe’s in Google Chrome « Caveat Lector
    To change Firefox's settings use this:  How to disable the built-in PDF viewer and use another viewer | Firefox Help

  • An intricate question rather than an idea: PDF structure LIVE EDITOR

    I am wondering whether Dom's outline here(1) is really impossible:
    For PoDoFoBrowser, I think it would be fine if you would have the preview side
    by side with the pages content stream. And if you type some PDF code into the
    content stream, like "0 0 1 rg 100 100 m 200 200 l" it should immediately
    draw a blue line. But this is dreaming
    I see top expert gurus such as Thom Parker have developed their own viewer/editor here(2), the PDFCanOpener. PoDoFoBrowser is also great. These guys here(3) made PDFXplorer.
    So, why I couldn't find a tool like Dom's expectations. Adobe in first place should do that if technically possible. Together with Acrobat, it would exploit the creation of custom annotations.
    Are there any reasons they haven't yet?

    Karl,
    I know you certainly have more experience with the Acrobat SDK than I do; also, all those developers of PDF structure viewers/editors I mentioned earlier must have considered the possibility to make their applications LIVE as Dom's quote shows. So, ultimately you must be right.
    Anyway, when you talk about the current transformation matrix, you remind me of the true purpose of such an advanced PDF structure editor I put forward, that is an INLINE editor rather than a LIVE editor where the line here is the development process carried out through the Acrobat SDK itself. For example, say you mouse-draw a straight line in the PDF preview, you should be able to see cosDictionaries and operators to be used within your code. Or, you scale a picture and can check at the same time the transformation matrix that has been used. The reverse is sometimes useful too: you change an element of a transformation matrix and watch the effect in the PDF preview; so, for example, you can rotate a Widget annotation by means of the R key but you can do it in a finer control through a transformation matrix, if I am not wrong.
    I think many other examples concerning other PDF structure's parameters configurable in the Acrobat SDK, may be given.

  • Performance Issues when editing large PDFs

    We are using Adobe 9 and X Professional and are experiencing performance issues when attempting to edit large PDF files.  (Windows 7 OS). When editing PDFs that are 200+ pages, we are seeing pregnated pauses (that feel like lockups), slow open times and slow to print issues. 
    Are there any tips or tricks with regard to working with these large documents that would improve performance?

    You said "edit." If you are talking about actual editing, that should be done in the original and a new PDF created. Acrobat is not a very good editing tool and should only be used for minor, critical edits.
    If you are talking about simply using the PDF, a lot depends on the structure of the PDF. If it is full of graphics, it will be slow. You can improve this performance by using the PDF Optimize to reduce graphic resolution and such. You may very likely have a bloated PDF that is causing the problem and optimizing the structure should help.
    Be sure to work on a copy.

  • Error while editing a pdf using CS6

    Just recently, when I am attempting to edit a pdf it becomes unresponsive.  I am currently using CS6.  I have not done anything different.  Since I have been experiencing this problem, I have uninstalled CS6 and re-installed with no resolution to the problem.
    Any ideas?
    Thanks,
    Charla

    That’s weird.  How about this
    1.    which platform, Mac or Windows, and if possible please provide the operation system and its version?
    Windows 7
    1a. please provide your hardware info, that is, which CPU, how much RAM, and how much free space your hard disk still has available
    cid:[email protected]
    2.    which Acrobat version are you using? You can find this on the application's splash screen when you select "About Acrobat" (Mac: menu/Acrobat/About Acrobat & Windows: menu/Help/About Acrobat)
    Version 10.1.8
    3.    please provide the 'dot release' version you are using, such as Acrobat 10.1.8 and not just Acrobat 10
    10.1.8
    4. are all CS applications installed on the same computer and in the "Applications" folder?
    All on the same computer, but I apologize, where would I find the Applications folder?
    4.    was Acrobat installed as part of your CS installation, or was it independently installed?
    Yes, Adobe Acrobat was installed as port of the CS installation.
    6. if independently installed, was it before or after the CS apps?
    7. what kind of PDF's are you trying to edit where this happens - does it always happen with every PDF or just particular ones?
    Every pdf.
    - I am trying to get a picture of what kind of content inside the PDF you typically work with, e.g., text-only, forms, graphic images
    All the above
    8. are you working inside a local network, if yes, how many computers are connected to it?
    Local Network, 9 computers and I am th only one with access to the CS6 Suite 10.1.8
    9. do you use any kind of cloud storage (such as Box, DropBox, etc) or network syncing processes
    Drop Box
    10. are you able to see whether other processes are taking place at the same time as when you use Acrobat, for example virus scanning, updating, etc
    Yes, I think so.  By the task manager?
    Charla Szokola
    Literature Marketing
    Triad Process Equipment
    Ph: 248-685-9938
    Fax: 248-685-3204
    <mailto:[email protected]> [email protected]

  • How to edit a PDF in Photoshop CS4

    Hi there,
    I'm having some real trouble trying to figure out how to edit a PDF in photoshop cs4. So i need to edit/change text, move things around, that type of thing.
    I work in Windows.
    Could someone give me a bit a low down on how this is done?
    Much appreciated,
    Victoria

    You can open them but you will totally rasterize everything.
    PDFs are not intended to be edited. They are a final format but as
    mentioned you can use Acrobat for some minor text edits or use it to
    extract the images to Photoshop for further editing.
    Bob

  • I am trying to Edit a PDF and it keeps telling me to buy Acrobat Pro but I already have it and am paid up to 15 May 2015

    I am trying to Edit a PDF and it keeps telling me to buy Acrobat Pro but I already have it and am paid up to 15 May 2015

    Hey christopherc53009480,
    Could you please let me know what version of Acrobat you have purchased.
    Also, please share the screenshot of the message that pops on your screen as I need to analyze the exact issue.
    Hope to hear from you.
    Regards,
    Anubha

  • How to edit a pdf such that it is still searchable?

    Hi,
    I want to edit some words in a pdf file and want to make sure the pdf is still searchable.
    I changed the following
    -234.719 -10.8 Td
    [(A)-0.700044(t)10.3332(t)10.3332(i)10.3332(a)-11.0341(s)-12.4995(,)-392.394(H)-0.699227(. )-392.394(1)-8.56716(9)-8.56716(9)-8.56716(9)-8.56716(.)-365.634(I)11.8003(n)-8.56716(f)11 .8003(e)-11.0341(r)11.8003(r)11.8003(i)10.3332(n)-8.56716(g)-410.061(p)-8.56716(a)-11.0341 (r)11.8003(a)-11.0341(m)1.76604(e)-11.0341(t)10.3332(e)-11.0341(r)11.8003(s)-387.228(a)-11 .0341(n)-8.56716(d)-383.301(s)-12.5011(t)10.3348(r)11.7986(u)-8.56716(c)-11.0341(t)10.3348 (u)-8.56716(r)11.7986(e)-385.761(o)-8.56716(f)-389.695(u)-8.56716(n)-8.56716(o)-8.56716(b) ]TJ
    222 0 Td
    [(s)-12.5011(e)-11.0341(r)11.7986(v)18.206(e)-11.0341(d)-356.534(v)18.1995(a)-11.0341(r)11 .7986(i)10.3348(a)-11.0341(b)-8.56716(l)10.3348(e)-385.761(m)1.76767(o)-8.56716(d)-8.56716 (e)-11.0341(l)10.3348(s)-387.228(b)-8.56716(y)-383.301(v)18.1995(a)-11.0341(r)11.7986(i)10 .3348(a)-11.0341(t)10.3348(i)10.3348(o)-8.56716(n)-8.56716(a)-11.0341(l)-364.392(B)-2.1663 (a)-11.0341(y)-8.56716(e)-11.0341(s)-12.5011(,)-365.624(2)-8.56716(1)-8.56716(?)-8.56716(3 )-8.56716(0)-8.56716(.)-338.864(I)11.8019(n)-8.56716(:)10.3316]TJ
    -214.8 -10.8 Td
    to
    -234.719 -10.8 Td
    [(A)-0.700044(t)10.3332(t)10.3332(i)10.3332(a)-11.0341(s)-12.4995(,)-392.394(H)-0.699227(. )-392.394(1)-8.56716(9)-8.56716(9)-8.56716(9)-8.56716(.)-365.634(I)11.8003(n)-8.56716(f)11 .8003(e)-11.0341(r)11.8003(r)11.8003(i)10.3332(n)-8.56716(g)-410.061(p)-8.56716(a)-11.0341 (r)11.8003(a)-11.0341(m)1.76604(e)-11.0341(t)10.3332(e)-11.0341(r)11.8003(s)-387.228(a)-11 .0341(n)-8.56716(d)-383.301(s)-12.5011(t)10.3348(r)11.7986(u)-8.56716(c)-11.0341(t)10.3348 (u)-8.56716(r)11.7986(e)-385.761(o)-8.56716(f)-389.695(l)-8.56716(a)-8.56716(t)-8.56716(e) -12.5011(n)-12.5011(t)]TJ
    222 0 Td
    [-11.0341( )11.7986( )18.206( )-11.0341( )-356.534(v)18.1995(a)-11.0341(r)11.7986(i)10.3348(a)-11.0341(b)-8.56716(l)10.3348(e)-385 .761(m)1.76767(o)-8.56716(d)-8.56716(e)-11.0341(l)10.3348(s)-387.228(b)-8.56716(y)-383.301 (v)18.1995(a)-11.0341(r)11.7986(i)10.3348(a)-11.0341(t)10.3348(i)10.3348(o)-8.56716(n)-8.5 6716(a)-11.0341(l)-364.392(B)-2.1663(a)-11.0341(y)-8.56716(e)-11.0341(s)-12.5011(,)-365.62 4(2)-8.56716(1)-8.56716(?)-8.56716(3)-8.56716(0)-8.56716(.)-338.864(I)11.8019(n)-8.56716(: )10.3316]TJ
    -214.8 -10.8 Td
    But the word 'latent' is not searchable although the word 'unobserved' is searchable in acrobat. Does anybody what should be the correct way to edit a pdf file.
    What does the Td, Tj and the numbers, such as 10.3348, mean? Why a word are separated into many letters enclosed by ()?

    I know that pdf is usually compressed and pdftk can help decompress it. That is why I get the text format of the pdf code segments that I showed.
    The ISO 32000-1 document is too thick for me to digest. I know that if I should be able to find all the information that need from ISO 32000-1. But I'm wondering whether there is more concised document for my particular question.
    Also, I try to use Acrobat (TouchUP Text tool) to edit the pdf, but it always says "All or part of the selection has no available system font. You cannot add or delete text using the currently selected font." I find the following solution. But it doesn't really help, because I can not delete text if there is no system availabe font for the text that I'm going to delete.
    http://kb2.adobe.com/cps/330/330971.html

  • How to edit a PDF document in Netweaver Development Studio?

    Dear Experts,
    I am trying to edit a PDF file in the Netweaver Developer Studio.
    Can anybody tell me how can I import and edit it in the Netweaver Developer Studio?
    I am trying to do some editing.Eg. adding action buttons, adding input fields etc to the PDF file.
    If somebody has previously done such things or have some idea, I would like to hear from your experiences.
    Many thanks
    Rgds,
    Sudeep

    Hi Satya,
    Thank you for the immediate response.
      Now I can import the pdf files and edit them.
    However there is a problem.
    I can only open the pdf files which I created by the developer studio.
    When I open the pdf files those created by a scanner, they appear blank. However, when I open the same files with acrobat reader, the contects in the file appear.
    I will be very thankful if you could help me in this.
    Many thanks
    sudeep

  • How To Edit a .pdf file - Please Help!

    When I Googled the above question, I was told to download the Adobe Acrobat XI.
    I tried downloading the trial version. I was then told to download the Creative Cloud to  be able to download Acrobat XI.
    I downloaded Creative Cloud, then I was taken to the Adobe Applications Manager Page which show a bunch of apps to download.
    I don't  know which app I will need for the editing.  I was looking for Acrobat XI, but it's not showing anywhere.
    I tried downloading Photoshop. This took more than 2 hours. After the download was complete, I tried launching it, but nothing happened.
    I went back & double-checked the instructions, & I'm directed & got stumped at the Applications Manager page once more.
    I find this very frustrating. I wish it were not this complicated.
    I just want to edit a .pdf file, and nothing else. I'm not sure if I want to go through all these maze, or just use FIVVER, pay $5.00 & AVOID all these hassles.@nikoledeon.
    PLEASE HELP!

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5.4 (win), 5.4 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • How to edit a pdf file?

    I downloaded the free Adobe and i want to edit a pdf file and it wont allow me. asking me to subscribe.

    You want to go to the source program you first edited and authored the file in and create a fresh new PDF from that file. You should always save a current copy of the program file which you authored the PDF file in. Acrobat is not really intended for creating content as such. You can do quick edits in Acrobat by setting up the Touch-up preferences, Preferences>General>Touch up, These should point to the programs you use to edit PDF content, in my case the Object editor is Illustrator and Image editor is Photoshop. Now if you select the touch up object tool and the click on the object(s) you want to edit selecting them, then right click to get the contextual menu and select, Edit Object, Acrobat will create a temp file and open it in the program which you selected in preferences. Do the edit and close the temp file, Acrobat uses the temp file to update the open Acrobat PDF file you were working on.
    Hope this helps

  • Trying to edit a .pdf file. Please help.

    I just downloaded the Adobe Acrobat 30-day free trial, which comes up as "Adobe Assistant" on my machine, and I've been trying to use it for editing a .pdf file, but it doesn't do anything but want to download an entire folder of documents. I don't want it to do that, but can't seem to do anything else. When I load Acrobat separately from a .pdf I already have saved, (even logging in to Acrobat), and try editing the .pdf document, it keeps launching to the website page saying that it needs to be paid for to use. I'm confused. How can I try the editor to see if I like it? Isn't it all one program or is the Assistant different from the Editor?

    I may be wrong, but I think you are not using Adobe Acrobat at all. It sounds as if you are still running Adobe Reader, for some reason, rather than Adobe Acrobat, which looks similar but has many more options. If you are not sure, tell us what you see under TOOLS - main headings - or look at the title bar.

Maybe you are looking for

  • "Missing parameter values."  --  Export and Print only...

    I have a web application and I am using CrystalReportViewer.  I am passing several parameters to Crystal using:  report.SetParameterValue(field.Name, Session[field.Name]); I have session variables which will hold parameters needed to pass into the re

  • WBS element for Sales Order Item level

    Hi gurus, I am trying to create an inbound idoc for sales order ' VA01'. I need to populate WBS element in the item level under Account Assignment Tab. I am using ORDERS05 basic type. Please help to find which segment to use for WBS element. Waiting

  • Connect an external monitor

    I am unable to get my hp pavilion entertainment pc to recognize an external monitor - orion  please help is it my resolution settings? I am using windows vista thanks

  • How to retard tcp ack

    Hi all! I'd like to know if it is possible to retard the tcp ack. I'll try to explain me better: I am receiving important data through tcp: when I receive this data I don't want to send immediately the ack packet: it may occur that i receive the pack

  • Page Cropping Tool Box Size Problem

    I just recently tried to crop a page in Acrobat 9 Pro & noticed that the drop down crop tool box does not fit my computer screen; it is too big.  How can I change the size of the box such that I can check the OK box when I am finished cropping the pa