No images in GoLive pdf conversion

I'm setting up a webpage in GoLive and am trying to create a pdf to print out for others to review.  When I convert to pdf, the images that I have placed in the page do not appear in the pdf--I just get an empty box where the image should be.  The images are linked from the web, not my hard drive.  Is there a way to make the images appear in a pdf?

Hi,
What is the version of PowerPoint and Acrobat you are using?
Please make sure that you have updated the Acrobat to its latest version. Go to Help -> Check for Updates.
Also, try printing the PPT to Adobe PDF printer and then check the issue.
Regards,
Anoop

Similar Messages

  • Need help urgently with conversion of tiff images(.odm) to pdf files...

    Hi Friends!!
    Currently we are working on a project which involves conversion of tiff image files to Pdf files. We are able to convert .tif files to .pdf files.(We are using iText libraries for this..)
    But the only problem we are facing is ---
    We have some .odm files which are multipage tiff files. But we are unable to convert them into .pdf files.
    Note:- Please note .odm is a proprietary extension given by Optix Document Management and Workflow Systems. We figured out that .odm works as a collection of .tif images.
    I searched a lot on the net but couldn't find any help, so, if anyone has any idea of how to go about doing this please let me know...
    Please email any suggestions to [email protected]
    Thanks in advance for your help,
    Rita

    I'm afraid I can't help much with your problem, but I think I can offer some advice on how to get better, faster answers here at this forum:
    First, don't flag your question as urgent, even if it is for you. Claiming urgency is very likely to be counter-productive: most forum regulars will simply ignore such messages as rude and selfish attempts to elicit immediate and special attention.
    Besides, unless the Symbionese Liberation Army is about to chase you over the edge of a cliff, your problem probably isn't as urgent as you think. :o)
    Second, don't ask people to reply by private email. Most Forum regulars believe solving problems should be a public, transparent process during which a first try at an answer can and should be corrected if someone more knowledgeable notices that it is incomplete or incorrect. Also, they get some of their reward for being respondents from being seen to be competent and knowledgeable by their peers (not to mention the possibility of collecting some of those precious Duke Dollars).
    Good luck!

  • Publisher image size reduced upon pdf conversion

    Last week I submitted a Publisher file of an advertisement for pdf conversion. When I opened the pdf and printed it out, the ad which had been, let's say, 4x7 inches, printed out about a quarter inch smaller in both width and height. When I e-mail it to the magazine publisher, how do they make the image fit the correct ad space? And how can I prevent this change in size next time?

    Check your print settings in Adobe Reader. Make sure have page
    scaling: none.
    Aandi Inston

  • Unable to convert an image (.bmp) to PDF

    I have a written servlet that uses Adobe LiveCycle API to convert files to PDF. This works. I have a problem with one image (.BMP) for which the PDF conversion fails. I then tried converting the image to PDF using Adobe Acrobat. I see the following error:
    I am able to open the image file without any issues. Why does Acrobat think the file is corrupt? Is there a way to find out if an image is OK for PDF conversion, either manually or programmatically? Attaching the image file for reference.

    Hi ,
    For this issue, it looks like your SharePoint server(s) have been patched with MS13-052. 
    Please try to uninstall it and reboot your machine.
    Here is a similar post for you to take a look at:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/eec6e515-6a0a-42f2-963d-51fde59be9c4/sharepoint-server-20102-abnormal-issues-please-help
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • To convert multiple image files to pdf using pdfsharp in C#

    Hey guys I have this C# code to convert any image file to .pdf using pdfsharp.dll. But I want to select multiple images for conversion please help. here's my code (plz note enable pdfsharp.dll in the reference)
    usingSystem;
    usingSystem.Collections.Generic;
    usingSystem.Linq;
    usingSystem.Text;
    usingSystem.Threading.Tasks;
    usingPdfSharp.Pdf;
    usingPdfSharp.Drawing;
    usingSystem.IO;
    namespaceConsoleApplication1
    classProgram
    staticvoidMain(string[]
    args)
    PdfDocumentdoc =
    newPdfDocument();
    doc.Pages.Add(newPdfPage());
    XGraphicsxgr =
    XGraphics.FromPdfPage(doc.Pages[0]);
    XImageimg =
    XImage.FromFile(source
    path...);
    xgr.DrawImage(img,0,0);
    doc.Save(destination path...);
    doc.Close();

    try this one
    public string CreatePDF(System.Collections.Generic.List<byte[]> images)
    dynamic PDFGeneratePath = Server.MapPath("../images/pdfimages/");
    dynamic FileName = "attachmentpdf-" + DateTime.Now.Ticks + ".pdf";
    if (images.Count >= 1) {
    Document document = new Document(PageSize.LETTER);
    try {
    // Create pdfimages directory in images folder.
    if ((!Directory.Exists(PDFGeneratePath))) {
    Directory.CreateDirectory(PDFGeneratePath);
    // we create a writer that listens to the document
    // and directs a PDF-stream to a file
    PdfWriter.GetInstance(document, new FileStream(PDFGeneratePath + FileName, FileMode.Create));
    // opens up the document
    document.Open();
    // Add metadata to the document. This information is visible when viewing the
    // Set images in table
    PdfPTable imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    for (int ImageIndex = 0; ImageIndex <= images.Count - 1; ImageIndex++) {
    if ((images(ImageIndex) != null) && (images(ImageIndex).Length > 0)) {
    iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(SRS.Utility.Utils.ByteArrayToImage(images(ImageIndex)), System.Drawing.Imaging.ImageFormat.Jpeg);
    // Setting image resolution
    if (pic.Height > pic.Width) {
    float percentage = 0f;
    percentage = 400 / pic.Height;
    pic.ScalePercent(percentage * 100);
    } else {
    float percentage = 0f;
    percentage = 240 / pic.Width;
    pic.ScalePercent(percentage * 100);
    pic.Border = iTextSharp.text.Rectangle.BOX;
    pic.BorderColor = iTextSharp.text.BaseColor.BLACK;
    pic.BorderWidth = 3f;
    imageTable.AddCell(pic);
    if (((ImageIndex + 1) % 6 == 0)) {
    document.Add(imageTable);
    document.NewPage();
    imageTable = new PdfPTable(2);
    imageTable.DefaultCell.Border = Rectangle.NO_BORDER;
    imageTable.DefaultCell.HorizontalAlignment = Element.ALIGN_CENTER;
    if ((ImageIndex == (images.Count - 1))) {
    imageTable.AddCell(string.Empty);
    document.Add(imageTable);
    document.NewPage();
    } catch (Exception ex) {
    throw ex;
    } finally {
    // Close the document object
    // Clean up
    document.Close();
    document = null;
    return PDFGeneratePath + FileName;

  • Files with .png images create huge .pdf's

    I use .png images in PowerPoint presentations and these seem to create huge .pdf files. (...don't have this problem using .jpg images) For example, I have a 48 slide presentation that has a small .png image in the "slide master" so it will show up on every page. The PowerPoint file is 2.3MB, however the .pdf of it is 33.3MB, making it WAY too big to email, which was my objective.
    Any ideas on how to reduce the size of .pdf's which contain .png images?
    ...note that I "compressed" the .png images inside of PowerPoint prior to creating the .pdf, but this made no impact.
    Thanks,
    pm

    >I have a 48 slide presentation that has a small .png image in the "slide
    >master" so it will show up on every page.
    PowerPoint only has to store one instance of the image even thought it is
    displayed on multiple slides. But Acrobat can't do the same, the image has
    to be stored for every page that it appears on, so that would explain the
    larger file size.
    Acrobat is supposed to be able to optimize the storage of common background
    images (at least that's the message I see when I do a "Save as..."), but I
    have yet to see it to work. Maybe it depends on the application the orginal
    file is created in and the PDF conversion method used.
    Adding the image into a PDF file later as a watermark instead may be a way
    to keep the size down (then it really only does store the object once),
    though I believe that watermark images will appear in front of everything
    else on the page (not sure if that's a problem for you, it depends on
    whether any text or objects in the presentation ever appear in front of the
    image).
    What are the dimensions and resolution of the image in PowerPoint? You may
    be able to go as low as 75 dpi and not notice a difference, it depends on
    whether the image contains any areas of high contrast or text.

  • PDF conversion with PDF2ID; Hypertext not working when exported back to pdf.

    I have done a PDF conversion with PDF2ID, however Hypertext is not working when I exported it back to pdf. I am using the PDF2ID plug-in program to redo all the product booklets for our company as the hypertext did not work when downloaded to any smart phone. All that appeared were blank placeholders in each booklet index page.
    According to the PDF2ID people the program plug-in recovers all URLs static and dynamic and bookmarks and local links and suggested I check with Adobe ID5 for help, but Adobe says my $1,000 ID5 is no longer supported and that I should go to the forums.....so here I am.
    This is the first time I've even opened my ID5, so I'm a bit lost. Now I need to improve the quality of the PDFs, as we also need to convert all images to TIFF-CMYK in order to have the booklets printed & bound professionally. they tell me ID can do that.
    Any help is greatly appreciated.
    David

    Daveorne wrote:
    they tell me ID can do that.
    Ugh...in some companies, that is training.
    Don't take this the wrong way David, but of course ID can't do anything. PDF2ID conversions can be sketchy in the hands of the experienced. The same can be said of properly preparing matials for print. As Bob has already alluded, you're in an unfair position there. It's not uncommon for "management" types to just throw some sophisticated tools at a need and expect someone to make it work. In order to do what's being asked of you, you'll have to learn a fair bit about InDesign and production. It's too soon to ask about the output when you haven't learned to manage the input.

  • Horribe image quality in PDF

    Hello,
    my problem is very simple.
    The quality of the image of my PDF is really horrible.
    I need to have a PDF file because in order to print a magazine, that's the file that I need.
    So I converted my picture:
    http://image.noelshack.com/fichiers/2013/09/1362170332-2.png
    Good quality for now.
    Then, when I convert it PDF with Adobe Acrobat XI,
    the result is very blurry, I tried to print it, very very bad quality ...
    Is there any solution to keep the quality as good as it was?
    (by the way, my image was a .png )
    Thanks to the person who'll help me!

    The relative quality of any bitmap file after conversion to PDF depends entirely on the conversion settings you used. A lossless PNG file could be compressed to a super-low-quality JPEG or kept visually identical with lossless JPEG2000 compression depending on how and where the PDF is made.
    As your screenshot shows the image within a page of text, I assume you're creating the PDF from another application - in which case the export settings will control everything. If you convert an isolated image file to PDF with drag-drop or the Create.. button on the Acrobat toolbar, the settings are defined by Preferences > Convert to PDF > PNG and default to "JPEG medium".

  • Poor Image quality upon PDF export

    hi,
    issue: images lose quality when viewed in PDFs
    i've searched/read these and other forums for the past few days and have tried just about every suggestion out there in order to get better quality images in my PDFs and nothing works.. it's as if everyone is talking some theory without actually testing/proving what they're saying.
    are pdfs inherently bad at handling raster images?
    i have a few 800x1200 px renders (tiffs/jpgs) that i'd like to include in a PDF.. i'm using A4 landscape orientation because when viewed at full size on a 24" monitor, it's the size i'd like it to be (i'm not concerned with printing this pdf.. monitor only)
    the images when view full size in the pdf are a bit smaller than viewing the original images full size however, the quality is a lot worse.
    honestly, i'll try or retry your suggestions but at this point, i'm more/less looking for an explanation as to why this happens because from what i can tell, it's going to happen no matter what
    gracias

    PeterBreis0807 wrote:
    Not sure what you are expecting.
    well, i'm certainly expecting better quality than what i'm getting..
    The jpg is contrasty and it is lower resolution than you need, but you did say that above. Which means I am not looking at what you are looking at.
    The color space is srgb and the conversion from the tiff would have reduced the quality a little or a lot depending on your settings.
    it doesn't matter if i use the original tiff or the jpg.. for all intents and purposes, let's forget i even have the tiff.. the jpg should look the same in the pdf (imo)
    Did you print to pdf or Export? If you exported, did you use "Best" as your setting.
    i've done all sort of methods.. but yeah, always at highest quality if said method allows such settings..
    It has lost some contrast and is a little blurry. It looks to my eye like the degradation you get from setting the jpeg quality a little low.
    well, no.. it has gone from something that is in focus to something that is out of focus.. if i open the jpg in photoshop and do a 'save as' jpg with the quality set to 3 (with 12 being best), i will get similar results as putting the jpg in a pdf.. (albeit, a different type of quality loss but just as bad)
    you've seen the comparison but just in case someone else wants to look, check here:
    http://homepage.mac.com/jeffhammond/Sites/imgs/origVSpdf.jpg
    that's a screenshot showing the jpg on the right and the pdf output on the left (both viewed in preview)..
    it's unacceptable.. but like i said earlier, i think this is an inherent aspect of pdfs and i'd settle for a decent explanation as to why it happens..
    OSX has some very smart frameworks built in, which do make bitmaps displayed on screen in Cocoa apps look better than they should. Not exactly helpful if you simply want to see it unenhanced.
    but still, if that's the case, why isn't osx doing the same thing to the pdf.. (and also, i highly doubt the actual quality of the image is being shown in the pdf but when i view the jpg, i'm being shown an enhanced view to the point of making an out-of-focus image being an in focus image.
    jeff

  • Your PDF conversion request failed.

    Everytime I try to combine my PDF's I keep getting a message that says Your PDF Conversion Request Failed.

    Hi,
    Please let me know if your files are big. complex, or image files?
    If you sill have the same error message then please share your files with us so that we can look at them using below site: 
    https://adobeformscentral.com/?f=qJiclooYWGGNFtWfj8g3wg#
    Thank you.
    Hisami

  • I am getting an error message when I try to combine three PDF files"Your PDF conversion request fail

    I am getting an error message when I try to combine three PDF files "Your PDF conversion request failed. Try again later" 
    Thank you,
    Lori Jans

    Hi,
    Please let me know if your files are big. complex, or image files?
    If you sill have the same error message then please share your files with us so that we can look at them using below site: 
    https://adobeformscentral.com/?f=qJiclooYWGGNFtWfj8g3wg#
    Thank you.
    Hisami

  • PDF conversion on fly

    Currently am working on an application, with linux as server and clients as windows machine. I am looking for the way to convert document of any type to pdf on fly. that is a user working on a windows system, will upload a file on to the server, the file will get converted to pdf on fly. Kindly suggest me if there are any open source or free pdf class libraries which are efficient.
    Regards.
    Babu.

    I'm facing the same problem. My os is linux ES4 with open office2.0, i've used open office for pdf conversion. It is converting doc files to pdf but the images under doc files are not displayed in the generated pdf files. I've also tried itext but it is unable to convert doc files to pdf. It only works for txt, gif, jpg files.
    Do let be know if any one has any alternative for this. I also need to convert dwg(AutoCad) files to pdf. My environment is Linux ES4, Webshpere6.0, MySql4.0 with jsp, servlets as scripting language.
    Hoping for support from all of you.
    Regards
    Amit

  • PDF conversion problem after password change

    I am in a loop: having changed password, Adobe insists on new subscription to PDF conversion before converting a document, but will not accept my submission because I already have a subscription with 4 months still to run before renewal. How do I sort this idiot out?

    Which subscription service did you purchase?  Adobe PDF Pack or ExportPDF?
    Could you make sure that you are signed in before converting documents?
    Go to the home screen of Adobe Reader for iOS.
    Tap My Account in the lower left corner.
    Tap the blue Sign In button.
    Sign in with your Adobe ID and new password.
    (Tap/click the image above to enlarge)
    Additionally, please take a look at this FAQ page for account information.
    Adobe ID | Sign in | Change email, password, or account information
    Please let us know if you need further assistance.

  • Why do images within a PDF look jagged when viewed in Acrobat Pro 10.1.6?

    Using a MacBook Pro running Mac OS version 10.7.5 with NVIDIA GeForce GT 650M 1024 MB graphics card. High-resolution source images look fine in other software, and embedded images in a PDF look fine when viewed on Google Drive, but curves and diagonal lines look jagged when viewed in Acrobat Pro 10.1.6. Checking smoothing options in Preferences only adjusts the position of the jagged edges; it neither enhances nor ameliorates them.
    I created a sample PDF to illustrate the problem I'm having. Created in illustrator, exported to PNG and converted to PDF. Here is a screenshot of the source PNG side-by-side with the PDF I created from it:
    Please note that when I preview the PDF in Finder, and when I view the PDF in Chrome using Google Drive, the image looks fine. Here's a link to the sample PDF:
    http://www.sendspace.com/file/77f5m6
    Any assistance is appreciated. Thanks!

    Unfortunately, as I mentioned in my original post, I've already tried toggling smoothing options. They don't make the jagged edges go away—they just change them slightly. In some cases, as with the sample file provided, it does help smooth the art out, but it never looks as good as it did going in, in a recent project, toggling smoothing options didn't affect the appearance of the image at all. Zoom does not appear to relieve the artifacting.
    A little clarification: this PDF was created from a flat PNG, but I have had this issue with PNGs and TIFFs as well, generated by both Photoshop and Illustrator. To reiterate, the PDFs display fine in other software—Finder preview looks great, and the same file viewed in my browser via Google Drive looks as intended as well. A colleague was able to replicate this issue in Acrobat on his Windows machine. This appears to be a rendering issue specific to Acrobat with regards to the files I use it to create.

  • Automated report/ PDF conversion with AppleScript

    Hello-
    I am attempting to PDF a spreadsheet from Dropbox, and email it to a set list of recipients with AppleScript.  Much of this I have been able to figure out, but I am having some issues with the PDF conversion.  As you can see below, I am still working on sending the xls file, and have not yet been able to get AppleScript to convert a specific tab of the file to aPDF.  I expect scheduling to be handled theough crontab.
    Current script is as follows:
    tell application "Finder"
              set folderPath to folder "Macintosh HD:Users:user:Dropbox:folder:Calculated PO Sheet"
              set theFile to first file in folderPath as alias
              set fileName to name of theFile
    end tell
    set theSubject to "Current PO Report" date
    set theBody to "See attached."
    set theAddress to "recipient email"
    set theAttachment to "CALCULATED PO SHEET.xlsx"
    set theSender to "sender email"
    tell application "Mail"
              set theNewMessage to make new outgoing message with properties{subject:theSubject, content:theBody & return & return, visible:true}
              tell theNewMessage
                        set visibile to true
                        set sender to theSender
      make new to recipient at end of to recipients with properties {address:theAddress}
                        try
      make new attachment with properties {file name:theAttachment} at after the last word ofthe last paragraph
                                  set message_attachment to 0
                        on error errmess -- oops
      log errmess -- log the error
                                  set message_attachment to 1
                        end try
                        log "message_attachment = " & message_attachment
      #send
              end tell
    end tell

    Hi,
    there is a special setup for this requirement. Please see the following support note
    Reference
    Oracle Reports Output For Indian Languages Like Gujarati, Marathi [ID 980554.1]
    Roberto

Maybe you are looking for

  • Screen resolution changes after opening PDF in preview and is enlarged.

    Screen resolution changes after opening PDF in Preview and is enlarged.

  • Java I\O How to know if a file is in use

    I'm writing a program that rename a file by time stamping it, but before I rename the file I want to check if it's being used by another program. How can I do that in Java. I'm using JDK 1.3 thanks in advance

  • Database Performance Slow

    Hi to all, My database performance is suddenly going slow. My PGA Cahe hit percentage remain in 96%. I will list out the findidngs I found... Some tables were not analyzed since Dec2007. Some tables were never analyzed. (Will the tables were analyzed

  • Regarding Shared Services and Essbase Access

    Hello, I am curious on few things regarding how Essbase and Shared services are interlinked. Basically we have created Essbase Filters to limit the User access to specific entities , my concern is if a User is trying to Run a report or retrieve throu

  • Error when trying to open an express window

    Hi Can anyone enlighten me on this error? It occurs when a button is selected to open another express window. USER ERROR: The EnterAt operation was invoked on a qqsp_Heap with an invalid row number (0). The row number must be >= 1 Class: qqsp_UsageEx