Need to manually convert an illustrator eps file

I have a logo file (eps) that was created in illustrator CS2... I need to open it using illustrator 10. I tried manually editing the header information of the file (changing creator version from 12 to 10, etc), but it still won't open the file.
What do I need to change in the file to get it to open? It's just a simple logo... one color, no fancy effects like transparency, brush styles, etc. (no effects at all, actually). I thought an eps is an eps is an eps... why is this not true? What's so special about the illustrator CS2 eps that makes it incompatible with illustrator 10?

It's always a good idea to supply platform and AI version info.
How are you "converting" the file? Are you choosing "Save As" and selecting PDF from the file format options? This will bring up additional save options. I would suggest "Illustrator Default" setting unless you have specific needs.

Similar Messages

  • I am trying to convert an Illustrator cs6 file to a PDF and every time I do it, I lose all text and images. Can someone provide some assistance? Thank you!

    I am trying to convert an Illustrator cs6 file to a PDF and every time I do it, I lose all text and images. Can someone provide some assistance? Thank you!

    It's always a good idea to supply platform and AI version info.
    How are you "converting" the file? Are you choosing "Save As" and selecting PDF from the file format options? This will bring up additional save options. I would suggest "Illustrator Default" setting unless you have specific needs.

  • OSX 10.6 does not differentiate between PS or illustrator .eps files

    Have other people encountered this problem?
    I have found that snow leopard does not differentiate between photoshop and illustrator .eps files in order to double click and open them.
    Does anyone know how to correct this?

    Hello Chris,
    Thanks so much for clarifying about OSX 10.6 opening .eps files in illustrator or photoshop.
    I was wondering if you knew out how
    to create a droplet that opens multiple PDFs and saves as .gifs.
    When I
    try to do it, all of the .gifs end up having the same name as the file
    that I created the script with, and a "-1" at the end.
    Actually
    there are two droplets that I want to create (to be able to
    drop multiple pdf files):
    Portrait/Square
    script:
    Final thumbnail file to be 51 pixels wide by (x?) pixels
    tall
    Final thumbnail file should be 72 dpi,
    Final
    thumbnail file should be flattened(no transparency in white areas),
    Final thumbnail file should have a 1 pixel wide Grey border to all
    sides
    Final thumbnail file should be saved as a GIF file, RGB
    Landscape script:
    Final thumbnail file to be 65 pixels wide by (x?)
    pixels tall
    Final thumbnail file should be 72 dpi,
    Final
    thumbnail file should be flattened(no transparency in  white areas),
    Final thumbnail file should have a 1 pixel wide Grey border to all
    sides
    Final thumbnail file should be saved as a GIF file, RGB
      Thanks,
    Matthew
    Date: Wed, 14 Apr 2010 14:48:11 -0600
    From: [email protected]
    To: [email protected]
    Subject: OSX 10.6 does not differentiate between PS or illustrator .eps files
    Given EPS files are "really" Illustrator files (Photoshop not being a
    vector application), you probably want to make Illustrator the default.
    No.
    EPS files can be produced and read by many applications.
    And most EPS files cannot be read by Illustrator.
    Frequently EPS files in particular need to be edited in the application which created them (Freehand vs. AI vs. Quark gradients anyone?).
    >

  • Mail keeps crashing when attaching illustrator .eps files

    Whenever I receive or try to attach an Illustrator .eps file, mail crashes. The .eps file is fine, and can be read by CS and CS2 software.
    Whenever Mail tries to read the attachment, it seems it can't cope and quits.
    Bit of a bummer when I'm a designers and that's what I need to send to clients.
    The only way I get around it is by zipping or stuffing it as a stuffit file.
    How can I reload Mail or cure the problem?
    All ideas welcome

    Look at the console logs for any errors that occur at the same time Mail crashes. What do the errors say?

  • Converting Multi page .eps files to .pdf Preview is broken

    I have in the past used Preview to convert multi page .eps files into
    .pdf files. Since I have upgraded to Tiger 10.4.3 Preview will no longer work.
    Does anyone know how to uninstall Tiger 3.03 version and go back to 2.xx version? Are there any utilities to do this for me? On my older mac (9.x) I have Adobe distiller.
    Thanks
    Max

    I have just copies the older version of Preview onto this machine and am running 2.10 of Preview to solve this problem.
    Max

  • Batch convert of old eps files

    Hi,
    at first sorry for my english. It is not very well, but I try.
    We have many eps file, which are created with older illustrator versions.
    At this time we change to cs3.
    How can I batch convert all the old eps files to the new "standard".
    eps options are shown in the attachment.
    Thanks.

    This is my (hopefully) corrected CS4 version:
    -- Call the Process
    try
         tell application "System Events" to set processName to (first item of (every process whose name contains "Illustrator"))
         processName
    on error
         display alert "Warning" as warning message "Adobe Illustrator is not open. Please open."
         return
    end try
    -- Search for eps files
    set allFiles to paragraphs in (do shell script "find " & quoted form of POSIX path of (choose folder) & " -iname \"*.eps\"")
    -- Files found?
    if ((count of allFiles) is 0) then
         display alert "Warning" as warning message "No .eps files found."
         return
    end if
    -- Process files
    repeat with nFile in allFiles
         my runConvertEPS(nFile)
    end repeat
    -- Sub-Functions
    -- Convert
    on runConvertEPS(nFile)
         tell application "Adobe Illustrator"
              try
                   activate
                   set theCurrentFileLocation to (nFile as POSIX file)
                   -- Open File
                   open file theCurrentFileLocation with options {update legacy text:true ¬
                        , update legacy gradient mesh:true} without dialogs
                   -- Select the file
                   set theCurrentFile to the current document
                   -- Save and overwrite
                   save theCurrentFile in file theCurrentFileLocation with options {class:EPS save options ¬
                        , artboard range:default ¬
                        , CMYK PostScript:true ¬
                        , compatibility:default ¬
                        , compressed:true ¬
                        , embed ICC profile:false ¬
                        , embed linked files:true ¬
                        , font subset threshold:default ¬
                        , PDF compatible:true ¬
                        , save multiple artboards:true ¬
                        , overprint:preserve}
                   -- Close
                   close theCurrentFile
              on error
                   -- Close all windows
                   try
                        close every document without saving
                   end try
                   -- Write the error to log
                   tell me to my logErrorByFile(nFile)
              end try
         end tell
    end runConvertEPS
    -- Save Format
    on logErrorByFile(nFile)
         try
              set writeContents to ((current date) as string) & ": " & nFile & return
              set pathToFile to (path to desktop folder as string) & "EPS Log.txt"
              set the pathToFile to the pathToFile as text
              set the openFile to open for access file pathToFile with write permission
              write writeContents to the openFile starting at eof
              close access the openFile
         on error errorReport number errorNo
              try
                   close access file pathToFile
              end try
         end try
    end logErrorByFile

  • Is there a way to keep your original Illustrator EPS file open after saving it as a PDF?

    After I create artwork in Illustrator, and save it as an EPS, I have to then save it as a PDF so I can email it to the customer for proofing/approval. The pain in the behind part is that once I save this EPS as a PDF, I have to close the PDF then reopen the original EPS to continue working on it/view it, whatever. I know in InDesign, once you save your EPS file as a PDF file, the original EPS file remains open. Is there a setting in Illustrator that will work the same way? And if not....Why not?!

    Now can you to anything about bad drivers, inconsiderate people, telemarketing phone calls, bad hair days, etc.
    HA I wish, let me know when you find a resolution to those problems.
    Glad I could help

  • Importing Illustrator eps files.

    When I import Illustrator6 eps files into InDesign the graphics look incomplete, like they need to be re linked.  Why is this happening and how to fix?

    Does it look incomplete on screen, in a printout or both? If you are viewing at View>Display Performance>Typical Display, try High Quality Display. That won't change what prints, but Typical is just showing you a low-resolution preview that is good enough for most placement needs, but not the best. It's really a trade-off between how good the image looks on screen, and how fast the screen can adjust to movement, so if you're scrolling/zooming/moving the image, it will go faster with Typical than with High.

  • Problems converting from CS2 - eps files show TIFF error

    I have multiple volumes of a violin method book in InDesign CS2 and was considering upgrading to InDesign CS5. While using the trial version (which I just downloaded last night), every single of my eps files (hundreds of images across multiple documents) -- which were handled correctly by CS2 -- came up with the following error: "Error encountered while reading TIFF image. Image may be damaged or incompatible. Resave the image with different settings and try again." 
    Inconveniently, these errors were not collated into a single pop-up box when the document opened; instead, they appear one box at a time, as you page through the document -- so you have to manually close this error pop-up box hundreds of times.
    Meanwhile, the problem is not with the image files themselves.  Simply manually re-linking to the exact same image file corrected the image preview in each instance, for my Books 2 & 3.  This would inevitably seem to suggest the image file was never actually damaged or incompatible. 
    However, in my Book 1, re-linking an image caused the program to crash each time I tried it.
    The images themselves are EPS, not TIFF, and are listed in the links palette as such.  I assume that it's simply the image preview which is a TIFF -- however, the pop-up box should be more illuminating for your users who don't do this for a living.
    Meanwhile, the status of each buggy link is listed in the Links palette as "Okay." The inability to see the image correctly (and having to close a pop-up box each time you land on that page) is not, in my book, "okay."
    I am planning to immediately un-install CS5 and return to CS2; I cannot possibly go through the laborious process of re-linking hundreds of links to image files that are perfectly fine.  However, I wanted to post this feedback for the benefit of other users, or in hopes that the bug will be fixed.  I love my InDesign and am very disappointed that CS5 is handling my documents so erratically.

    Hopefully you haven't already saved the new file over the old version. Under no circumstances do you want to do that as there is no way to go back without having CS4 and CS3 to work through.
    That said, if your CS2 file is still intact, try exporting it to interchange format (.inx), then open the .inx file in CS5 (or CS5.5 which is the current release, and not the same as CS5).

  • Problems converting from CS4 - eps files show TIFF error

    Having downloaded the latest version of Indesign CS6, I have tried to open several douments of a music tutor featuring many EPS music graphics along with many Tiff images. However, I keep getting following error: "Error encountered while reading TIFF image. Image may be damaged or incompatible. Resave the image with different settings and try again."
    I have resaved all the EPS and Tiff images as CS6 files and relinked them into the document but to no avail - the problem remains. I suspect that the  image files are not actually damaged but that there is some other problem. I have 100s of images and am not sure what next to do. I noticed another user ( Kaleidoscopes Violin) who had a similar problem and it was suggested that "if your CS2 file is still intact, try exporting it to interchange format (.inx), then open the .inx file in CS5 (or CS5.5 which is the current release, and not the same as CS5)." - but this was for CS2 to CS5, and CS6 does not allow .inx file export. I need to work with the document in future so exporting it as a PDF file is of no use to me. Is this a known bug in CS6? I would be grateful for any advice. Thank you.

    Wow ... very, very helpful responses.  I wish I'd posted this earlier!! 
    I had no idea that EPS was an older file format, or that PDF was considered a "legitimate" graphics format.  Sibelius 6 only exports to EPS, TIFF (yuck!!), and PNG.  However, I did discover that it "prints" to Adobe PDF.  Odd that the option is located in an unexpected file menu, but very glad it's there!!  The PDF format loads fine into InDesign and also prints beautifully, unlike the PNG option. Yay!! 
    As far as embedding fonts, I had been making sure this option was checked (when exporting from Sibelius), so it seems unlikely that was the problem. So in theory that would mean it's not a problem of the InDesign font cache, or of a font discrepancey.  In practice ... who knows.  What's particularly puzzling is that some EPS files are fine, while others were not; and also that CS2 had no problems with any of them.
    Regardless, the font information is really, really good to know ... I'll save this thread for future use!
    Thanks so much to all for your generous help!!!
    Elise

  • OT: help converting image from Illustrator .eps file to

    I have 2 files that were sent to me as (supposedly) full
    vector-based format
    from Illustrator. When I view these in FW, I see only a
    bitmap. I know it
    is possible to convert these to a FW png where each element
    of the graphic
    is a separate object but I don't have the software to do so.
    Is there anyone out there who would be willing and able to
    convert these for
    me?
    Kathie

    You can email me the files if you like, my address is joseph
    dot dasilva at gmail dot com.

  • Can't open EPS files in Illustrator CS3 since installing CS6

    I'm on Windows 7, and need to be able to open .eps files with Illustrator CS3. Since installing CS6 yesterday I'm no longer able to associate EPS files with Illustrator CS3. When I right click an eps and go to "open with", only Illustrator CS6 is listed. When I "choose default program", only Illustrator CS6 is listed. If I "browse" and manually select the Illustrator CS3 executable, it still defaults to CS6. Using the same process with .ai files works fine, there is no issue. However these .eps files are not behaving like .ai files. If anyone could suggest a solution to my problem I would be very grateful.
    EDIT:
    Also, attempting to set the default program through the "set associations" control panel doesn't work, after selecting the Illustator CS3 executable it still shows up as CS6.

    Some research solved my issue. Need to create a registry entry for Illustrator CS3 (v13) in the eps file extension section of the windows 7 registry.
    1. Navigate to:
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.eps\OpenWit hProgids
    2. Create a new "binary value" key called "Adobe.Illustrator.13" (leave the value blank).
    That's it. CS3 is now a valid choice for eps files. Hope this helps anyone who has the same issue.

  • Illustrator CS4 - frequently generates corrupt EPS files that will not parse

    I have used many versions of Illustrator prior to and including the CS lines.  I am currently running CS4 and this is the first time I have experienced this issue.  Approximately half of my EPS formatted illustrator files will not parse.  I use Quark Xpress 7 for my layout (never liked any of the Indesign programs).  If I try to generate a PDF with my CS4 generated EPS files placed at least 60% of the time the placed file will corrupt the PDF export resulting in no PDF being generated. 
    Further to this PDF export issue, if I attempt to parse the same EPS file into Photoshop, Photoshop will give me the error message "Could not complete your request because Photoshop was unable to parse the PostScript" and it will abort the attempt to open the file.
    Anyone else having Illustrator EPS file issues?
    Background info (if needed) Dual 2.0 Ghz, PowerMac G5, 8 gb RAM, running Tiger 10.4.11
    I have attached a sample Illustrator file that will not Parse.  It will open in Illustrator but not parse into Photoshop or if placed in Quark will not parse and allow for a PDF to be exported.

    Thanks for taking the time to write Steve. 
    I understand that I can drag and drop between programs.  Ultimately, when attempting to parse an EPS in photoshop I am merely doing it to confirm that the EPS is indeed corrupt. 
    As mentioned previously, I predominately use Quark Xpress for my page layout program and until I installed CS4 I have had zero complications with using EPS files.  Now I quite commonly can not export PDFs due to corrupt EPS files. 
    My question to the public is I am alone in this glitch or do others experience the same issue.  My first thoughts are that CS4 has a glitch and I should be expecting an update in the near future.  But, if I am the only person suffering from this issue than maybe I should be looking at my own software.

  • CS5 converting .eps files

    I discovered, much to my horror, when I first began using CS5 that when I created an .eps file in Illustrator that my files were being converted to Photoshop .eps files. Using the Get Info window, I had to change the option in the Open With box back to having it open in Illustrator, where it was created.
    The advice I was given at that time was to click the Change All button to have all .eps files open in Illustrator. When I did this, it changed all the .eps files that I had created in Photoshop to Illustrator files.
    I had created some Grayscale images in Photoshop to put them into a layout. The last time this file went to press, I had not changed all the files over in the Get Info window yet. Recently, after checking the box that now made all my Photoshop files Illustrator files, there was a problem with the printer because Illustrator does not have a Grayscale Color Mode option, so my Grayscale files were now CMYK. This got me in a lot of trouble at work.
    Is there any reasonable solution to this other than changing each .eps file to open and be identified with the native file? I have hundreds of .eps files.
    Has this been corrected in any subsequent versions of CS?
    Thanks

    The most reasonable solution I've found to is to purchase an inexpensive utility which can control appication opens common file types in the application you like:
    Soxy | Rorohiko Workflow Resources
    From the web page:
    "Soxy automatically determines the type of each file you open and then directs it to the most appropriate application.
    "There’s a problem when a computer has multiple versions of applications installed (like Adobe® InDesign®, QuarkXPress®, Adobe Illustrator®, Adobe Photoshop®, etc…). Opening a file will often cause the wrong application version to launch."
    I don't work from them, I'm just a happy customer.

  • Opening EPS files - Photoshop vs. Illustrator

    I have many instances during the day when I need to open different types of EPS files - vector-based graphics created in Illustrator and images saved in Photoshop. However, the Finder can't seem to differentiate between the two - it opens an EPS in Illustrator regardless of how it was created.
    I know I can change the default launch app in the Get Info window, but is there a way to make the Finder recognize that there's a difference between the two? I've been working on Macs for 15 years, and I don't recall having this problem before...? I'm using the CS3 Suite, if that makes a difference.

    on Mac OSX, type and creator are stored in a resource fork, which I'm guessing the clients/stores your getting your eps from don't give you. The finder can't recognize the difference between the 2, however if you open the file in textedit first you will see a line %creator and it will tell you the program the file was created in.
    Thats what people use to restore the resource fork. You can use this app
    But its missing the extensions in photoshop cs3 so you could rebuild it from the source code, found here
    Drop the code in to script editor and then when you are done save it as an app
    You will have to find this line in the source
    {quote:title=Source:}property gheaders_photoshopeps : {"Creator: Adobe Photoshop Version 6", "Creator: Adobe Photoshop Version 7", "Creator: Adobe Photoshop Version 8", "Creator: Adobe Photoshop Version 9", "Creator: MediaBin"}{quote}
    and change it to this
    {quote:title=Updated Source:}property gheaders_photoshopeps : {"Creator: Adobe Photoshop Version 6", "Creator: Adobe Photoshop Version 7", "Creator: Adobe Photoshop Version 8", "Creator: Adobe Photoshop Version 9", *"Creator: Adobe Photoshop Version 10"*, "Creator: MediaBin"}{quote}
    you also need to add *"Adobe Illustrator(R) 13"* the same way to both:
    *property gheaders_illustrator_nativeversion*
    *property gheaders_illustrator_epsversion*
    Make sure you use " (quotes) and separate them with a , (comma)
    look in text edit at the % creator if you need to change more recent versions of files, of even file types if your more advanced.
    Here is the official answer from adobe in bridge, they say it can't be done.
    If its a little much for you sorry, its a complex solution.
    Nathan
    edit: I haven't yet tested the updated source code, but it should work, let me know how it goes
    Message was edited by: Nathan005

Maybe you are looking for

  • Order of the selection fields in SAP QUERY

    Hello All, How can we set the order of the selection fields in SAP QUERY! Regards! Ashish

  • Polish Character issues

    Hi, Our application has a JBoss server running on a Unix platorm. Apache is the webserver. My requirement is that a client user should be able to input details on to a for and on submit it will go to a third party tool and generate a PDF. Now the cat

  • HT201412 phone won't charge

    I have gone through 3 chargers now the phone won't charge unless I put a rubber band to hold the wire in. And lay it still

  • 0fi_gl_4 init is not pulling any data

    Hi All,   We have ofi_gl_4 installed and running fine with deltas. We thought of reinitializing the delta because of some business reasons. I deleted the delta initialization and started delta initialization with data transfer with Fiscal Year/Period

  • Lubuntu 13.10: Firefox Sync - Account set up doesn't do anything

    Hello, I've tried to set up a Firefox Sync Account, however, after filling in the formula and clicking on the Button to Finish the process the only thing it does is closing itself (the Browser itself stays open). Any tips are appreciated. Kind regard