I need to create a .pdf of a CAD (Microstation) file with a bitmap embedded

every plot driver I have tried will not include the bitmaps (3 of them in the title block of the drawing) in the .pdf.
All of the other elements are created but not the bitmaps. I am using MicroStation V8 XM edition.
Thank you,
John

Hi Brian,
Acrobat DC for iOS itself is a PDF viewer that offers the basic functionality (viewing PDF documents, adding annotations, filling out forms, searching, printing, sharing documents, etc.) for free.
To create PDF documents or covert one file format to/from PDF, you would need the Adobe PDF Pack online subscription service.
Acrobat.com Help | Adobe PDF Pack FAQ
The following page lists the supported file types.
Using Adobe PDF Pack
Unfortunately, there is no direct way to convert an email (in Apple Mail) to PDF on iOS.
Here are some alternatives that I can think of.
Copy and paste the email content to a Word document and convert it to PDF with Adobe PDF Pack.
Take a screenshot of an email on your iPad/iPhone and convert the image to PDF with Adobe PF Pack or other free/paid scan iOS app.
Install the 30-day free trial version of Acrobat Pro DC (desktop app) on your desktop computer and print an email to PDF by choosing Adobe PDF as a printer.
Hope this helps.

Similar Messages

  • I need to create a PDF from InDesign that people can edit in Reader or Acrobat

    I need to create a PDF from InDesign that people can edit (for example, change a name from "John" to "Johnny") from either Adobe Reader or Adobe Acrobat. I have already looked at forms, but they do not keep your font colors, faces, and sizes and just make everything that is selected as a text form Black, 12pt, Times New Roman.
    Can anyone here help me?

    Vincent,
    If you use Acrobat pro, generate your .pdf file and then save it as (french version):
    ... so that anyone using Acrobat Reader (or Pro, of course) can modify the .pdf file (with limitations), add comments, ...
    If you want to try to "protect" your .pdf file, you can try with this (in the "Préférences" menu (french version)):

  • Need to create a PDF Portfolio programatically using the Adobe SDK in C# from a Windows Service.

    What classes/methods should I be using?
    We need to create a PDF portolio from a windows service written in C#.
    We need to merge several PDF documents into a single PDF portfolio from our windows service (programatically).
    I have seen documentation in the Adobe help on how to do it using the Adobe UI, but we need to do this step programatically from our windows servie.
    Thanks!

    You can't access Acrobat from a service - since we won't run in Service mode...only in standard Application mode.  In addition, we don't run on a server.
    But if you were doing this from a standard application - then you'll want to read the JavaScript documentation in the SDK as well as the documents about the .NET/JS bridge.

  • I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    You can set up a temporary button (or link, bookmark, etc.) and add the following JavaScript action:
    // Mouse Up script for a temporary button (or bookmark, etc.)
    // Change the font and font size for all text fields in this document
    for (var i = 0; i < numFields; i += 1) {
        var f = getField(getNthFieldName(i));
        if (f.type === "text") {
            f.textFont = font.Helv;
            f.textSize = 9;
    It also sets the font size, but you can remove that line if you don't need to do that.

  • Do I need to create new group for standby redo log files?

    I have 10 group of redo log files with 2 members for each group for my primary database , Do I need to create new group for standby redo log files for the standby database
    Group#     Members
    ==============
    1              2
    2              2
    3             2
    4             2
    5             2
    6             2
    7             2
    8             2
    9             2
    10           2
    If So, The following statment is correct? or nto
    ALTER DATABASE ADD STANDBY LOGFILE GROUP 1 ('D:\Databases\epprod\StandbyRedoLog\REDO01.LOG',D:\Databases\epprod\StandbyRedoLog\REDO01_1.LOG');
    please correct me if am doin mistake
    becuase when I issue the statment I getting error message sayin the group is already created.

    Thanks John
    I just find the answer
    Yes, it's recomeded to add new group , for instnace If I have 10 group from 1 to 10 then the standby shoudl be from 11 to 20
    Thanks I found the answer.

  • Need to create a PDF with submit button for Wordpress Website.

    I need to create a restaurant's employment application in PDF form with fields that user can fill out and a submit button to send the form to a specified email. I then need to put this PDF online on client's website. Is this possible with ID?

    Yes, but you may have to tweak it in Acrobat Pro.
    That said, you may be better off just creating the form right in the
    site. My guess is that there are a ton of WordPress plugins to do this.

  • Need to create a pdf on click of link

    My requirement is to create a PDF file with some fixed amount of information being displayed in the PDF, on the click of a link...
    Currently,ive created links on first column of table, and on click of which, a new page opens up (usnig factory method), i even pass parameter to the page. Now instead of a .htm file, i want a pdf file. How can i achieve this? Thanks in advance.

    Hi,
    By triggering some events, you can display a PDF file. Use the below piece of code for you requirement.
    In the triggering event,
    write the code for the smartform data to be displayed.
    Ex: EXPORT <structure1> FROM <structure1>
          TO MEMORY ID '<Memory>'.
    CALL METHOD current_activity_object->process_document
            EXPORTING
              channel  = '<Event ID>'
            IMPORTING
              document = lv_document.
    Reward points if helpful.
    Gokul.N

  • Need to create a pdf file programmatically

    Hi friends,
          I am able to read contents of a pdf file in KM repository programmatically. Now I am trying to create a pdf file programmatically. I ve tried the following solutions:
    1) <b>pdfwriter</b>. Here i endup with giving the path for the file.I ve tried giving RID and URL of the document. but in vein.
    2) <b>createresource</b>. Here i am able to create a txt file. but couldnt find how to create pdf.
    Awaiting replies specific to the questions. thanks in advance.
    Regards,
    Saravanan

    Hi Saravanan,
    In my view,the solution for this is to create a pdf file in C or any drive of the sever temporarily and get the FileInputstream from that temporary file and with the file stream upload pdf file in to KM repository and finally delete the temporary file u have created.
    Follow the code given,it will be more clear
    //Creating PDF
    Rectangle pageSize = new Rectangle(0,0,2382,3369);
    Document document = new Document(pageSize);
    try {
    PdfWriter.getInstance(document, new FileOutputStream("<b>D:\PDFfromJava.pdf</b>"));
      document.open();
      document.add(new Paragraph("Hi, this is demo PDF file from JAVA!"));
    catch(DocumentException de) {
      response.write("Document Exception");
    }catch(IOException ioe) {
    response.write("IO Exception");
    ResourceContext rContext=null;
    ICollection aCollection=null;
    IResource aResource=null;
    InputStream myIS=null;
    IUser loggedOnUser = (IUser) request.getUser().getUser(); if (loggedOnUser.isAuthenticated()) {
    rContext = new ResourceContext(loggedOnUser);
    RID aRid = RID.getRID("/documents"); // remember that the repository is case sensitive
    try {
    IResourceFactory aResourceFactory = ResourceFactory.getInstance();
    aCollection = (ICollection) aResourceFactory.getResource(aRid, rContext);
    //Creating a File object
    File myPDF=new File("<b>D:\PDFfromJava.pdf</b>");
    //Getting the stream from temp file
    myIS=new FileInputStream(myPDF);
    IContent aContent = new Content(myIS,"byte",-1);
    if (aCollection != null)
    aResource = aCollection.createResource("<b>PDFfromJava.pdf</b>", null, aContent);
    myIS.close();
    //deleting the temp file from server
    myPDF.delete();
    }catch(Exception e){
         response.write("Exce"+e);
    <b>One more thing the file name PDFfromJava.pdf mentioned in bold should be same at all places</b>

  • Need to create a pdf that shows imported charts accurately

    I have an annual report with a lot of charts and graphs imported from Illustrator. When I create a pdf, the lines of the charts and graphs appear to be inconsistent. The images are fine, but I am unable to show them to the client as the should look. I have tried every option for exporting and also have printed to a pdf with no luck. Is there a way to get a better preview a pdf from Indesign? I am on a MAC/OS 10.5.8/CS3.

    That's a display issue and there's not a whole lot you can do about it. You can try playing around with the Acrobat/Reader display prefs but I will tell you one thing for sure...if the person viewing this is using an LCD that is not running at its native resolution it's not likely that you'll ever get it to look good.
    Bob

  • Creating a PDF from a series of files

    I am supposed to create a PDF of files , where do I start?
    10.6.8

    This may not be exactly what you want, but perhaps a start.
    See this link.  http://www.itcs.umich.edu/itcsdocs/s4308/

  • XI/PI: need to create configuration from backend service interface to file

    Hi All,
    I need to create configuration in which i have to map my backend service interface to file document.
    For example i have interface CreateOrderInformation_Out which is coming from abckend and i want to store those details in a file on external/desktop via XI/PI.
    Can someone guide me with detailed steps involved in this?
    Which communication channel to use?How to create that channel?
    Thanks in advance,
    Regards,
    Ujwal

    Hi,
    your scenario will look like this:
    ECC->XI->File
    From ECC to XI: Use ABAP proxy (no communication channel required)
    From XI to File: Use file adapter (receiver communication channel required).
    For creating proxy: goto transaction sproxy and create proxy of CreateOrderInformation_Out.
    Call this proxy in your code to transfer data to XI/PI.e
    You need to define following objects in PI:
    Inbound receiver interface
    Message Type (includes datatype)
    Refer to SDN and SAP help for step by step tutorials.
    Regards,
    Gourav

  • How do I create a pdf from a large jpeg file

    I am trying to convert a 20MB jpeg file into PDF using acrobat but I get an error that says the file is either not supported or is a corrupted/damaged file. However, I can open the jpeg in windows image viewer and photoshop.
    Why not convert it in photoshop you ask? This is because every time I try to save a large file as pdf in photoshop, I get a corrupted file. I get the error "out of memory" when I try to open the file.
    The 20MB jpeg file was originally a psd file, saved as jpeg and now being converted to pdf. Questions:
    Is there a file size limit to convert to pdf in acrobat?
    Why are my pdf files saved from photoshop saying 'out of memory'?

    Hello,
    I was able to receive help from Adobe chat and resolve the issue. I did not get any answers as to why I was getting the error message. But to get around the error message, these are the steps:
    1. Save image as Jpeg (in photoshop or whatever)
    2. In windows explorer, right-click on jpeg file and click "open file with" and choose Adobe Acrobat
    3. Once the file is open in Acrobat, File > Save (not save as) then save in desired file name.
    This is another option to save jpegs as PDFs. An even better option for saving images into PDFs is to save the file as Photoshop EPS format in photoshop, you can then open it in Acrobat to save as a PDF. While saving as Jpeg and converting to pdf yielded a ~15mb file, saving the files as a PhotoshopEPS first then converting it to PDF yields a smaller file, at ~9mb. Still the same quality.

  • Create two identical idocs from one input file with BPM

    Hello all .
    My issue is the following.
    I have a scenario where an input file is mapped to an IDOC .
    The problem is that i need to create a second - almost identical - mapping to the same IDOC type and when the input file is receive both of them should be sent .
    I suppose that BPM is needed for this scenario, but are there any examples or tips i should follow?
    Thank you all in advance .

    Rucinski and Sarvesh, thank you both for your answers , they are very helpful.
    I have started trying Rucinski's method, because I would better avoid redoing the mapping on the second IDOC (it is pretty hard and critical) . But I have a problem.
    When i run the senario, the system replies (for the second IDOC)
    "Unable to interpret IDoc interface NEW_IDOC_MI"
    The reason for this is that in the Interface Determination i have two entries for the inbound interface,
    Orders.orders05 and
    NEW_IDOC_MI,
    which is wrong. I should be using the original  Orders.orders05. But this can't be done, because in tha case the Interface Determination, requests a Condition to be entered. Any suggestions on this ?
    Sarvesh, is there any way to duplicate the IDOC, keeping the mapping that is allready done ?

  • Problem with PDF 1.3-Export: Photoshop-Files with transparency over InDesign colored objects

    Hello!
    I'm using InDesign CS6.
    I'v finished now a layout for a folder, and I put a photoshop-image with transparency over a InDesign-rectangle which I have filled with a cmyk-color in yellow.
    When I export a PDF with the Settings "PDF X-3:2002" (with PDF-Standard 1.3) the Photoshop-image shows uggley jagged edges at the border to the InDesign-colored background. However, the Photoshop-images which are over another bitmap-image (as background), this images don't show this annoying edges.
    When I export to PDF-Standard 1.4 the problem doesn't occor, however my printing-service requests PDF 1.3.
    I know, the workaround for this problem is, to replace the yellow background-color with an bitmap-file with the same color, but is there any other option to get a correct result without this more time-consuming image trick?
    I think it has to do with the transparency reduction which is necessary if using PDF 1.3. When I examine the PDF-File in Illustrator, this edges occurs mostly at the borders from the tiles in which the image is cut during the transparency reduction process. Although, if I open the rendered PDF in Photoshop this jagged edeges are visible, so it is definitly a render error.
    I would be glad if someone of you has a solution for this problem, in the attachment is an image which illustrate the problem.
    Best wishes

    Find another printer.
    End of problem. It really saddens me to think that these Luddites are
    still in business making no effort to move into the 21st century.
    Bob

  • How to protect against a pdf printing without protecting the file with a password ?

    I want to know if it's possible to protect a PDF against printing without protecting the file with a password ?
    It's possible to make it with Acrobat Reader or another version ?
    Thank You
    Best regards.

    Hi,
    Yes, you can restrict editing and printing of the document; although you have setup a permission password (To restrict the users from changing the document permissions).
    Please follow the steps mentioned below:-
    Open the file in Adobe Acrobat- Document properties- Security- Change security method to password security- Select Restrict editing and printing of the document
    Regards,
    Nakul

Maybe you are looking for

  • Can't install DAC 10.1.3.4.1 on win2008 R2 x64

    Hi all, I can't install the DAC on windows 2008 R2 x64. I know I can't use the normal setup.exe but have to use the setup.exe in the win32 folder. However, the installer will start, but then it will check the OS and then it says that it is not suppor

  • Spotlight no longer showing "web search" feature

    Hello all, I just upgraded to Yosemite and everything looks great so far except for 1 thing that I used a lot in previous OS X versions. I used to open spotlight and type my internet (google) search there and just click on web search. Ever since I up

  • MacBook built-in speakers won't work

    Anyone else have this glitch? The internal speakers worked fine at first, but would not respond at times when I plugged into, then unplugged earphones or line-out from the headphone jack. If I shut down and powered everything down with nothing plugge

  • XServe 2006 RAID Card Issues

    Basically, I was gifted (some gift!) a Late 2006 XServe 2.0GHz Dual QX, with 4 GB RAM, and basically was told 'It does not boot. We give up.' So heres what I have found so far.. It has an Apple Raid Card (don't ask me much more than that, or ill have

  • How do I get pass the Enter Passcode on my i-phone 5s

    How do I by-pass the Enter Passcode on my i-phone 5s