Problem in creating PDF of Website using Adobe Acrobat Professional 8.

  I am trying to create PDF file of full website using "Create PDF from Web Page..." option, in Adobe Acrobat Professional 8.
It is creating PDF but the page alignments/text/images alignments are lost and doesn't look good.
Can any one help to create the PDF same as webpage look and feel.
Thanks.

Acrobat 8's HTML->PDF engine is quite old and doesn't work well with modern web pages. I'd recommend trying the same page using Acrobat X (trial available) where the engine has been replaced and modernized.

Similar Messages

  • Why does all alphabets change to capital when converting pdf to word using Adobe Acrobat XI

    Why does all alphabets change to capital when converting pdf to word using Adobe Acrobat XI

    Word 2013 uses its own pdf creator engine as far as I know. The step I performed were:
    1 - In the save settings I told word to embed fonts (sorry for the language, I have the Italian client)
    2 - Export from Word -> Save As -> .pdf adding also the table of contents/index
    N.B. I cannot use PDF/A, and in any case it doesn't embed the font
    A working solution is to use Acrobat XI to convert it or print with Adobe PDF printer, results:
    The problems are 2:
    1 - It doesn't create any bookmark and doesn't create links from the table of images to the linked images
    2 - Images, also with the preset "High Quality Printing" customized using "No compression", are really ugly and if you zoom a bit more than 100% they totally be s**t. It wasn't that way with PDF created by word.
    In the end, or I find they way to open the pdf created by word and embedd the missing font, or I find a way to make Acrobat XI creating bookmarks from the word file.
    Suggestion?

  • Can I convert PDF to PPT using adobe acrobat x standard? If so, how?

    Can I convert PDF to PPT using adobe acrobat x standard? If so, how?

    Hi meganl52100253,
    With Acrobat X, you can save to Word and Excel format by choosing File > Save As. But saving to PowerPoint wasn't introduced until Acrobat XI.
    You're welcome to try Acrobat if you'd like. You can download a free 30-day trial from http://www.adobe.com/products/acrobat.html.
    Best,
    Sara

  • Load PDF From Memory using Adobe Acrobat SDK

    Load PDF From Memory using Adobe Acrobat SDK

    //The below variables are global;
    DWORD FileSize;//size of main PDF file
    char * lpBuffer;//PDF buffer,please save binary PDF data into this buffer
    DWORD dwDataSize;//size of main PDF file
    DWORD dwDataIndex;//is a pointer for lpBuffer position.ex. lpBuffer[dwDataIndex]
    //write the following code in the initialzation of your application
    ASFileSys myFileSys;
    memset (&MyFileSys, 0, sizeof(ASFileSysRec));
    MyFileSys.size = sizeof(ASFileSysRec);
    MyFileSys.open = ASCallbackCreateProto (ASFileSysOpenProc, MyASFileSysOpenProc);
    MyFileSys.close = ASCallbackCreateProto (ASFileSysCloseProc, MyASFileSysCloseProc);
    MyFileSys.flush = ASCallbackCreateProto (ASFileSysFlushProc, MyASFileSysFlushProc);
    MyFileSys.setpos = ASCallbackCreateProto (ASFileSysSetPosProc, MyASFileSysSetPosProc);
    MyFileSys.getpos = ASCallbackCreateProto (ASFileSysGetPosProc, MyASFileSysGetPosProc);
    MyFileSys.seteof = ASCallbackCreateProto (ASFileSysSetEofProc, MyASFileSysSetEofProc);
    MyFileSys.geteof = ASCallbackCreateProto (ASFileSysGetEofProc, MyASFileSysGetEofProc);
    MyFileSys.read = ASCallbackCreateProto (ASFileSysReadProc, MyASFileSysReadProc);
    MyFileSys.write = ASCallbackCreateProto (ASFileSysWriteProc, MyASFileSysWriteProc);
    MyFileSys.remove = ASCallbackCreateProto (ASFileSysRemoveProc, MyASFileSysRemoveProc);
    MyFileSys.rename = ASCallbackCreateProto (ASFileSysRenameProc, MyASFileSysRenameProc);
    MyFileSys.isSameFile = ASCallbackCreateProto (ASFileSysIsSameFileProc, MyASFileSysIsSameFileProc);
    MyFileSys.getName = ASCallbackCreateProto (ASFileSysGetNameProc, MyASFileSysGetNameProc);
    MyFileSys.getNameAsASText = ASCallbackCreateProto (ASFileSysGetNameAsASTextProc, MyASFileSysGetNameAsASTextProc);
    MyFileSys.getTempPathName = ASCallbackCreateProto (ASFileSysGetTempPathNameProc, MyASFileSysGetTempPathNameProc);
    MyFileSys.copyPathName = ASCallbackCreateProto (ASFileSysCopyPathNameProc, MyASFileSysCopyPathNameProc);
    MyFileSys.diPathFromPath = ASCallbackCreateProto (ASFileSysDiPathFromPathProc, MyASFileSysDiPathFromPathProc);
    MyFileSys.pathFromDIPath = ASCallbackCreateProto (ASFileSysPathFromDIPathProc, MyASFileSysPathFromDIPathProc);
    MyFileSys.disposePathName = ASCallbackCreateProto (ASFileSysDisposePathNameProc, MyASFileSysDisposePathNameProc);
    MyFileSys.getFileSysName = ASCallbackCreateProto (ASFileSysGetFileSysNameProc, MyASFileSysGetFileSysNameProc);
    MyFileSys.getStorageFreeSpace = ASCallbackCreateProto (ASFileSysGetStorageFreeSpaceProc, MyASFileSysGetStorageFreeSpaceProc);
    MyFileSys.flushVolume = ASCallbackCreateProto (ASFileSysFlushVolumeProc, MyASFileSysFlushVolumeProc);
    MyFileSys.createPathName = ASCallbackCreateProto (ASFileSysCreatePathNameProc, MyASFileSysCreatePathNameProc);
    MyFileSys.getItemProps = ASCallbackCreateProto (ASFileSysGetItemPropsProc, MyASFileSysGetItemPropsProc);
    MyFileSys.firstFolderItem = ASCallbackCreateProto (ASFileSysFirstFolderItemProc, MyASFileSysFirstFolderItemProc);
    MyFileSys.nextFolderItem = ASCallbackCreateProto (ASFileSysNextFolderItemProc, MyASFileSysNextFolderItemProc);
    MyFileSys.destroyFolderIterator = ASCallbackCreateProto (ASFileSysDestroyFolderIteratorProc, MyASFileSysDestroyFolderIteratorProc);
    MyFileSys.urlFromPath = ASCallbackCreateProto (ASFileSysURLFromPathProc, MyASFileSysURLFromPathProc);
    MyFileSys.getParent = ASCallbackCreateProto (ASFileSysGetParentProc, MyASFileSysGetParentProc);
    MyFileSys.createFolder = ASCallbackCreateProto (ASFileSysCreateFolderProc, MyASFileSysCreateFolderProc);
    MyFileSys.removeFolder = ASCallbackCreateProto (ASFileSysRemoveFolderProc, MyASFileSysRemoveFolderProc);
    MyFileSys.displayStringFromPath = ASCallbackCreateProto (ASFileSysDisplayStringFromPathProc, MyASFileSysDisplayStringFromPathProc);
    MyFileSys.setTypeAndCreator = ASCallbackCreateProto (ASFileSysSetTypeAndCreatorProc, MyASFileSysSetTypeAndCreatorProc);
    MyFileSys.getTypeAndCreator = ASCallbackCreateProto (ASFileSysGetTypeAndCreatorProc, MyASFileSysGetTypeAndCreatorProc);
    //These need to be implemented for 7.0 Windows
    MyFileSys.acquirePlatformPath = ASCallbackCreateProto (ASFileSysAcquirePlatformPathProc, MyASFileSysAcquirePlatformPathProc);
    MyFileSys.releasePlatformPath = ASCallbackCreateProto (ASFileSysReleasePlatformPathProc, MyASFileSysReleasePlatformPathProc);
    //MYFileSys Callbacks Functions definations
    static ACCB1 ASInt32 ACCB2 MyASFileSysOpenProc (ASPathName pathName, ASUns16 mode, MDFile *fP)
    dwDataIndex = 0;
    dwDataSize  = FileSize;//size of main PDF file
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysCloseProc (MDFile f)
    dwDataIndex = 0;//set PDF buffer pointer to zero
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysFlushProc (MDFile f)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysSetPosProc (MDFile f, ASUns32 pos)
    dwDataIndex = (DWORD)pos;
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysGetPosProc (MDFile f, ASUns32 *pos)
    *pos = (ASFilePos)dwDataIndex;
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysSetEofProc (MDFile f, ASUns32 pos)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysGetEofProc (MDFile f, ASUns32 *pos)
    *pos = (ASFilePos)dwDataSize;
    return 0;
    static ACCB1 ASSize_t ACCB2 MyASFileSysReadProc (void *ptr, ASSize_t size, ASSize_t count, MDFile f, ASInt32 *pError)
    *pError = 0;
    if ( ptr == NULL )
      return 0;
    DWORD dwRemaining = dwDataSize - dwDataIndex;
    DWORD dwReadSize = min( dwRemaining, (DWORD)( size * count ) );
    CopyMemory(ptr, &lpBuffer[ dwDataIndex ], dwReadSize );
    dwDataIndex += dwReadSize;
    return (ASSize_t)dwReadSize;
    static ACCB1 ASSize_t ACCB2 MyASFileSysWriteProc (void *ptr, ASSize_t size, ASSize_t count, MDFile f, ASInt32 *pError)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysRemoveProc (ASPathName pathName)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysRenameProc (ASMDFile* f, ASPathName oldPath, ASPathName newPath)
    return 0;
    static ACCB1 ASBool ACCB2 MyASFileSysIsSameFileProc (ASMDFile f, ASPathName pathName, ASPathName newPathName)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysGetNameProc (ASPathName pathName, char *name, ASInt32 maxLength)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysGetNameAsASTextProc (ASPathName pathName, ASText name)
    return 0;
    static ACCB1 ASPathName ACCB2 MyASFileSysGetTempPathNameProc (ASPathName pathName)
    return (ASPathName)PDF_MEMORY_FILESYS;
    static ACCB1 ASPathName ACCB2 MyASFileSysCopyPathNameProc (ASPathName pathName)
    return (ASPathName)PDF_MEMORY_FILESYS;
    static ACCB1 char * ACCB2 MyASFileSysDiPathFromPathProc (ASPathName path, ASPathName relativeToThisPath)
        return NULL;
    static ACCB1 ASPathName ACCB2 MyASFileSysPathFromDIPathProc (const char * diPath, ASPathName relativeToThisPath)
    return (ASPathName)PDF_MEMORY_FILESYS;
    static ACCB1 void ACCB2 MyASFileSysDisposePathNameProc (ASPathName pathName)
    static ACCB1 ASAtom ACCB2 MyASFileSysGetFileSysNameProc (void)
    return NULL;
    static ACCB1 ASUns32 ACCB2 MyASFileSysGetStorageFreeSpaceProc (ASPathName pathName)
    return INT_MAX;
    static ACCB1 ASInt32 ACCB2 MyASFileSysFlushVolumeProc (ASPathName pathName)
    return 0;
    static ACCB1 ASPathName ACCB2 MyASFileSysCreatePathNameProc (ASAtom pathSpecType, const void *pathSpec, const void *mustBeZero)
    return (ASPathName)PDF_MEMORY_FILESYS;
    static ACCB1 ASInt32 ACCB2 MyASFileSysGetItemPropsProc (ASPathName pathName, ASFileSysItemProps props)
    return 0;
    static ACCB1 ASFolderIterator ACCB2 MyASFileSysFirstFolderItemProc (ASPathName folderPath, ASFileSysItemProps props, ASPathName *itemPath)
    return NULL;
    static ACCB1 ASBool ACCB2 MyASFileSysNextFolderItemProc (ASFolderIterator folderIter, ASFileSysItemProps props, ASPathName *itemPath)
    return 0;
    static ACCB1 void ACCB2 MyASFileSysDestroyFolderIteratorProc (ASFolderIterator folderIter)
    static ACCB1 char * ACCB2 MyASFileSysURLFromPathProc (ASPathName path)
    return NULL;
    static ACCB1 ASPathName ACCB2 MyASFileSysGetParentProc (ASPathName path)
    return NULL;
    static ACCB1 ASInt32 ACCB2 MyASFileSysCreateFolderProc (ASPathName path)
    return 0;
    static ACCB1 ASInt32 ACCB2 MyASFileSysRemoveFolderProc (ASPathName path)
    return 0;
    static ACCB1 char * ACCB2 MyASFileSysDisplayStringFromPathProc (ASPathName path)
        return NULL;
    static ACCB1 void ACCB2 MyASFileSysSetTypeAndCreatorProc (ASPathName path, unsigned long type, unsigned long creator)
    static ACCB1 void ACCB2 MyASFileSysGetTypeAndCreatorProc (ASPathName path, unsigned long *type, unsigned long *creator)
    static ACCB1 ASInt32 ACCB2 MyASFileSysAcquirePlatformPathProc(ASPathName path, ASAtom platformPathType, ASPlatformPath *platformPath)
    return 0;
    static ACCB1 void ACCB2 MyASFileSysReleasePlatformPathProc(ASPlatformPath platformPath)
    //write the following code in your open PDF file procedure
    FileSize = //size of your PDF File;
    lpBuffer = (char *)malloc(FileSize);
    PDDoc pdDoc = PDDocOpen( (ASPathName)PDF_MEMORY_FILESYS, &MyFileSys, NULL, true );
    ASFile asFile = PDDocGetFile(pdDoc);
    ASText title = ASTextFromScriptText ("PDF File Name",kASRomanScript);
    AVDoc targetDoc = AVDocOpenFromASFileWithParams (asFile, title, NULL);
    //Thanks

  • How to delete checkbox in pdf form using adobe acrobat professional 6.

    I  am trying to modify a pdf form having a single layer. There are some checkboxes which i want to delete. I am using Adobe acrobat 6 professional. USing Advanced Editing tools -> Touchup Object Tool , i have try to delete the checkbox, it deletes all fields and tables in the form and there is only text left on the form. Any help would be appreciated. . Thanks@

    You do not use the "Object Tool" to edit forms. There should be a "Form" menu option and under this option you will have the opton "Edit form in Acrobat". This is the way one should edit/create a form in Acrobat.

  • Please Help!! Links to other PDF documents in my PDF document open in Adobe Acrobat Professional but NOT Adobe Reader XI

    Hi everyone,
    I really hope someone can help me with this problem. I work for a software company and we have a release coming up. Every release requires me to create a 'menu' which is what users see when they insert the release CD. I create this menu in Adobe Acrobat Professional, and add links to all the PDF manuals we have for our products. When I open the Menu in Acrobat Professional, all links open fine. When just attempting to open the links using the default Adobe Reader (which i'm guessing most of our customers will use), nothing happens, not even an error is generated. I'm ensuring I link to the documents that reside in the same folder on my directory as the menu. Is this something to do with relative/absolute links? Something to do with Reader XI, as I don't remember having this problem for our last release? Foxit also seems to work in opening the links.
    Thanks

    I’m using version 11.0.10. So where the Menu resides in a folder ready to be burnt on to a CD, that same folder is where the links point to.
    Thanks

  • Enable User Rights using Adobe Acrobat Professional 7

    I created an editable PDF form using LifeCycle Designer 7.0.  My goal is to have users fill out the form and email the actual filled out form not the XML code. I added a regualr button with the following java script.
    event.target.submitForm({cURL:"mailto:[email protected]?subject=Submitted Form&body=Please find attached the completed form.",cSubmitAs:"PDF",cCharset:"utf-8"});
    Show = Click
    Language = JavaScript
    Run At = Client
    When I test the button in Adobe Professional or in LifeCycle the button works fine.  However when I open the file in Reader 9, it does not work.  I do not encuonter any error messages.  Nothing happens when you click on the button.  I thought that users rights need to be enabled in order for it to work.  Unfortunately I do not see how to do this Adobe Acrobat Professional 7.  I do not have Adobe Acrobat Professional 8.  Any ideas on what I can do to correct this issue?

    For Reader users and AA7, your only choice is to have the XML file submitted. Then simply open the form in Acrobat and import the XML data file to fill the form. This will be exactly what the user saw when they submitted it. Thus there is no need to submit the entire form.

  • Trying to reorder text so that an Indesign created PDF reads correctly on Adobe Acrobat's Read Out L

    I am trying to get a document to be read in the correct order by Adobe Acrobat's Read Out Loud function. I am using Indesign CS2 and creating a PDF file to be read by Adobe Acrobat Version 7.
    I followed directions from sources online. I added all untagged items into the Structure window. I added alternative text to all the graphics fine. And the text areas are tagged as story. I then created a PDF used the Read out loud function, and it reads it all wrong! I then thought that by changing the hierarchy order of the tags that it would follow that list. But no! it still reads the same. I have tried a lot of things to get it to read right. I fiddled around with the acrobat preferences and now it just reads the alternative text?
    I need help.

    I haven't used it, but I think you need to use Acrobat's TouchUp Reading Order tool. I think that existed in Acrobat 7. Here's the accessibility page for Acrobat 9 on Adobe.com:
    http://www.adobe.com/accessibility/products/acrobat/overview.html
    If necessary, it might be necessary to upgrade to Acrobat 9 Pro.

  • MS Outlook 2010 Add in Create pdf - does not create pdf of draft emails- Adobe Acrobat Pro X

    In MS Outlook 2010 Add in Create pdf- does not create pdf of draft emails- this maybe the case, but just wanted to make sure this is normal for the program- though I guess one can print as an Adobe pdf but it does not maintain the hyperlinks of email addresses etc. the functionality is compromised in a print vs create a pdf.

    Here's a workaround by the team:
    Right click on the message from Explorer list view or folder view and chose the option to convert to PDF.

  • Could not get exact contents from pdf using adobe acrobat professional

    Hi,
    I am using acrobat professional to extract contents from a pdf into HTML. During extraction of pdf into HTML some contents are getting rendered as images. But with pdf to xml extraction i can get the exact contents. But i need HTML file from pdf. Any suggestions. Thanks in advance.

    You might want to see if you can select the background with the object touchup tool. If so, can you then just delete the selected object. May take a while to go through the document, but if it solves the problem you are ahead. You may be able to select it with JavaScript and repeat the process. My point of using the object touchup tool is that it may not be a background set by Acrobat, but something that is simply labeled as an image from the Acrobat viewpoint.

  • How do I get print to PDF to install using Adobe Acrobat 7 on a 64 bit computer

    I just got a new computer at work and installed CS2 with Adobe Acrobat 7.  An error popped up during installation saying that the Print to PDF function does not work.  Is there a way to fix this?  I looked through the discussions and there was not a document port under add printer.  Thanks for the help.

    Hi Matt,
    Acrobat 7 PDFMaker will not work on Windows 7 64 bit as it's not tested and there might be compatibility issues.

  • Can I create a page border using Adobe Acrobat Pro 9?

    I'm making a certificate of completion and would like to create a page border.  Is there any way to do this is Adobe Acrobat Pro 9?

    If what you want to do is scale a page down to a smaller size, Acrobat doesn't do that, not directly anyway. I think there are plugins for Acrobat that can do this.
    if you're desperate and/or don't want to go to that expense, there is a hack available in Acrobat that can get you there. If you've added other interactive elements (links, bookmarks, etc.), you'd have to recreate them. Post again, preferably in a new topic (since it doesn't apply to this one), for more info.

  • Converting PDF to excel using Adobe Acrobat Pro XI

    I am trying to convert long but simple PDFs to excel but I keep getting an error message. I have tried disabling OCR, but nothing. Some of my files are rather large, but smaller than 100MB. Any suggestions?

    Hi Sara,
    I'm working on an Imac 3.2GHz Intel Core i5 running OS X 10.9.5. Sometimes
    Acrobat just shuts down, sometimes it stops responding and I have to force
    quit, and other times I get this message: "Save as failed to process this
    document. No document was created".
    I don't know exactly how the PDFs were created, as they come from another
    institution. They look as if they were exported from excel though. The
    thing is I have several files, all with the same structure, from the same
    source, and the small ones were converted without a problem, but the large
    ones simply won't. I'm attaching one of the files, perhaps you can see for
    yourself something useful.
    Thanks,
    Mariana
    On Tue, Nov 11, 2014 at 7:34 PM, Sara.Forsberg <[email protected]>

  • How do I un-check the box "Display PDF in browser" using Adobe Acrobat Pro (9.0.0)?

    It is faded out and not allowing me the option.

    First of all, update your Acrobat to the latest version available for 9.
    Then, if you have Windows 8 it might still not be enough, as the two are
    not compatible.
    On Fri, Jan 23, 2015 at 7:07 AM, roxanne tollman <[email protected]>

  • Using Adobe Acrobat Professional 7

    Hello everyone,
        I am trying to make a pdf document from different scanning of my work. Some are text and some are art work, in either case, the material in each page is not centered it, and not all pages are the same size for some reason, even though I scanned all with the same same scanner with same page layout. I would like to center the work (not interested in OCR) and would like to have all pages have the same size. I found how to do each page separately, but I have over 300 pages, so I was hopping there would be a "master"  document properties.
    Your help is greatly appreciated,
    Jordan

    For Reader users and AA7, your only choice is to have the XML file submitted. Then simply open the form in Acrobat and import the XML data file to fill the form. This will be exactly what the user saw when they submitted it. Thus there is no need to submit the entire form.

Maybe you are looking for

  • OKS_CONTRACT_PUB - Creating a service Contract

    Hi, We are working on release 12, and I am trying to Create and Update Contracts through and API. At the moment the API I am using to create the contract is OKS_CONTRACT_PUB.Create_Contract, but it keeps giving me errors. Like You must enter a value

  • AFP Disconnects

    Hi, I've connected my Macbook Pro to my apple TV via AFP, problem is AFP disconnects all the time. I can listen to 2 or 3 songs disconnect or watch 10 minutes of a movie and it disconnects. Anyone came across this before and could offer me some assit

  • Cannot download films purchased from iTunes (error 8217).

    Hi, I purchased some films from iTunes but  instead of downloading films I got following error message. There was a problem downloading "". An unknown error occurred (8217). Please check that the connection to the network is active and try again. Pro

  • HT4623 how to update my i phone4

    How can i update my iphone4

  • SD-basic doubt

    hi friends, 1)Based on which document we will be creating the invoice order in case of cross company stock transfer . 2)As i have not worked on cross company stock transfer order ,can any one tell me how we will be creating cross company stock transf