Cannot generate GIF file into PDF file

Use Acrobat 8 professional to create a PDF file from html. However the GIF image is not generated in the PDF file. JPG file is OK. All the html, jpg and gif files are in the same directory. The GIF image can be viewed if the html file is opened by IE.
Here is my html file:

All the HTML and GIF files are under the same local directory. If I use IE to view the HTML file, the GIF images are loaded and displayed. The page can be printed into a PDF file with Adobe PDF writer (I thought it should be Acrobat Distiller 8). All the images (GIF and JPG) are printed too.
However, when I use "Convert current web page to an Adobe PDF file" in the IE tool bar or "Create a PDF" in the Acrobat tool bar, the GIF images are not built into the PDF. The JPG images in the same directory are built. It is strange.

Similar Messages

  • Can I insert the image file into PDF file  in Adobe X Standard ?

    can I insert the image file into PDF file in Adobe X Standard ?

    http://matt.coneybeare.me/how-to-make-an-html-signature-in-apple-mail-for-maveri cks-os-x-10-dot-9/

  • Convert XML file into PDF file

    <b>XML to PDF</b>i want to Convert XML file into PDF file pl. any one can suggests API's

    Hi,
    There are many ways to convert XML files to PDFs through java.
    One of the easiest way is by using iText.jar which have classes for conversion.
    The following are the required steps
    1. Create a document object for the XML file ( Using DOM or SAX parser).
    2. Parse the xml document and extract the content to write in PDF.
    3.Create a itext Document object.
    4.Get a PdfWriter instance for the PDF file.
    5.Write in the pdf the extracted text using the document object.
    Refer <a href="http://itextdocs.lowagie.com/examples/com/lowagie/examples/general/HelloWorld.java">here</a> for a simple pdf writer example.
    Refer <a href="http://java.sun.com/developer/codesamples/xml.html">here</a> for examples of XML Parsers.
    Regards,
    Uma

  • Cannot Paste Excel info into PDF files

    We are an Accounting firm.
    I need to past copied information from Excel into PDF files.
    We have 35 users that use Adobe Standard 9.5.
    We have one use that uses Adobe X Standard.
    The 35 users can paste into a PDF file with no problems.
    The 1 User of Adobe X Standard cannot.
    Can someone please assist me is getting Adobe X Standard to allow a simple paste from Excel into the PDF.
    Thanks.
    Cepolly

    I don't know if this will help, but I ran into this problem myself today.  We had an upgrade, and no one could figure out why I couldn't paste my small Excel table into my pdfs, which I have done through 9 and now X Pro.
    I compared my Preferences, and the problem was there.
    In Edit/Preferences/Comments, all options should be checked in the first of three sections.  Once I checked all of those options, I could paste into the pdfs again.
    Hope this helps - actually hope you found the solution long before now.

  • Conversion from .prn file into .pdf file

    How to convert printer file (.prn) into PDF using ghostscript in C#.Net programmatically?

    Hi ammulu135,
    This forum is specific to discuss problems of C# development. For Ghostscript product is not from Microsoft. I am
    afraid this issue is out of our support. Thanks for your understanding.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Convert iPhoto file into pdf file

    Need to convert iPhoto files in pdf format to send as email attachment to a recipient who requires it in this format.  How do I do it?

    There might be a quicker way, but an alternative is:
    - Locate the photo(s) in Finder
    - Open them in Preview
    - File > Print (or CMD + P)
    - In the bottom left there should be a drop-down menu for PDFs.  You can then choose to save it as a PDF, or email it as a PDF attachment.
    This works for single and multiple photos.  Bear in mind that they will save at the original resolution, so if you want the file to be smaller, make all the changes you want to in iPhoto then locate them in Finder.
    Hope this helps.

  • How do I convert a PPT file into PDF file?

    How do I convert a PPT into an PDF using adobe online?  Converting word to PDF works but not PPT to PDF. Thanks

    Hi,
    PPT files should work as DOC(X) files do on https://createpdf.acrobat.com/app.html.
    Please try another PPT file(something small and simple) or share your PPT file with me so that I can review the file using below site:
    https://adobeformscentral.com/?f=qJiclooYWGGNFtWfj8g3wg
    Thank you.
    Hisam

  • Cant generate my help file into .pdf format

    Hi All
    I cant't generate my help file into .pdf format for printed documentation.  My .pdf option is not enabled.  How do I get it enabled?  I am on version 8.
    I am following the instructions in help.
    thanks
    Caryn

    Peter,
    Please find my comments inline:
    If I understand you coIf I understand you correctly, any of the Acrobat 8 or greater versions can generate a PDF with the comments feature. Correct please?
    Absolutely!
    That means that one person must have a paid for version of Acrobat, ommenting cannot be initiated by users of Acrobat Reader, the latter only enables you to comment on a PDF that has been created in a paid for version. Correct please
    Yes, the commenting has to be inititated or rather the person with the paid version installed has to assign rights to the reviewers. Only then the assigned persons will receive emails in their inboxes that the document is set for review.
    Regards
    Rajdeep

  • Setting Font for converting multiple text files into PDF using VB 6.0

    Dear All,
    Am converting multiple text files into PDF using VB6.0. Currently, am unable to control the font face and size for the generated files. Below is the procedure am using for each file;
    Public Sub proc_convert_to_PDF(srcFilename As String, destFilename As String)
    Dim p_AcroApp As CAcroApp
    Dim p_VDoc As CAcroAVDoc
    Dim p_DDoc As CAcroPDDoc
    Dim IsOk As Boolean
    Set p_AcroApp = CreateObject("AcroExch.App")
    Set p_VDoc = CreateObject("AcroExch.AVDoc")
    Call p_VDoc.Open(srcFilename, "")
    Set p_VDoc = p_AcroApp.GetActiveDoc
    If p_VDoc.IsValid Then
    Set p_DDoc = p_VDoc.GetPDDoc
    ' Fill in pdf properties.
    p_DDoc.SetInfo "Title", Format(Date, "dd-mm-yyy")
    p_DDoc.SetInfo "Subject", srcFilename
    If p_DDoc.Save(1 Or 4 Or 32, destFilename) <> True Then
    MsgBox "Failed to save " & srcFilename
    End If
    p_DDoc.Close
    End If
    'Close the PDF
    p_VDoc.Close True
    p_AcroApp.Exit
    'Clear Variables
    Set p_DDoc = Nothing
    Set p_VDoc = Nothing
    Set p_AcroApp = Nothing
    End Sub
    What I need;
    1) to be able to set the font face of the destination file ( destFilename)
    2) to be able to set the font size of the destination file ( destFilename)
    Am using Adobe Acrobat 7.0 Type Library
    Kindly Help.
    Thanks in advance

    We didn't say it doesn't work. We said it isn't supported.
    There are a number of other ways to make a PDF. The one which would
    give the most control is if your application directly printed to GDI,
    controlling the font directly. This could print to Adobe PDF.
    You could look for an application that gives control of font for
    printing.
    You could use a text-to-PostScript system and distill the result. You
    could even look for a non-Adobe text-to-PDF.
    Working in the unsupported and dangerous world you chose, the font
    size for text conversion is set (and this is very bad design from
    Adobe) in the settings for Create PDF > From Web Page. There is no API
    to this.
    Aandi Inston

  • How can i convert image into pdf  file

    Hi Friends,
    I want to convert image file(i.e. jpeg,bmp,gif) into pdf file using java apis OR is there any tool which can convert it & which we can integrate into our java application
    Thanks in adva.

    Is there any solution to this case.....?

  • How to download the script data into pdf file

    how to download the script data into pdf file
    i have one option to download the script data to pdf file --->rstxpdft4 program.
    i have one doubt how to use this proogram.or any function module to download the script data to pdf file.
    Thanks and regards,
    Sri.

    Hi      Sri Sai,
    I know one method to convert the sapscript to pdf file :
    first generate a Spool Request for the required Sapscript
    then goto transaction SP01 and copy the generated Spool Request number
    now execute the SAP report RSTXPDFT4
    here enter the copied Spool request number and the target directory into the parameters
    execute the report
    required pdf file will be generated into the target directory
    i hope it will help you out
    Please refer this simple program:
    http://www.sapdevelopment.co.uk/reporting/rep_spooltopdf.htm
    Reward points if found helpful....
    Cheers,
    Eshwar.

  • How to use OCR Font A type by the time of writing some text into Pdf fil

    Hi,
    I am generating one pdf file in java. How can I use OCR Font A for text of pdf file ..Please can any one help where can I get OCR Font A and how to use that one in java ... I want to write some text into pdf file and that text should use OCR Font A family ...
    Thanks.

    This document shows how to disable OCR during conversion; just do the opposite: https://forums.adobe.com/docs/DOC-3062

  • No marker on JFreeChart into Pdf file by IText, why?

    Hello everyone,
    I have a question which has wasted my few days.
    I created a web report with JFreechart and Table on Panel. There is a Value Marker (vertical line ) on the line chart which created by JFreeChart. They all work fine on the website. Then I would like to put them into Pdf file with iText. For the chart, table, and title, pdf file looks fine. But, I can not see any marker in the pdf.
    Here is part of my code as follows:
    1) // create a marker on myDate of DateAxis;
    Date myDate = mySetting.getMyDate();
    Month month = new Month(myDate );
    Marker myDateMarker = new ValueMarker(month.getFirstMillisecond());
    myDateMarker.setPaint(Color.darkGray);
    plot.addDomainMarker(myDateMarker);
    2)//write chart into Pdf file;
    PdfWriter docWriter;
    PdfContentByte cb = docWriter.getDirectContent();
    PdfTemplate tp = cb.createTemplate(563, 223);
    Graphics2D g2d = tp.createGraphics(563, 223,new DefaultFontMapper());
    Rectangle2D r2d = new Rectangle2D.Double(0, 0, 563, 223);
    myPdfDocPage.chart.draw(g2d, r2d, null); // this chart was created with a value marker showed above.
    g2d.dispose();
    cb.addTemplate(tp, 15.5f, 585f);
    Is there any ideas? I really appreciate you for your help in advance.
    Helen.

    helenhe123 wrote:
    Is there anyone who can tell me how I can move my questions to different forums? I posted my question on New Java Forum. Now I would like to move my question here.
    Thanks,
    HelenHi Helen,
    welcome. You cannot move threads. As you've reposted here I have deleted your other thread.

  • Converting PST files into PDF's & the recipient can't print

    I am having the following issue with Adobe: I am converting PST files into PDF's and the recipient can view the information, but they cannot print. Actually, some information such as whether there is an attachment is displayed in the printout, but none of the actual text appears. I do not see any security settings at this end that would be causing this, but I have been assured that there is nothing on the recipients either. The same thing was happening when I sent it to a colleague here in the office.

    I discovered the problem and solution. Often PST's contain damaged text. It is not easy to deal with the damaged text. It is more efficient to have the recipient print the file as an image.Select the print tab, go to advanced, select print as image. I got the information by looking through the more specific information on the Adobe site.

  • Combining separate PDF files into ONE file

    I have scanned 43 separate pdf files and want to combine them into one document. I have tried to look up on the adobe site and they talk about finging the combine icon, but I cannot find it. How do I combine these separatly scanned PDF files into one file.
    thank you

    Hi there,
    Another option available to you is to use the online service Adobe CreatePDF (after all, you are in the forum for Acrobat.com, www.acrobat.com, another online service from Adobe). With a Basic subscription you can create PDF files as well as combine multiple files into a single PDF. For more information, please see: http://createpdf.acrobat.com/pricing.html
    I'd be happy to give you more information should you need it.
    Kind regards,
    Rebecca

Maybe you are looking for

  • S-video port question

    This is just a general knowledge question, but the S-video port on my pismo has more than the 4 holes and the rectangle connerctors there are seven holes and its weird. The S-video does work so there is no problems just wondered.

  • Add new ratio in query with multiprovider

    HelloWord! I have a problem. First, excuse me for my English. I have a query that has a multiprovider composed by two ods.  I have a report created and it works correctly. This report has a filter and several free characteristics. The problem is that

  • Supplier Expenditure Table

    Hello All, I have a query regarding SRM - SCM (I am not sure which one since I do not know the difference between these). I am trying to find out: 1. Is SRM and SCM (of SAP) browser based and GUI based respectively? 2. Which of these (SRM or SCM) wou

  • How do I generate PDF and CHM files from the a command line in windows?

    I am trying to set up a PC to build some documents during the night. I was looking for a way to get framemaker to generate PDF and CHM files via a command line in windows? How is this done with FrameMaker 12 Thanks for the help Alex

  • Slowdown in Connect Speed

    I an experiencing a drastic slowdown in my connection speed. Usually, I achieve a speed of 7mbps, currently the maximum speed is 1.9 mbps. I have run all the internal checks, inlcuding directly connecting to the 'clean' Master socket and they make no