To import and incorporate a pdf  file  in Illustrator

When saving a  Illustratotr file, if I include image files (tif jpg ..) linked in Illustrator, they remain embedded files.
If I include a pdf file, it becomes a group in Illustrator.
How to store it as a pdf file embedded in Illustrator file?

Formgali,
You should be able to have a PDF linked if you avoid DoubleClicking for File>Place a PDF and then tick Link in the options.

Similar Messages

  • Import and print a PDF file

    I'm using a SAPSCRIPT to printout documents (as production orders).
    And I need to attach a PDF file to this document .
    The only way I found, is to export the PDF file to PCL file and then import it  as a STANDARD TEXT (so to include it in the SAPSCRIPT) using the program 'RSTXLDMC'.
    But I need a way to import direct the PDF file to scapscript, is it possbile ?
    Thanks

    Sorry, I loaded Snow Leopard so had to create a new user temporarily (Yarp001) ...
    I tried the Print as Bitmap option but no difference. I'm looking at a software/hardware colour management solution.

  • How to read the and Write the PDF file give me the solution

    Hi all,
    How to read the and Write the PDF file give me the solution
    My coding is
    import java.io.File;
    import com.asprise.util.pdf.PDFImageWriter;
    import com.asprise.util.pdf.PDFReader;
    import java.io.*;
    import java.io.FileOutputStream;
    public class example {
    // public example() {
         public static void main(String a[])
              try
              PDFReader reader = new PDFReader(new File("C:\\AsprisePDF-DevGuide.pdf"));
                   reader.open(); // open the file.
                   int pages = reader.getNumberOfPages();
                   for(int i=0; i < pages; i++) {
                   String text = reader.extractTextFromPage(i);
                   System.out.println("Page " + i + ": " + text);
    // perform other operations on pages.
    PDFImageWriter writer = new PDFImageWriter(new FileOutputStream("c:\\new11.pdf"));
                   writer.open();
                   writer.addImage("C:\\sam.doc");
                   writer.close();
                   System.out.println("DONE.");
    reader.close();
              catch(Exception e){System.out.println("error:"+e);
              e.printStackTrace();
    I get the pdf content then it returns the string value but ther is no option to write the string to PDF, and we only add a image file to PDF,but i want to know how to wrote the string value to PDF file,
    Please give response immtly
    i am waiting for your reply.
    thanks,
    Suresh.G

    I have some question flow
    How library to use this code.
    I try runing but have not libary.
    Please send me it'library
    Thank you very much!

  • Using Acrobat X and creating a PDF File from EXCEL 2010, I notice that the Pagination restarts at 1 for each Worksheet included in the PDF.

    I use Acrobat X Standard and created a PDF file from two or more worksheets using EXCEL 2010.
    The resulting PDF file restarts the PAGE # (In header/footer settings of Excel) at 1 for each worksheet.
    However, a colleague of mine who has Acrobat X Pro version, using EXCEL 2010 and same exact file does the same task, he gets a file that starts at page 1 and second worksheet continues the page # from the last page of the First worksheet.
    We both are using the ACROBAT menu (not the print to Adobe printer) to create the file so that we can get Bookmarks included in the resulting file for each worksheet.
    We cannot figure out any option in Acrobat's preferences that controls the pagination on either of these versions of Acrobat.
    So is this just a feature that works one way in Standard version and another way in the Pro version, and the user has no control over it?

    This is so sad. I read your comments and I said, "Huh?" Haha!
    I tried the indexed color option and it did make the final file smaller. Around 600KB. But there's probably another way to make it even smaller like the gazillion-paged pdf file that I mentioned that was only about 300KB.
    And by saying a layout program, does that mean like Adobe InDesign? Does that mean that I should just make my graphics in Photoshop and then import using another program and finish the file there?
    What other layout programs can I use?
    Thank you so much!

  • Store and Display doc/pdf files in the database using Forms

    Hi all,
    How can i store and display doc/pdf files in the database using Forms 10g?.
    Arif

    How to get up and running with WebUtil 1.06 included with Oracle Developer Suite 10.1.2.0.2 on a win32 platform
    Solution
    Assuming a fresh "Complete" install of Oracle Developer Suite 10.1.2.0.2,
    here are steps to get a small test form running, using WebUtil 1.06.
    Note: [OraHome] is used as an alias for your real oDS ORACLE_HOME.
    Feel free to copy this note to a text editor, and do a global find/replace on
    [OraHome] with your actual value (no trailing slash). Then it is easy to
    copy/paste actual commands to be executed from the note copy.
    1) Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
      and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    2) Copy or move jacob.jar and jacob.dll
      [JacobStage] is the folder where you extracted Jacob, and will end in ...\jacob_18
         cd [JacobStage]
         copy jacob.jar [OraHome]\forms\java\.
         copy jacob.dll [OraHome]\forms\webutil\.
      The Jacob staging area is no longer needed, and may be deleted.
    3) Sign frmwebutil.jar and jacob.jar
      Open a DOS command prompt.
      Add [OraHome]\jdk\bin to the PATH:
         set PATH=[OraHome]\jdk\bin;%PATH%
      Sign the files, and check the output for success:
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\frmwebutil.jar
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\jacob.jar
    4) If you already have a schema in your RDBMS which contains the WebUtil stored code,
      you may skip this step. Otherwise,
      Create a schema to hold the WebUtil stored code, and privileges needed to
      connect and create a stored package. Schema name "WEBUTIL" is recommended
      for no reason other than consistency over the user base.
      Open [OraHome]\forms\create_webutil_db.sql in a text editor, and delete or comment
      out the EXIT statement, to be able to see whether the objects were created witout
      errors.
      Start SQL*Plus as SYSTEM, and issue:
         CREATE USER webutil IDENTIFIED BY [password]
         DEFAULT TABLESPACE users
         TEMPORARY TABLESPACE temp;
         GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC SYNONYM TO webutil;
         CONNECT webutil/[password]@[connectstring]
         @[OraHome]\forms\create_webutil_db.sql
         -- Inspect SQL*Plus output for errors, and then
         CREATE PUBLIC SYNONYM webutil_db FOR webutil.webutil_db;
      Reconnect as SYSTEM, and issue:
         grant execute on webutil_db to public;
    5) Modify [OraHome]\forms\server\default.env, and append [OraHome]\jdk\jre\lib\rt.jar
      to the CLASSPATH entry.
    6) Start the OC4J instance
    7) Start Forms Builder and connect to a schema in the RDBMS used in step (4).
      Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
      It is important to generate the PLX, to avoid the FRM-40039 discussed in
      Note 303682.1
      If the PLX is not generated, the Webutil.pll library would have to be attached with
      full path information to all forms wishing to use WebUtil. This is NOT recommended.
    8) Create a new FMB.
      Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
      There is no need to Subclass the WebutilConfig object.
      Attach the Webutil.pll Library, and remove the path.
      Add an ON-LOGON trigger with the code
             NULL;
      to avoid having to connect to an RDBMS (optional).
      Create a new button on a new canvas, with the code
             show_webutil_information (TRUE);
      in a WHEN-BUTTON-PRESSED trigger.
      Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
    9) Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
      the "Application Server URL" is empty.
      Then append "?config=webutil" at the end, so you end up with a URL of the form
          http://server:port/forms/frmservlet?config=webutil
    10) Run your form.sarah

  • Use acrobat 8 in a shellscript and make a pdf file OCR recognize text with selected language

    Hello everybody !
    I have a little problem and I don't know how to overcome this...
    I want to use a shellscript and call acrobat.exe and open a pdf file (up till now I've done this..), but the difficult part is that I want in this shellscript to use  parameters/switches in order to make the pdf file OCR text recognized and use selected language e.g greek !!!!
    How can i do that?
    What is the command prompt parameters...?
    In command line when i use
    c:\> cd C:\Program Files\Adobe\Acrobat 8.0\Acrobat
    C:\Program Files\Adobe\Acrobat 8.0\Acrobat> acrobat.exe <pdffile>
    it opens the pdf file in the acrobat....
    So what switches do I have to insert next?
    Thanks a lot in advance !!!!

    Microsoft has released a hot fix that supposedly addresses this issue, it is at
    http://support.microsoft.com/kb/977468
    I downloaded the fix and tried it; it actually made the problem worse!  Apparently they
    are trying to fix their filter rather than bypassing it.  What I am doing is
    1.  Making maps in AutoCaD Map and printing (plotting in autocad) them to a pdf file
    2.  Opening the pdf file in Acrobat and resaving it as eps
    3.  Importing the eps file into a Word 2007 document
    4.  Use Acrobat to convert the Word document to pdf
    Before the hot fix when I did the process the resolution of the map in the final
    pdf file was not as good as in the original made from AutoCad.  Also the colors were
    not correct.  After installing the hotfix there are still these same problems but also now
    any non horizontal text is not displaying correctly.
    Be careful about trying this hotfix.
    As others have noted, back in Word 2003 the above steps 1 - 4 worked very well and resulted
    in a high quality pdf file with the map as good as in the original pdf.

  • "Sumbit Email" button, and generating a pdf file

    I would like to use the SUMBIT EMAIL button to send a pdf file of the completed form. I understand that is sends a data file, that has to be imported back into the form template on the other end.
    Is there a way to autmoate this process, or jsut simply send the completed form in pdf format?
    Thanks,
    Rich

    [email protected] wrote:
    > So, if none of the users has Reader installed, by we install a version of Acrobat, then they should just be able to open up the document as a pdf?
    >
    > What we are trying to create is a standform for our sales people in the field to fill out, and then email in to the respective account managers in the office all we want the account manager to see is a single pdf file of the sales request form. nothing else, no importing of data into a form, etc. just a simple completed and filled out pdf file.
    >
    > will this work if we remove Reader, and only have Acrobat?
    >
    > what steps do I take after I publish the pdf file? the sales person then open it up, fills it out, and then hits the sumbit email button. will it arrive in the Inbox as a pdf file, or the data file?
    >
    > thanks,
    >
    > rich
    In order to email the filled-out PDF with the data in it, you need to be able to save the form.
    Reader only allows you to save an empty form...if you try to save a filled-out form you will lose
    all of the data you entered into it. For this reason, you need one of two options...
    1) Purchase Adobe Acrobat for all of the sales people. Acrobat will allow you to save and submit a
    filled-out form. The steps involved would be:
    - Design your form in Designer and save it as a PDF. Set the properties on the submit button so
    it will submit the entire PDF.
    - Deploy the PDF File to your end users.
    - End user opens the form in Acrobat.
    - End user fills out the form and submits it. The filled-out PDF file will be attached to the
    email.
    2) Purchase Adobe LiveCycle Reader Extensions. With this product, you can reader-enable your
    document so that users can submit the filled-out form with Acrobat Reader. The steps involved in
    this case would be:
    - Design your form in Designer and save it as a PDF. Set the properties on the submit button so
    it will submit the entire PDF.
    - Reader-enable the form by running it through Reader Extensions Server and enabling the rights
    to save form data.
    - Deploy the reader-enabled PDF File to your end users.
    - End user opens the form in Acrobat Reader.
    - End user fills out the form and submits it. The filled-out PDF file will be attached to the
    email.
    Hope this helps!
    Justin Klei
    Cardinal Solutions Group
    www.cardinalsolutions.com

  • Hi... I would like to purchase a Tablet Sony Xperia Z 2 10.1 (the last one of the Z series) and I was told that Adobe does not support Sony anymore.... I need to be able to open and read Adobe PDF files and I would like to know if this tablet can still us

    Hi... I would like to purchase a Tablet Sony Xperia Z 2 10.1 (the last one of the Z series) and I was told that Adobe does not support Sony anymore.... I need to be able to open and read Adobe PDF files and I would like to know if this tablet can still use Flash Player...
    Is there anyo who can help me with this? I asked in the shop and I was told "yes of course" , but when I contacted Sony directly I was advised to check with Adobe as apparently in the recent months Adobe and Sony haven't been getting along anymore...

    You may be mixing up two entirely different Adobe products.
    1. Adobe Flash Player. Needed to view web pages designed with Flash. Not needed to view PDF files. Not available for Android (not just Sony).
    2. Adobe Reader. Reads PDF files. However, the Android can also read most PDF files without needing Adobe Reader.

  • How do I download and print a pdf file in osx mountain lion

    How do I download and print a pdf file?

    control click on your PDF to download option
    Open it on your desktop Command-P is the short cut for print option.

  • How to create a table with datatype blob and insert a pdf file (ravi)

    how to create a table with datatype blob and insert a pdf file,
    give me the explain asap
    1.create the table?
    2.insert the pdffiles into tables?
    3.how to view the files?
    Thanks & Regards
    ravikumar.k
    Edited by: 895044 on Dec 5, 2011 2:55 AM

    895044 wrote:
    how to create a table with datatype blob and insert a pdf file,
    give me the explain asapPerhaps you should read...
    {message:id=9360002}
    especially point 2.
    We're not just sitting here waiting to answer your question as quickly as possible for you.

  • How can I hide page thumbnails navigation bar at the start up of Adobe Reader and open a pdf file?

    How can I hide page thumbnails navigation bar at the start up of Adobe Reader and open a pdf file? I could not find this option under Preferences tab? Thanks

    Hey there,
    Thanks for your reply. That works for the files I do what you said. However, for files I have not done that, It still shows the navigation bar. Any idea, how to do it default for any files?
    Thanks agian

  • Importing and executing a .sql file into  Oracle 10g

    Hi
    I am looking to import and execute a .sql file(create scripts created of a databse designed in MS SQL Server 2005). The file was imported into Oracle APEX 3.10 but we are unable to execute the script. Please suggest alternatives as to how we can import these files.
    Thanks in advance.

    You likely need to migrate the database (objects and data). This is not so easy and you should have a look to migration tools: http://www.oracle.com/technology/oramag/oracle/07-sep/o57sql.html.

  • Help - "Acrobat is being used by another application and cannot open PDF files until the other application is closed."

    Hello,
    I searched this site and google for this error terminology and come up dry.  I support a user who has been for years using Acrobat 5 (yes, I know...) to read files in a client DB program, as well as other PDF files on their PC.  In the last week or so, they have started gatting this error "Acrobat is being used by another application and cannot open PDF files until the other application is closed." any time they attempt to open a PDF file attached to an email (via Outlook).
    It is my understanding that they cannot upgrade to a newer version of Acrobat because of limitations of their client software, but had not previously had any issues viewing PDF notes from the DB, and PDF attachments in their email.
    I have tried uninstalling and re-installing, as well as tried using Adobe Reader 7 & 9 in conjunction with Acrobat to try to get around this issue, but have not been successful.
    Any ideas?
    Thanks,
    Jesse

    I don't have an answer to your technical problem. The product I assume is Acrobat that you are talking about (based on the post title), Adobe is the company name. This is a good place to ask questions on Acrobat if folks can figure out what you are talking about. They will ask for the product version number (like AA9.3.3), operating system, and other applications if appropriate. Also, just what you are doing that generates the message.
    As for Adobe, you are not likely to get an answer from them here in the user forum. You will be lucky if you can get an answer if you can contact them and not be on hold for more than an hour (sorry, this is why a lot of folks end up in the forum).
    So, to help others try to answer your question, what are the products and versions involved? What OS? What are you doing when the message comes up.

  • How can I copy and paste a pdf file from my picture file and paste onto a document?

    How can i copy and paste a pdf file onto a document.  I am trying to place and article onto my
    Reverbnation Press page.  They only give you the option to either place a url link or paste a document.  There
    is no uploading for the Press page.  thanks, elena

    The Digital Editions forum is here, in case this is what you are talking about:
    http://forums.adobe.com/community/adobe_digital_editions
    If you are not, I apologize for the misunderstanding.

  • I have an iMac and cannot open PDF files in Firefox now. How do I fix this please?

    I have an iMac and cannot open PDF files while working in my university site in Firefox now. How do I fix this please?

    I have a similar problem - not mac related and sometimes I find if I download the pdf file I can open it then.

Maybe you are looking for