Creating PDF- On-line

I have been creating PDF online for a while now.  Starting last month when I download my newsletter to make it a pdf. file it puts it into 4 separate pages.  Use to put in into 2 pages.  Now when I publish it to our web page it is hard to read because it cuts off some pages to go to the next page.  I would appreciate all suggestions.

Is this regarding CreatePDF?  → http://forums.adobe.com/community/createpdf

Similar Messages

  • Create PDF command line

    Is it possible to create a new pdf via command line? I am actually trying to create a new web page using this method.

    Hi John
    Actually, you can. But creating an empty PDF by commandline is maybe not what you want. Depending on the web-technology you are using it may be better to use this technology to create the PDF directly. in Java there are a lot of frameworks available to create PDF, like iText or PDFBox.
    In Ruby on Rails you have plugins doing the same thing.
    A bit strange, the answer of Aandi ;-), eh?
    Daniel

  • Create pdf off-line?

    How do I create a PDF from scanned documents in Adobe 8 without having to use Acrobat online? I followed the procedures in Adobe Help section, but when I click on File, I don't have an option to just "create PDF"; I only have an option to "create Adobe PDF online"... please help!

    Adobe doesn't offer a free service to convert files to pdf. Other companies do offer pdf creation. For example, the Macintosh OS offers this functionality. There are freeware pdf converters by all means do a Google search. Microsoft offers one that works with their newer Office Suites. But if you want the quality and functionality that Acrobat offers, then you need to purchase it.

  • Creating PDF in Word 2007 creates horizontal line

    Hello,
    This is my first post in this forum. In general, I have not had problems creating PDFs from Word 2003, or from Word 2007 - from either .doc or .docx documents.
    Yesterday, with one document, when I created a PDF, a centered horizontal line kept appearing near the top of the first 2 pages. These 2 pages
    have no header content. This line is NOT in the Word document. The rest of the PDF appears normal - with its normal header content.
    I think the problem is within Word 2007 (what a surprise!) because I can eliminate the problem by printing a .ps file of the Word doc and then
    distilling it.  The only problems with that method are that (1) It's more time-consuming, and - more important -  (2) the bookmarks are not
    automatically created. So, to create bookmarks manually takes even more time, and I don't know how to create the hyperlinks from the TOC
    (or even if that's possible).
    Any idea what's going on?  I tried making PDFs of some other user
    guides (same doc template), and they are fine.
    Many thanks!

    Hi again Raechel,
    It's such fun dealing with Word and "Microsloth", isn't it?!  IMHO, they
    should have left Office alone at the 2003 (or 2002?) versions.... Even at
    2000, styles were easier to deal with!
    Especially after using Madcap Flare for a few years, going back to Word is
    especially torturous.  I go back and forth from one to the other,
    depending on what I'm working on - product-wise or document-wise.
    Your Word certainly may have gotten corrupted, but even if that's not the
    case -- Word is still buggy as hell (forgive the minor expletive)!!
    Glad you made your printing deadline!!
    Regards,
    Melanie
    Melanie Blank
    Product Documentation Specialist
    Rochester Software Associates (RSA)
    (585) 987-6972
    [email protected]
    From:
    Raechel02 <[email protected]>
    To:
    Melanie Blank <[email protected]>
    Date:
    06/15/2011 09:34 AM
    Subject:
    Creating PDF in Word 2007 creates horizontal line
    Melanie,
    I read your post, and decided to spend my evening figuring out what was
    going on.  You are right about it being related to the lines in the header
    and footers, but as my document had no headers and footers, I found that
    odd.  I tried to edit the styles without success.  Now isn't that odd,
    too?
    I had to delete the header and footer styles from my document in order
    to
    get rid of the lines.  I suspect my copy of Word became corrupted as I
    madly
    edited several documents, all with photos.  As my adult son pointed out,
    "well, they don't put their top programmers on Word, after all."  I
    checked
    my memory utilization, and it appears that Word isn't cleaning up after
    itself very well, so it loses track of some of its objects, and things get
    out of synch.
    Well, in the end I managed to re-produce my document, which is good,
    because
    it had to go to the printer last night before midnight, and it got there
    at
    11:40.
    Thanks for your help,
    Raechel

  • Created PDF from MS Access - lines are missing from PDF

    I'm using Acrobat 8 (from Adobe CS3) to create PDF files.  When I "print" reports from Microsoft Access 2003, the thin line borders that outline cells are often missing from the PDF. Typically, 1 or 2 of the sides are missing, with the other sides appearing normally.
    This appears to happen primarily when the line thickness is set to "hairline".
    If I use a non-Adobe PDF writer (PDF Creator), then the lines appear normally.
    Any suggestions about what I can do to correct this?
    Thanks - Jim

    These are the settings.

  • Creating PDF from PowerPoint results in lines around images

    I've researched this topic on the forums and have seen some related posts but none that directly hit the issue I'm having. Have a PP file with some images and when I create PDF, the resulting file shows random "outline" lines partially around some of the images.  These lines do not show up when printing.  They go away if I uncheck the "Smooth Images" box under Edit/Preferences/Page Display.  However, unchecking the box degrades the image quality and requires the viewer to make this change in his version of Reader.  This PDF will be viewed typically on a screen rather than via print and I can't rely on the user to do the Smooth Images change.  I have spent lots of hours trying various potential fixes (differing file types, etc.) but can't figure it out and haven't been able to find a solution anywhere on the web.  Anyone up for the challenge of helping me figure it out?

    Any chance you can post a link to the file or PDF page?

  • Creating Adobe PDF on-line

    It is taking me hours to create Adobe PDF on-line and then to download the file.
    Why could this be happening?
    Joe Fleming

    Is this regarding CreatePDF?  → http://forums.adobe.com/community/createpdf

  • HELP! PDF objects - How to create a program line object?

    Hi Experts,
    I would like to know how to create a Program lines object (icon cog wheels). I need to create additional coding inside the context tab but when I try to right click on a folder --> create -->graphic,address,text,alternative...single record... No
    program lines can be created.
    Hope someone could help me.
    Thanks,
    Jeff

    There are two ways of doing it, depending on what you want to accomplish. Both require that you edit the file ~/.bashrc (I assume you use bash)
    1) If the application places all the executable files in a given directory (let's say /opt/Application/bin/), you can access all those executables directly by simply telling your shell where to look (in the same way the shell automatically looks for executable files in eg. /usr/bin). In ~/.bashrc, you would have to add a line that looks like this:
    PATH="$PATH:/opt/Application/bin"
    2) If you just want to make a traditional "shortcut" that executes a given command, this can be done with alias. Add this command to your ~/.bashrc:
    alias shortcut="some command"
    In this case, typing shortcut into a terminal will be interpreted just like if you had typed some command instead.
    In order to try out these changes, either restart your terminal or run this command:
    source ~/.bashrc
    [EDIT]
    I was obviously beaten to it
    Last edited by Peanut (2009-05-26 23:12:47)

  • I have Adobe Photoshop Elements 10 plus I create PDF files for work some are scan pdf docs. When I install Photoshop Elements 10 it DOES convert all the PDF files to Photoshop Elements-10 Docs. it even changes and shows the PSE-10 Icon. So I am alway inst

    I have Adobe Photoshop Elements 10 plus I create PDF files for work some are scan pdf docs. When I install Photoshop Elements 10 it DOES convert all the PDF files to Photoshop Elements-10 Docs. it even changes and shows the PSE-10 Icon. So I am alway installing PSE-10 or uninstalling it. If I send the  PDF file that has been automatically converted to a PSE-10 the person I send the file to can not open it because they do not have PSE-10. What can I do to stop PSE-10 from converting my PDF files? Don't tell me to upgrade PSE-10 I tried their on-line program and  it is too advance for a hobby photographer like myself and their Help Desk is impossible to reach.

    Hi,
    Can you please share the logs?
    You can use the Adobe  Log Collector tool (Log Collector Tool) and share the corresponding zip file @ [email protected]
    Thanks,
    Shikha

  • Getting general error when saving site using "create PDF from"

    I'm using Adobe Acrobat Professional 8.0.0 for Mac, trying to save websites. This started working fine, but I had to shut down in the middle of a site being saved. Now when I try to save a site  using Web Capture/create PDF from I get a "general error, nothing was saved". What do I need to do, remove, replace, reinstall or whatever to get this feature working again?
    Also can anyone tell me how to set the feature that saves web pages with the headers and footers showing date, time, URL, page title, etc. I often use the print feature (save to PDF) and up until a day or so ago it always saved with those headers and footers. Now they're missing, which is what prompted me to try saving entire sites, above. I remember setting these a long time ago and being able to choose what went on the left, right,header and footer, but I cannot find those settings now.
    Thanks,
    Michele

    Well, after downloading Applejack, I am completely confused. I'm not sure I understand what will happen if I do any of these steps: see 3a.. "clean out all cache files including the Launch Services database and any cached User Pictures". What kinds of things will I lose? Can I choose only the Acrobat cache files?  I don't want to have to spend hours or days resetting things as I'm in the middle of a project with a close deadline. I also don't really understand fully what will happen with all the other things they discuss.  The instructions say (I just copied and pasted these):
    3.  Auto mode: You can let the script run through its tasks automatically by typing 'applejack auto'. If you want the machine to automatically restart at the end of its tasks, use 'applejack auto restart'. You can also tell the computer to shut down automatically at the end by using the command line 'applejack auto shutdown'.
    3a. Deep Auto mode: If you want to let AppleJack clean out all cache files, including the Launch Services database and any cached User Pictures, use 'applejack AUTO' instead. Use this if you still have problems booting after running AppleJack already.
    4.  Interactive mode: To run through just one task, or to run the script manually, type 'applejack' and then choose tasks from the menu. Running the script in interactive mode has the benefit of giving you options for working with user level cache and preference files, not just the default system level caches and preferences. To select an option, type the highlighted number or letter associated with the action, and then hit return. Whenever you enter a choice in AppleJack, you will need to hit return for that choice to take effect.
    4.  Corrupted preference files are moved into a directory that will mirror the original preference directory, with (Corrupt) added to the directory name. For example, corrupt preferences files found in ~/Library/Preferences will be moved to ~/Library/Preferences (Corrupt). After running AppleJack, you'll probably want to take a look at them (and most likely throw out those folders). As of version 1.4.2, AppleJack now creates a copy of the directory tree inside the (Corrupt) folder so that if any files were deeply nested inside the original preference folder, they will be placed in an identical directory hierarchy in the new (Corrupt) folder. This way, if for any reason you would want to move a preference file back, you know where it should go.
    6.  AppleJack has a primitive logging mechanism. It writes a journal of most of its activity to /var/log/AppleJack.log. AppleJack will automatically reset the log the next time you run it, if the file should ever reach a size somewhat over 500k.

  • Question re Create PDF from Word doc

    Hi
    I am trying to create a pdf from a Word document (Word 2007, Acrobat 8 Professional), and am having lots of trouble with images,fonts and document overhead. With the fonts, i generate the PDF by saying Create Pdf from the plugin in Word. I specify in the Preferences that fonts are not to be embedded. I then open the PDF and access PDF Optimiser -> Audit Space Usage, and it says that fonts take up like 20% of the document, however there are only like 10 lines of text in Arial (9pt), and 6 titles also in Arial (Bold). I dont understand why Font is taking up so much space considering that i have elected not to embed fonts (if i go to the Fonts section in the Optimiser, it shows both embedded and unembedded panes blank).
    With the images, i have 2 jpegs in the footer, that are compressed (JPEG -> Low). The other thing i am struggling with is the headers and footers, if i generate the PDF from the Word doc with Headers/Footers, then images take up over 15% of the document. Not sure if there is a way to add headers and footers within minimum impact of filesize? I have tried checking everything in the 3 categories of Dicard Objects, Discard User data and Clean Up. but the Document Overhead remains at 35%.
    What else can i do to get these filesizes reduced?I have been researching this for days and have not come across anything that has helped.I have tried to PDF print, i have changed the font to like Courier, ensured no thumbnails or bookmarks, ensured JPEGs are not embedded in the doc, tried Save As, Save As under a different filename - basically anthing you can find on the net i have found and tried, but still cant fix this!!!! please, if anyone knows acrobate 8 better than me / or knows what the problem is, please advise????
    Thanks very much.

    The colors and size in a graphic needs to be done in a graphics editor. What type of editor would depend on the use of vector graphics versus bitmap. Sometimes vector graphics are larger than bitmaps if you are using a lot of lines that would display better as just a splotch of color. Such are the variations between vector and bitmap graphics, but important if you are looking for size reduction. For a bitmap, I would do the sizing and color depth with IrfanView, but you should be able to do that with PhotoShop if you have it. Vector graphics can be adjusted in Illustrator. The size of vector graphics is not an issue since they are scalable, but the size of a bitmap is important since your are looking at individual pixels and that depends on size. The point is that if you can adjust the color depth and size for the desired pixel resolution, the bitmap is optimized for the conversion to PDF from WORD.
    As I mentioned, the smallest file size job options should minimize font storage in the PDF. Checking with the PDF Optimizer does not always give you all of the fonts. I am not sure why. It is better to check the font tab in the document properties to see what has been embedded. There is a preflight macro to embed fonts, you might check to see if there is one to delete fonts (I have not checked on that). Sometimes you can play with the reprint of a PDF, but that is not an option that is generally recommended, particularly if you have any tagging or such. Of course, tagging can really bloat a PDF, but is needed for a variety of reasons such as format for saving back to WORD (not a great workflow), accessability, and related issues. In another topic, there is some discussion of the purposes of tagging and bookmarks. However, the tags and bookmarks take space if that is really an issue for you. The latter are avoided if you use the print to the Adobe PDF printer and do not use PDF Maker in the PDF creation process. Again, there is a trade-off here in terms of size and functionality, particularly accessibility compliance.
    Not sure I am helping as I run on, but sort what might be useful for you.

  • MSWord items that crash Adobe Acrobat 9.0 add-in (Create PDF function)

    I just want to include a tip I discovered after two days of troubleshooting a colleague's MS-Word (2007 - docx) document. I tried going through the forums to see if anyone else has posted this.
    Obviously, my colleague would try to use the Acrobat add-in within Word through the "Create PDF" button. But doing so causes MS-Word to crash. The crash involves the dialog box for sending an error report to MS (which I cancel).
    I then attempted this on another PC and got the same result.
    Another colleague on the support team suggested trying to convert only sections of the document to try and pinpoint the issue to an element within the document. The result of trial and error pointed me to a particular graphics element on Page 11 of the 46 page document. The graphics element was composed of 4 clock diagrams that were made up of smaller elements (arrowheads and lines for the clock-hands, separate textboxes for the numbers 1 - 12 on each circular clockface, etc.) Deleting the whole graphic allowed the document to be converted to PDF.
    I then reverted to the original document and clicked on the graphic. I was about to investigate if there was a particular element within the grouped graphic that caused the crash, but, by luck, I was able to discover that just by ungrouping the graphic into its elemental components "Create PDF" was able to render the PDF successfully.
    Perhaps this is something to try in the future should anyone run into this issue. I hope this helps someone else.

    It may be something that Adobe did not catch in the way that MS did the graphic processing (and to be sure MS does not always do things by the book). It may have been fixed. I note that you only have AA9.0. The current version is AA9.3.4, so an update might be in order. Potentially that would resolve the problem.
    In any case, I have found the graphic processing done by WORD 2007 to be strange. Taking the same file to WORD 2003 (saving to a DOC format if required) has no problem with the conversion. So there are likely problems from both MS and Adobe.

  • White boarders around artboard when creating pdf in CS4

    Hi,
    have been trying to find solution for this issue for 4 hours now and im loosing my mind:)) ... so decided to ask some help from you guys.
    Problem: im trying to create pdf file with black background in Illustrator cs4 and white thin boarders keep appearing to the right and bottom of the page. I have streched the background image so that its bigger than the artboard but white lines are still there when pdf is opened?!? I guess there is extremeley easy solution for this (kind a "you forgot to tick the box from x menu") but i just cant figure out .... so all the help is most wellcome!!!
    Thank you in advance!
    Jimi

    @ Jacob --- you're half correct, in that it's a small bug, or smoothing artifact in the Preview application from Apple.
    White boarders go away when you uncheck "Smooth text and line art" in Preview Preferences, under the PDF tab. Since that makes everything very pixelated, I don't recommend keeping that setting on.
    Instead, consider installing Adobe Reader or using Acrobat Pro, where incidentily, the very same phenomonen can occur. In Acrobat Pro, you can also toggle "Smoothing" in the Preferences, Page Display dialog.
    TIP: Preview works best with RGB PDFs, whereas if you are doing print production work, I would suggest using either Acrobat Reader, or Pro which is my preference because of the soft-proofing and print production tools.

  • Error in creating PDF's from 11g Fusion ware report server :: REP-0178

    Hello Friends,
    I am trying to create pdf files from the report server command line, It works fine when I run the command from ORACLE User but when I run it from any other user I get error
    REP-0178: Reports Server rep_001 cannot establish connection.
    Command line that I am using is :-
    /abc/home/rwclient.sh server=rep_001 report=/abc/home/auto.rdf destype=file desname=/abc/home/report001 desformat=pdf userid=${ID}
    I am using a personal copy of reports.sh in /abc/home/
    It is also working fine when I run it from the browser report server link, the only issue is it didn't work through command line for any user other than Oracle.
    OS : Linux x86_64
    Reprots : Fussion ware 11g
    Kind regards,
    Aashish Sharma

    Small update again,
    I skipped using the downloadable oc4j/j2ee and tried using the one that came with 10.2.0.1 installation (patched to 10.2.0.3)
    It starts up fine saying:
    07/03/28 21:31:27 Oracle Application Server Containers for J2EE 10g (9.0.4.1.0) initialized
    It started up all well with the downloadable latest containers too, but got different errors running the apex_fop.jsp file.
    well with the version that came with the database it says in the PDF file after I tried to generate it from a report:
    Error 500:
    java.lang.UnsupportedClassVersionError: Bad version number in .class file
    Anyone got any idea?

  • Windows 7 Home Premium stops working with ADobe Create PDF

    Windows 7 home premium after a year of working fine, today stopped working with create PDF printer. I print to the PDF printer, looks normal, but no file appears in my files of PDFs created on line. My laptop running Windows 7 Professional has had no such problem. Please advise.

    Windows 7 home premium after a year of working fine, today stopped working with create PDF printer. I print to the PDF printer, looks normal, but no file appears in my files of PDFs created on line. My laptop running Windows 7 Professional has had no such problem. Please advise.

Maybe you are looking for

  • How can I run a 32 bit application on a 64 bit machine?

    A program I use: Easyeclipse seems to only support 32 bit. Since I have a 64 bit system, I can't run it. Is there any way I can run a 32 bit executable on a 64 bit system?

  • Unplanned delivery cost will lead to negative value

    Hi everyone, i have this issue.  I m trying to cancel an incoice document from MR8M.When i do that i get a message: No m8281, unplanned delivery cost will lead to negative value. Can someone help me with this? what do i need to do? Regards

  • Run Form problem

    Hi, I am new to Forms. Just installed 10g Developer Suit, and created a simple form and when tried to Run it, it starts but bounces out immediately, logging these lines in the OC4J Listener screen: 08/04/18 21:27:01 FormsServlet init(): configFileNam

  • Podcast only displays in single category

    Hi, So I did some searching about this, but didn't really see any definitive answer. I just uploaded and got approved for the first episode of a new podcast. We're going ot be talking about a range of topics, mostly geeky stuff like games and comics.

  • How to duplicate the database/catalog ?

    Hi, How can we quickly duplicate our database/catalog to create a test environment ? Thanks, Paul