AI file to PDF using Distiller?

Hello peeps,
Easy question I think? Using Distiller [I've got Acrobat 8 Pro], I can create PDF's of EPS's I've created in AI, I can selected any number of files that I want and Distiller produces the PDF's one after another. I do this so I can send low-res proofs to clients etc.
My question is; can I do the same with AI files, because at the moment, Distiller is saying a big fat no to me? My AI files haven't got any embeded images [they are still links], but I can 'save as' a PDF in Illustrator just fine - which is what I do when I'm creating the print ready version.
Thanks in advance.

Something to consider:
Customize PDF presets - by creating a new preset you may be able to establish the parameters you need.
Looking over AI's Help system in Adobe's LiveDocs, it seems that you ought to be able to make an Adobe PDF option that provides  the desired output PDF.
Also, the Help system has a segment on processing multiple files that may be of interest.
Be well...

Similar Messages

  • Missing page while converting Postscript files to PDF using Distiller 9.

    Hi
    Due to some incorrect hexadecimal code in the post script, one of the pages is not getting created in the full pdf. So, we can say that the page is missing in the complete pdf file.
    Here is my snapshot of the issue:
    1. Offending command issue on a particular post script data is coming up due to some incorrect hexadecimal data.
    2. If I run the postscript through Distiller 8, report is getting generated without any missing data.
    3. Whereas, if I run it throught Distiller 9.1.3, Distiller is ignoring the page due to following warning.
    %%[ Error: typecheck; OffendingCommand: xshow ]%%
    Stack:
    41
    ( À
    4. If I run the same Postscript file in Distiller 9.3 (latest version), issue is going away.
    5. But I have another Report pdf with the same  issue but this time with a different hexadecimal exception.
    %%[ Error: typecheck; OffendingCommand: xshow ]%%
    Stack:
    49
    (à øÀ øÀ øÿ€ üÿ€ üÿ€ üÿ€ üÿ€ þÿ€ þÿ€ þÿ€ þÿÀ þÀ þà þø?þ?ÿÿþ?ÿÿþ ÿÿþ ÿÿþ ÿýþ ÿùþ?ðà øÀ øÀ øÿ€ üÿ€ üÿ€ üÿ€ üÿ€ þÿ€ þÿ€ þÿ€ þÿÀ þÀ þà þø?þ?ÿÿþ?ÿÿþ ÿÿþ ÿÿþ ÿýþ ÿùþ ü%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    So, either way, even if I upgrade my version of Acrobat from 9.1.3 to 9.3, issue doesnt go away. I think the new Acrobat Distiller is buggy and introducing new problems when compared to Acrobat Distiller 9.
    1. Works fine Distiller 8.0
    2. More problems with 9.1.3
    3. Lesser problems with 9.3 but I cant upgrade to 9.3 unless i see all the missing page problem going away.
    Can someone urgently look into this?
    Regards
    Hari

    I am calling Distiller using command line.
    "C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrodist.exe" /f/Q/N C:\Reporter\debug\report.dst
    report.dst contains the the names of the post script files.
    (I have already contacted Distiller server forum and I was told to post the request in Acrobat forum)

  • Not able to convert word file to PDF using Adobe Acrobat 9 Standard

    Hi,
    I am not able to convert word file to PDF using Adobe Acrobat 9 Standard. When I try to convert, it starts the process and in between I am getting this prompt, as shown in figure below and the conversion process stops. The PDF is not created.
    Note: The filename 'Acr85.doc' in the above prompt keeps changing and is random.
    I tried clicking Yes, No and Cancel on the above prompt, but the conversion process just stops and PDF is not getting generated.
    I am able to create PDFs from web pages. No issues with that. Not working only with Word.
    Can someone help me with this.
    Thanks,
    Vinay Jaassiel Kankipati
    Technical Writer

    In MSWord please changes the settings as "Adobe PDF" menu => "Change Conversion Settings" goto Tab Bookmark and clicks the option Convert Word Bookmarks. Now you convert the Doc to PDF you can achieve the Bookmark.
    Hope this help you
    Sudhakar

  • 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

  • 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;

  • Convert txt file to pdf using Acrobat Distiller

    Hi,
    We purchase years ago Distiller 8.1.0.
    Now, I try to convert txt file to pdf files, but I always get an error.
    Please Help,
    Hezi

    I have important information: Acrobat is not licensed for use server side, so you must not use it to build that solution, even if it is technically possible.
    Adobe's server side PDF creation product is LiveCycle PDF Generator https://www.adobe.com/sea/products/server/pdfgenerator/
    This comes in three editions. The "PostScript" edition is little more than a server-side version of Distiller, and will not convert TXT. However, the other two editions can convert a wide variety of formats.

  • Converting Doc files to PDF using command line ?

    Hello,
    I need to automate the process of converting (in command line) word files to pdf.
    Is Acrobat distiller Server the right product ? or is there another product from Adobe that would allow me to reach this goal ?
    NB : currently using pdfcreator in command line but have some stability problems now...
    thanks a lot
    Florent

    Acrobat Distiller Server can only convert Postscript to PDF. You may look at this product:
    http://www.adobe.com/products/livecycle/pdfgenerator/

  • Can't convert files to pdf using Acrobat 8 Standard or 9 Pro

    I am having a major problem. I have tried converting both Word 2003 and Excel 2003 documents to pdf using Acrobat 8 Standard (I can't recall which version because I uninstalled and installed a trial version of Acrobat 9 Pro) and Acrobat 9 Pro. I have tried to convert directly from the open document and through Acrobat using create from file. In every instance the process starts and then stops after a few moments. When I try the conversion from within Acrobat, I get the following error message: " Pdf conversion failed, please correct the error and retry." When I try the conversion directly from Word or Excel, the conversion starts, stiops suddenly and gives no error message.  I have had Acrobat 8 Standard installed for a couple of years. It worked fine on this computer until the problem started a week ago or so. There have been no software or hardware changes that woudl trigger suspicion.
    I've tried uninstalling and reinstalling the 8 Standard version. I have uninstalled the 8 Standard version and installed the 9 Pro trial version. I have run the repair module on both versions. I'm sure it is something simple but I just can't figure out what the "error" is that I need to "correct". Any suggestions?
    As an aside, I have several Adobe programs (Photoshop CS5, Contribute 3 and Acrobat), all of them expensive. Their business model of offering no unpaid support (even for this type of problem) is one reason I hate Adobe more than Microsoft... but I rant.

    When you uninstalled, you should have used the MS Installer Cleanup utility. It cleans up a lot of the junk left over in the registry. You should have also deleted the Acrobat folder. Then you would reinstall. You did not indicate your OS and it may be that you need to update the AA8 to get it to work correctly. Also, the installs and uninstalls can mess up your registration process if you are not careful. If you uninstall the AA9 trial, you will not be able to reinstall it for use. At this point, I can only suggest you do a repair of your installation and be sure you have all of the updates.

  • Converting a word 2000 file into pdf using Adobe Acrobat Standard X

    I reinstalled my Adobe Acrobat Standard X today, and tried to convert a *.doc word file into pdf, but the application could not open the word file and got stalled. I remembered that last time I installed the application the same probelm cropped up and I had to install a Microsoft patch that was required to do this, What is the patch file and how do I get it?

    I answer my question myself. I have solved it myself. The answer can be found by searching adobe website. But I give it here if it can be useful to others. Go to control panel. Go to Add or remove programs. Click on Modify in the listed Adobe program. Click Next in the box that appears. Select Modify. Click on + sign against pdF maker to expand. Click on X sign against 'this feature is not available' which shifts on to the little box on the left of Microsoft Office. Click on Apply. Quit. Once the Microsoft Office becomes disabled in Adobe, Word will open in all places.

  • Converting a file to pdf using API

    I am using APIs for converting a word document into pdf file. I added 2 jar files adobe-convertpdf-client and adobe-generatepdf-client in my application and tried to convert a word document into pdf format. For this requirement should i have install livecycle, application server, Database etc. Can it be done using a java console application by using these jar files. If so Can anyone give me a sample code?

    Since cfdocument can render HTML, you may easily convert JPG
    to PDF, using
    <cfdocument format="PDF">
    <img src="myphoto.jpg" alt="my photo">
    </cfdocument>
    However, converting DOC to PDF or PPT to PDF with Coldfusion
    is not currently possible. DOC and PPT have proprietary MS Office
    formatting that is foreign to Coldfusion.

  • Converting excel file to PDF using Adobe 9 standard on windows XP

    I have installed office 2010 SP1 on a computer and it already has adobe 9 installed. user never had problem with converting multi sheet excel workbook to PDF using MSoffice 2003.
    Now, when we open excel files in EXCEL 2010 then try to print it to adobe 9, it asks for a filename and we type a name and it convert the first 2 sheet and then it asks again for the other filename and if we enter other name it print other sheets into second file. so basically it splits to 2 PDF files for no reason.
    I tested same file on my laptop with windows 7 and adobe standard 9 and office 2010  and i got same result.
    anybody knows what is the issue?

    Have you updated Acrobat? Have you tried printing to another file format just to see if it is an issue with Acrobat or OFFICE 2010. OFFICE 2010 has forced many folks to upgrade to AA X to obtain compatibility.

  • Import external xml file in PDF using Livecycle

    I require sending some values in main xml file from the external xml file during sending mail on button click. Doing so, I want to read values from external file into a hidden field or send the external xml/text file as an attachment.
    1. Is there any feature in live cycle to attach multiple xml/text files in mail using button click?
    2. Is there any way to read an external xml file to pre-populate a textbox using javascript?
    Kindly help me to find out the solution.
    Thanks in advance
    Vikram Kumar

    Hi,
    1) You can do this with a script. But this script works only with the Acrobat Pro not with the Adobe Reader!!
    2) Sure.
    You open your form.
    Go to File | Form Properties |  Preview | then choose your xml-file
    Then you have to got to the textobject | mark this | go to "Object" | "Binding"
    Here you can bind the field: $record.PRINTJOB.PMSDATA.ObjectNameXML (You have to adapt this in the path in your XML to the field in the XML)
    If you make a preview you will see the value of the XML in your textfield.
    You can also script the databinding. You have to go to the initalize.event and write:
    this.rawValue = xfa.record.PathToYourFieldInYourXML.ObjectNameXML.value;
    Hope it will helps you,
    Mandy

  • How to conver color pdf to b&w pdf using distiller ?

    i have a question :
    i have a color document saved in pdf format . how can i convert it to black & white document using ( ACROBAT DISTILLER) ?
    ( i have Windows XP + ACROBAT VERSION 5.0 + DISTILLER VERSION 5.0)
    thank you

    If you were using the default [Smallest File Size] in both cases, that preset does handle grayscale and color images differently:
    It also converts everything to sRGB, so in the end your grayscales get converted back to RGB color. It maybe the effective resolution of your grayscales is just under the 225 threshold?
    Also, if you are using CS6 or later you can convert a layout to grayscale on export without converting the images to grayscale in PS first (unless you want to adjust the tonality of the conversions). Something like this in Output:

  • Print a designer form as pdf  using distiller

    Is it possible to print a life cycle designer form as pdf?
    We have test reports with diffrent form-fields and signature on it.
    They are all made with life cycle designer 7.0 and filled in with Acrobat
    Professional 7.05.
    Is it possible to print the form as pdf with the distiller, so no one can change the fields with Acrobat Standard?
    I know you can protect the fields with the security options but for reasons
    I can't explain here we want to do it with the method mentioned above.
    Thanks for all ideas and opinions
    Alex Wimmer

    The problem is that Acrobat shows that the desingner document has a password for security.
    when I try to print as pdf the procedure stops with the message:
    "This PostScript file was created from an encrypted PDF file.
    Redistilling encrypted PDF is not permitted."
    The strange thing is that I told designer in the document options not to use a password for security but Acrobat shows me that the document is password protected. I can even change the security settings to "no security" without typing in a password.
    After changing the security options in Acrobat I can print the form as pdf without a problem.
    Is it possible to remove the "password" for the documents using the
    "Stapelverarbeitung" I don't know if "batch processing" is the right
    translation because I use the german version. :-)

  • Converting Word 2000 to PDF using Distiller Server

    we are having a problem while converting a word (office 2000) document with symbols to pdf.
    following in message log when sending directly to distiller server:
    Adobe PDF Settings: C:\Documents and Settings\All Users\Documents\Adobe PDF 6.0\Settings\Standard.joboptions
    %%[ ProductName: Distiller ]%%
    %%[ Warning: Times-Roman not found, using Font Substitution. Font cannot be embedded.]%%
    Symbol not found, using Courier.
    %%[Page: 1]%%
    %%[Page: 2]%%
    Symbol not found, using Courier.
    %%[ Warning: Times-Italic not found, using Font Substitution. Font cannot be embedded.]%%
    %%[Page: 3]%%
    %%[Page: 4]%%
    Symbol not found, using Courier.
    %%[Page: 5]%%
    Symbol not found, using Courier.
    %%[Page: 6]%%
    Symbol not found, using Courier.
    %%[Page: 7]%%
    %%[Page: 8]%%
    %%[LastPage]%%
    when distiller server is called upon from an application following log entries created:
    Adobe PDF Settings: C:\Documents and Settings\All Users\Documents\Adobe PDF 6.0\Settings\Standard.joboptions
    %%[ ProductName: Distiller ]%%
    %%[Page: 1]%%
    %%[Page: 2]%%
    %%[Page: 3]%%
    %%[Page: 4]%%
    %%[Page: 5]%%
    %%[Page: 6]%%
    %%[Page: 7]%%
    %%[LastPage]%%
    %%[ Error: syntaxerror; OffendingCommand: Onzekerheid van de 1 k( weerstanden) /Count 0 /Page 6 /View [/FitH 193] /OUT pdfmark
    [/Title (Nuldetector) /Count 0 /Page 7 /Vie ]%%
    Stack:
    /Title
    -mark-
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    font substition in drivers for symbol is: no substitution.
    any ideas what is causing these errors and how we can fix it??
    tia

    Ok, there are two things here. Distiller Server can't find some fonts.
    This is not a substitution problem. It may not have Times-Roman, but
    it needs to have Symbol. This should be included with the
    installation. Make sure Distiller's font folders include Distiller's
    shipped fonts.
    Second, there is an error in the PostScript file. What program is
    making this PostScript file (perhaps an add-on for Word)?
    Aandi Inston

Maybe you are looking for

  • Need help with multiple devices and apple id

    Between my husband and myself, we have two Iphones, two Ipads, and one Imac.  I back all of them up on my Imac using ONE iTunes account....we prefer not use Icloud, and I think that helps keep the information on each device relatively separate from e

  • How do I validate a drop down menu when it's greyed out?

    I have 4 drop down menus for 4 different products with 4 options in each.  The first option is "Choose a Size".  The next three options are what I want to have the user select and I want an error to occur if they leave it as "Choose a Size".  I reali

  • How to install a clean copy of Lion on my mac book pro

    Since installing Lion on my Mac Book Pro June 2011 17 inch model I have had nothing but problems. I would like to wipe mt HD and start again with a completely clean copy of Lion. How do I do this ?

  • Strange message on ipod - Wont reset????????

    I got an message on the ipod with video. It says "accesorize test plug FW" and a bunch of letters. Anyone know what this is? My ipod wont reset either??? cheers

  • Images - are there frame buffer copies? How to release those resources?

    Hello, I'm a bit confused about the memory usage of images (BufferedImage class) in a Swing application. I have about 50 Buttons (my own class derived from JButton), which use some images to render themselves. The images are cached, of course - altho