Illustrator Save to PDF problems

I have Illustrator CS 14.0.0 and Acrobat Pro 9 (9.1.1 to be specific) extended and I cannot save the pdf format from Illustrator. I try over and over and it just does not work... it just locks up Illustrator forcing me to use the Windows XP task manager to kill Illustrator becuase it is simply frozen and I have no other options. The failure is happening with large and small files of any complexity. I would like to make use of the streamlined workflows in CS4... but his problem is big headache - especially if I would like to include special aspects of Illustrator features in the PDF file. The failure happen with save-as and with the basic save PDF. I was able to open (more or less like an import) the .ai file after saving from within Acrobat and that seems to be a work around for now. Is ther any updates for Acrobat or Illustrator to fix this save as PDF problem inside Illustrator CS4??

I am experiencing exactly the same problem as reported in this thread.  I am using AI CS4.  When I try to save to PDF the programme freezes making it necessary to use the task manager to kill it.  I have been trying to identify the folders where the preferences are held but on this computer running windows xp the folder names do not match those in the thread.  Is there a specific file name that I can search for?

Similar Messages

  • Save as PDF Problem

    It's the "Sigma Function" of the Equation Tool.
    The index of summation sign had expanded when I was saving in PDF format, but it works well with the "Integration function".
    Please help solving this problem
    Thanks

    Thanks Arnis & Mike, let me try my best to explain the condition.
    reply to Arnis: FM9, Save As PDF, Times New Roman Italic
    and I've discovred something strange today.
    Case 1:
    1.    choose any printer setting (Canon / HP / Fax / Microsoft XPS Document Writer)
    2.    Try / not try micro-positioning
    3.    Try any fonts (Times / Adobe Garamond / Arial / Verdana)
    4.    Save As PDF
    5.    I can see the indexes expanded when generating the PDF file, but it reposited again after the generation had finished
    6.    It doesn't work
    Case 2:
    1.    choose Adobe PDF printer
    2.    indexes expanded instantly and didn't re-posit to where it was (no matter which fonts Times / Adobe Garamond / Arial / Verdana)
    3.    Try micro-positioning
    4.    Save As PDF
    5.    It works, the indexes stay where they were
    It this case, it works! Is that mean I have to re-posit all equations the chapters?
    Case 2a:
    1.    choose Adobe PDF printer
    2.    indexes expanded instantly and didn't re-posit to where it was
    3.    Try micro-positioning
    4.    Save As PDF
    5.    It works, the indexes stay where they were
    6.    choose any printer setting (Canon / HP / Fax / Microsoft XPS Document Writer)
    7.    Indexes are aligned towards the summation sign

  • Illustrator saves blank PDFs with information about missing content

    I use Illustrator CS6 on OS X 10.8. Yesterday I noticed that my PDFs come out as blank files with the text
    This is an Adobe® Illustrator® File that was saved without PDF Content.
    To Place or open this file in other applications, it should be re-saved from Adobe Illustrator with the "Create PDF Compatible File" option turned on. This option is in the Illustrator Native Format Options dialog box, which appears when saving an Adobe Illustrator file using the Save As command.
    which is actually a description that typically appears in AI files saved without PDF compatibility. It's not document-wise but rather application-wise issue because it happens even if I create a new Document, draw something in the middle of the canvas and save it. Also, all of my existing documents which used to save well before, do that now. Basically, I cannot save correctly a single PDF. But it seems that the exported documents must contain the data because they have different sizes based on the content.
    There's no problem with saving in AI format. I hope that's enough information necessary for someone smart to diagnose this problem because I start to be desperate
    Do you have any idea? Thank you.

    Oh, my friend just recommended me to erase cache and it worked! :-) I erased folders ~/Library/Caches/com.adobe.Illustrator and ~/Library/Saved Application State/com.adobe.Illustrator.savedState and one of them did the trick :-)

  • Adobe Illustrator save as PDF

    I'm not exactly sure where my new problem lies. I'm trying to save out single page PDFs from an Illustrator CS4 document with multiple artboards. Each artboard should become a PDF. I can get a multi page PDF, but when it saves single page files, I get white PDFs with error messages on them (I think it is saving .ai files with a .pdf extension).
    this is where I am now (simplified, of course):
    tell application "Adobe Illustrator"
    set docName to name of current document
    set itemNumber to 1
    tell application "Finder" to set fileLoc to path to desktop as string
    set pageCount to (count artboards in document docName)
    tell current document
    set allPlacedItems to placed items
    repeat with h from 1 to (count of allPlacedItems)
    set thisPlacedItem to item h of allPlacedItems
    tell thisPlacedItem to embed
    end repeat
    set allTextItems to text frames
    repeat with j from 1 to (count of allTextItems)
    set thisTextItem to item j of allTextItems
    tell thisTextItem to convert to paths
    end repeat
    end tell
    repeat with i from 1 to pageCount
    set pdfSaveOptions to {class:PDF save options, pdfXstandard:PDFX None, compatibility:Acrobat 6, preserve editability:false, generate thumbnails:false, optimization:false, acrobat layers:false, artboard range:i, view pdf:false, color downsampling:0, color resample:nodownsample, color compression:none, grayscale downsampling:0, grayscale resample:nodownsample, grayscale compression:none, monochrome downsampling:0, monochrome resample:nodownsample, monochrome compression:none, compress art:false, trim marks:false, registration marks:false, color bars:false, page info:false, page marks style:Roman, trim mark weight:trimmarkweight025, offset:6.0, bleed link:true, bleed offset:{0, 0, 0, 0}, color conversion id:none, color destination id:none, color profile id:include all profiles, trapped:false, font subset threshold:50.0}
    set pdfName to docName & "TEST" & itemNumber & ".pdf"
    set destFile to (fileLoc & pdfName) as string
    save document 1 in file destFile as pdf with options pdfSaveOptions
    set itemNumber to (itemNumber + 1)
    end repeat
    close current document without saving
    end tell

    Hi Stephen,
    The problem is that the input for the page range is text (even if it is just one number). You're trying to put in a Number (the i you get from the loop). You'll need to convert the number to a string, probably by using the "as text" command.
    What I use is (simplified): first check for multiple art boards (and set the range as text), if there is only one set the multiple artboards option to false, else set the page range. You don't have to build a loop to export each artboard seperately.
    tell document 1
    if (count of artboards) > 1 then
    set pagina_bereik to "1-" & ((count of artboards) as text)
    else
    set pagina_bereik to "1"
    end if
    end tell
    if pagina_bereik = "1" then
    save document 1 in file DestFIle as eps with options {class:EPS save options, preview:color TIFF, embed all fonts:true, embed linked files:true, include document thumbnails:true, PostScript:level 2, save multiple artboards:false}
    else
    save document 1 in file DestFIle as eps with options {class:EPS save options, preview:color TIFF, embed all fonts:true, embed linked files:true, include document thumbnails:true, PostScript:level 2, save multiple artboards:true, artboard range:pagina_bereik}
    end if
    Hope this helps,
    Ton

  • Illustrator to layered PDF problems

    I used MAPublisher 7 to create a map in Adobe Illustrator CS2. I now want to save as a layered PDF to view in Adobe Acrobat or Acrobat Reader.
    All of my AI layers are top-level layers but when I save out as a layered PDF half of the layers come across empty!
    The layers I'm struggling with contain nothing but symbols. Some of these layers work, others (as I say) are empty.
    Can anyone help? Please!

    Okay, I was being slightly foolish. The answer is simply to expand all the symbol vectors so that they are nolonger associated with MAPublisher. Now they export to layered PDF no matter how many.

  • Illustrator output to .pdf problem

    I recently updated Acrobat Pro and now when I output a .pdf from Illustrator I get the "file was saved without PDF Content" error when it's opened in Acrobat.

    Then probably you saved it without Acrobat content?
    Which options do you select when saving your files? Where do you save them?

  • Use Artboards disabled when trying to save as PDF in Illustrator CS4

    Hi, I'm relatively knew to Illustrator coming from Photoshop and I've been struggling with this problem for days now. I've searched everywhere but can't seem the find the answer.
    I'm trying to save my document to send to a client as a mock-up. When I try to save as PDF the tick box for "Use Artboards" is disabled, so when I save it saves the whole canvas instead of only what is on the artboard. When I try to export  I can tick the tick box but the document still saves the whole canvas with everything that is "hanging off" the artboard too.  The artboard is the exact size of the document.
    Any help would be much appreciated. 
    Many Thanks V

    When saving as pdf "Use Artboards" is always on and dimmed so you cannot turn it off but it is valid only if you have more than one artboard and this will give you the range option to type which artboards will be saved as different pages in the pdf.  This has nothing to do with saving things off the artboard (clip to artboard). If you save as pdf with Preserve Illustrator Editing Capability checked, everything will be saved anyway and noting will be clipped or trimmed if you open the pdf file in Illustrator. If you save with this option off, depending on the version the content outside the artboard will be hidden by using a clipping mask. However, in both cases opening the file in Acrobat will not display content outside the artboards.
    edit: you can use "Clip to Artboard" option if you save to a raster image by choosing Save for Web and devices.

  • Illustrator CS4 "save as PDF" Glitch

    I am using adobe illustrator CS4, on mac snow lepord OS X 10.6.5
    Everytime i have a AI file or any type of file and want to use the "save as" option, when i select PDF illustrator freezes completely. I have to force quit and restart to resume work.
    My work around has been to save as an AI file, open that file in adobe Acrobat Pro 9 and "save as" PDF thru that program. That works everytime. But the "save as" PDF option in illustrator freezes everytime i use it.
    Anyone else have this problem?

    I have a MacBook 2.2Ghz 4GB RAM, runs clean with a 640GB HD, with more than half free space. But anyways...
    THANK YOU VERY MUCH. Trashing the illustrator prefrences completely solved the problem. Thanks Again!!

  • Exporting to PDF from Illustrator ... a problem

    Hi All,
    I'm writing you as I have a small problem  when I export to PDF from Illustrator.
    In Illustrator the size of the page is 21,51X34,71 ... but when I save in PDF the size of the page is 13X14
    I have to save in PDF as the printer is waiting for the file.
    Any help?
    thanks a lot

    thanks for your answer and ... please, sorry me about my less of information.
    I'm using the illustrator CC and the operating system is Os X Yosemite.
    I'm doing exactly .. like that: save As a copy >> PDF
    and I'm using the Adobe Reader ... when the reader opens the file the property of the size page and the drawing change.

  • Can't save Illustrator file to PDF

    I am just trying to save a PDF from my illustrator file. However, when I go to Save as, and select PDF, no dialog box opens to allow me to set how I want the file outputted. IF I just hit enter, the file does save.. its just like the Dialog box is hidden or not appearing. The reason I need the dialog box is because I need to add bleeds to the PDF and my default save doesn't do that. Any ideas or anyone else have this problem? Thanks

    An addition to this issue. I had the exact thing going on, but did have my second monitor running and still no dialog box. The issue was that I switched desks and now had my extra monitor on the other side of my laptop. So, after much frustration, finally figured out to go to preferences > displays, changed the arrangement to put the monitor back to the other side and "whallaa..." there it was.

  • Illustrator help..save to PDF not working.

    I am just trying to save a PDF from my illustrator file. However, when I go to Save as, and select PDF, no dialog box opens to allow me to set how I want the file outputted. IF I just hit enter, the file does save.. its just like the Dialog box is hidden or not appearing. The reason I need the dialog box is because I need to add bleeds to the PDF and my default save doesn't do that. Any ideas or anyone else have this problem? Thanks!

    Yeah, be sure that you shutdown Illustrator before you remove the old preferences.
    Move your old Illustrator preferences to the desktop or trash in case something goes wrong
    Go to your home folder
    ~/Library/Preferences/
    folder:
    Adobe Illustrator CS3 Settings
    Adobe Illustrator CS3 Library Settings
    file:
    com.adobe.illustrator.plist
    I hope this helps.

  • Problem with save as PDF with FrameMaker 12

    Hey,
    I just received FrameMaker 12 and I like it.
    But I'm having problems when I use the save as PDF function.
    It takes very long time to generate the PDF (at least 30 minutes for a book)
    The fonts and spaces are messed up in the finished PDF. Some text blocks have paragraphs running over the margin
    I have tried a couple of different things:
    saving as MIF and back to FM
    uncheck rely on system fonts only, do not use document fonts
    but nothing have worked yet, please help I'm getting frustrated.

    Hi Jeff,
    After I realized that I didn't make the setprint.ini file, I did that and deleted the printer=adobe pdf in the .dll file. But it still doesn't work. I save to pdf anyway, I was just trying to optimize my usage by making the default printer in FM the adobe pdf printer.
    Anyway, the .dll file from above has the below information in it. I don't know what it means, but it has errors all over. Does this make a difference and what does it mean?....Thanks!
    TLOSS error
       SING error
        DOMAIN error
      R6028
    - unable to initialize heap
        R6027
    - not enough space for lowio initialization
        R6026
    - not enough space for stdio initialization
        R6025
    - pure virtual function call
       R6024
    - not enough space for _onexit/atexit table
        R6019
    - unable to open console device
        R6018
    - unexpected heap error
        R6017
    - unexpected multithread lock error
        R6016
    - not enough space for thread data
    abnormal program termination
        R6009
    - not enough space for environment
    R6008
    - not enough space for arguments
       R6002
    - floating point not loaded
        Microsoft Visual C++ Runtime Library   
      Runtime Error!
    Program:    ... <program name unknown>        ð?   À~ PA   €ÿÿGAIsProcessorFeaturePresent   KERNEL32    e+000                    EEE     50 P     (8PX   700WP           `h````  ppxxxx                     ( n u l l )     (null)  GetLastActivePopup  GetActiveWindow MessageBoxA user32.dll          ÿÿÿÿÇ´  Ë´      ÿÿÿÿVà Zà ÿÿÿÿÅà Éà ÿÿÿÿÇ  ¡Ç  ÿÿÿÿQÈ  UÈ  SunMonTueWedThuFriSat   JanFebMarAprMayJunJulAugSepOctNovDec    TZ  1#QNAN  1#INF   1#IND   1#SNAN              À      F        À      F        À      Fìþ          z    à              ¶   ,á            ì    á  (               <á                      @   N   ^   l   „   j   Z   J   8   &   ø  
           .   <   L   Z   j   x   ‚   Œ   ¢   ´   Ä   Ú   î   þ           0   B   N   Z   h   x      ¤   ´   À   Ø   ò           ,   @   T   n   ~   Œ   š   ¨   º   Ê   Ø   ê           4   L   f   ‚   Ž   ž   °   À   Ô   à   ì   ö               Ä   Ú       ˜   ¦   ˆ       œ   ¬   ¾   Ø   ê       ˆ GlobalFree  “ GlobalUnlock  Œ GlobalLock   GlobalAlloc KERNEL32.dll    ClosePrinter  n GetPrinterA | OpenPrinterA  WINSPOOL.DRV    GetFileVersionInfoA
    VerQueryValueA  VERSION.dll  RaiseException 
    GetFileAttributesA  t GetVersion    CloseHandle a SetEndOfFile  4 CreateFileA d SetErrorMode  W DeleteFileA ó _lcreat ò _lclose $ GetModuleFileNameA  > GetProcAddress   LoadLibraryA  ä MultiByteToWideChar & GetModuleHandleA  Õ LockResource  Ç LoadResource  • SizeofResource  £ FindResourceA Ê GetCommandLineA ™ HeapAlloc Ÿ HeapFree  ¢ HeapReAlloc   GetLastError  õ GetCurrentDirectoryA    GetFullPathNameA    GetDriveTypeA  FindClose Š FileTimeToSystemTime  ‰ FileTimeToLocalFileTime ” FindFirstFileA  b SetEnvironmentVariableA } ExitProcess ž TerminateProcess  ÷ GetCurrentProcess   GetEnvironmentVariableA u GetVersionExA  HeapDestroy › HeapCreate  ¿ VirtualFree m SetHandleCount  R GetStdHandle    GetFileType P GetStartupInfoA ² FreeEnvironmentStringsA ³ FreeEnvironmentStringsW Ò WideCharToMultiByte   GetEnvironmentStrings   GetEnvironmentStringsW  ] DisableThreadLibraryCalls ß WriteFile » VirtualAlloc  j SetFilePointer  | SetStdHandle  ª FlushFileBuffers    ReadFile  ¿ GetCPInfo ¹ GetACP  1 GetOEMCP  S GetStringTypeA  V GetStringTypeW  ! CompareStringA  " CompareStringW  ¿ LCMapStringA  À LCMapStringW  p GetTimeZoneInformation  / RtlUnwind USER32.dll  O CoTaskMemFree N CoTaskMemAlloc  @ CoRegisterMessageFilter S CoUninitialize    CoDisconnectObject  ole32.dll           °oÓF    B               8   <   @    ?  O     SetPrint.dll _F_ApiClientInit@16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ö¤   ²          ›¥                  Could not open SetPrint.ini file    success
        failed, error = %i
    Setting printer to "%s"...  Printer =   rt  SetPrint plugin from Sundorne Communications www.sundorne.com
      SetPrint.ini    /restore    /save   winspool    `á  `â  `ã  `ä  `å  `æ  `è  `é  `ê  `ë  `ì  `í  \   <c> .   <u> ..  <r> <v> ..\ FRM %ld ø  ü   „   †   ˆ  Ð4                                                                  ô           ì           à   €O  GetResource Notify  DialogEvent Message Command Quit    Initialize  ClientOutFormat ClientInFormat  ClientSuffix    ClientVendor    ClientFormatId  ClientFacet ClientProducts  FileDescription ClientType  ClientName  \StringFileInfo\040904b0\   Hj  u˜  s˜  “V  ªV  ªV              ÿÿÿÿ
          $ü      øû      Ìû 
       ¨û      |û      Lû      (û      üú      Äú      œú      dú      ,ú       ú  x   ôù  y   äù  z   Ôù  ü   Ðù  ÿ   Àù  š   š                       ( ( ( ( (                                     H                               „ „ „ „ „ „ „ „ „ „                                                                         ‚ ‚ ‚ ‚ ‚ ‚                                                                                                                                                                                                                                                                                                                            .               è‹              –Á  –Á  –Á  –Á  –Á  –Á  Ø   Ø   ð   ð   ÿÿÿÿÿÿÿÿð   ñ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

  • Printing "save as pdf postscript" yields problem with paper size

    when I "save as pdf postscript" my 8.5 by 8.5 pages doc, it shrinks and ends up right justified in the PDFX1A 2001 version...this only happens with this particular file--all I can think is that I used a lot of text wrapping around graphs and that messed it up, please help!

    nevermind! I figured out the problem--I needed to click on "view" and check "hide comments", which were being included in the PDF, making it smalled on the left side of the page
    thanks anyway AppleFolks

  • I have a problem using the "save as pdf..." command of the print panel of MS Word (lower L corner).  When file has a few photos in it, the pdf file becomes huge; 7 mb Word file becomes 31 mb., on MacBook Pro with Intel Core 2 Duo processor , OS X 10.5.8

    How can converting a MS Word file to a pdf make the file 5x bigger?  Can someone tell me how to update the "save as pdf..." feature when "printing" a file in MS Word (Word:mac 2008, ver. 12.2.5).  The problem is that using this to create pdf files gives huge files when the Word file has graphics pasted as pictures from Powerpoint, even for simple graphics and when first exported at low resolution (180 dpi) as jpg files from Powerpoint and inserted into Word.  

    Here's a little more info on the save_as_pdf issue.  It is Word files in 97–2004 format (doc) that get 5x bigger.  The conversion works fine and file size is normal if the Word file is saved in most recent Word format (docx rather than doc).  Somehow MS Word can't save its own files properly in pdf format.  Thanks Bill for all the frustration.

  • Use Artboards disabled when trying to save as PDF in Illustrator CC

    Use Artboards disabled when trying to save as PDF in Illustrator CC

    Then there's no reason to "Use Artboards". If you had multiple artboards in the file, then you could choose among them for the output but with a single artboard, only one will be output.

Maybe you are looking for

  • Perpetually recovering photos in iPhoto.

    Ok, so i was importing all my pictures into iPhoto when i first got my laptop and it got through all but about 250 when iPhoto suddenly stopped working. I opened it back up and it finished up the import but never could import 131 pictures. Now, every

  • Update Unit Price at Order Line Level

    Hi Sir, Ma'am, Is there a way to enable user to update the Unit Price at Order Line Lever without updating the Price List? Thanks in Advance, Nuel

  • Importing movies to external hard drive

    Please help! I have filled my mac 250gb hard drive with video clips and so just bought a 1TB WD mybook so I can store all my files but I have 2 problems. 1) I was able to move my 'projects' (under users/myusername/movies/imoveprojects over to the Myb

  • Skype 7.2.0.103 IM pending

    I cannot chat. When I send IM message they keep loading as shown in the attached image. Any suggestions? Attachments: Hangs.jpg ‏10 KB

  • Unable to open docs from server on iPad using IOS6 and iWork

    Since upgrading to IOS6 in ipad 2, when I log on to my work network and try to open Excel, Word or Powerpoint files in Numbers, Pages or Keynote apps respectively, nothing happens. Prior to IOS6 upgrade I could open anything and edit etc. Now the ope