Bad EPS files

I'm using InDesign CS2 for Mac. Here's my specs:
G5 1.8ghz/4GB RAM
OSX 10.3.9
Suitcase Fusion 12.1.7
ID CS2 4.0.5
My problem is that most times when I export an EPS file I get an EPS with nothing in it. It's a transparent box when imported. It won't PDF when dropped into Distiller and Illustrator will tell me it's corrupt.
This is mostly when I bring in a PDF and then try to export as an EPS. It was working a while back (about 6 months ago), but not lately. I can export a PDF and save out an EPS from Acrobat, but I'd rather not add the extra step when this feature should be working.
The times it does work, I have limited stuff in the document. Mainly text frames.
Does anyone have any idea what might be causing this and how to fix it?
Thanks.

Depending on what I need, it's either CMYK or Grayscale, Lvl2, No fonts embedded, no bleed.
Font embedding doesn't seem to matter, nor does any of the flattener settings. We aren't using OPI, so that's not checked.
Thanks...

Similar Messages

  • Image Processor Pro and Picture Processor load eps files without rasterizing them

    Hi. My name is Lucas. Im from Argentina, now living in Brazil. I have the problem that is in the title. Im new doing this stuff but reading a lot i discovered that both scripts open eps files and because they dont get reasterized, then saved files looks preety bad.
    I know that there are some parameters to open eps, ex:
    var epsOpenOptions = new EPSOpenOptions();
       epsOpenOptions.antiAlias = true;
       epsOpenOptions.mode = OpenDocumentMode.RGB;
       epsOpenOptions.resolution = 72;
       epsOpenOptions.constrainProportions = true;
    I have to say that looking for a solution a found a script and modified to suit partially my needs. I said partially because i need the script to look folders and save output files with same structure. Here is the script that manage one folder at a time:
    #target photoshop
    // Asks user for input folder
    var inputFolder = Folder.selectDialog("Select a folder to process");
    // Asks user for output folder
    var OutputFolder = Folder.selectDialog("Select a folder to save your Tiffs");
    if ( inputFolder != null && OutputFolder  != null ) {
       // Makes list of all files located in that folder
       var fileList = inputFolder.getFiles( "*.eps" );
       // Create a EPS option object [height & width are doc size]
       var epsOpenOptions = new EPSOpenOptions();
       epsOpenOptions.antiAlias = true;
       epsOpenOptions.mode = OpenDocumentMode.RGB;
       epsOpenOptions.resolution = 72;
       epsOpenOptions.constrainProportions = true;
       // Open each file in turn
       for (var i = 0; i < fileList.length; i++) {
          // open the file
          app.open( fileList[i], epsOpenOptions );
          var baseName = activeDocument.name.slice( 0,-4 );
          // put your code to 'save as' the file here
          var saveFile = new File ( OutputFolder + "/" + baseName + ".jpg" );
       SaveForWeb(saveFile,60); // set quality to suit
    function SaveForWeb(saveFile,jpegQuality) {
      var sfwOptions = new ExportOptionsSaveForWeb();
      sfwOptions.format = SaveDocumentType.JPEG;
      sfwOptions.includeProfile = false;
      sfwOptions.interlaced = 0;
      sfwOptions.optimized = true;
      sfwOptions.quality = jpegQuality;
    activeDocument.exportDocument(saveFile, ExportType.SAVEFORWEB, sfwOptions);
    activeDocument.close( SaveOptions.DONOTSAVECHANGES ); 
    So, if you know some way modify image processor pro or picture processor i will be very pleased.
    Because i will only use the script to manage eps files and save them as jpg (save for web) i dont need an special button to activate that option. Keep it simple. Thanx!!

    You can tweak ImageProcessorPro.jsx by make the following edit.
    Search for code that looks like this:
    ImageProcessor.prototype.openDocument = function(file) {
      var self = this;
      var settings = self.settings;
      var mode = DialogModes.NO;
      var ext = file.strf("%e").toLowerCase();
      var isRaw = ImageProcessor.CAMERA_RAW_FILES.contains(ext);
      if (isRaw) {
    and insert this code right after it:
      if (ext == "eps") {
        var epsOpenOptions = new EPSOpenOptions();
        epsOpenOptions.antiAlias = true;
        epsOpenOptions.mode = OpenDocumentMode.RGB;
        epsOpenOptions.resolution = 72;
        epsOpenOptions.constrainProportions = true;
        try {
          var doc = app.open(file, epsOpenOptions);
        } catch (e) {
          Error.runtimeError(9002, ZStrings.UnableToOpenErr);
        return doc;
    I haven't tested this at all but it looks good from here.

  • Need a Bigger Hammer for bad .eps graphic

    I should be asking this in the Sign Maker Plus forum or something  , but alas this is my familar place.
    A peer has asked me to look at a bad eps, originally submitted via email uncompressed, I deemed it corrupted by email transfer; happens all the time.
    Having received a replacement via email in a compressed folder, and uncompressed locally, it behaves as -
    InDesign will place the graphic showing a very low res preview in Normal Preview; Overprint Preview shows the Gray Frame similair to Display Performance > Fast and upon export to pdf returns the message "Failed to Export an EPS Item on page 1. View additional errors?"
    Illustrator CS4 upon attempting to open yields the message "The operation cannot be completed due to an unknown error"
    Photoshop CS4 upon attempting to open yields the message "Photoshop could not complete your request because Photoshop was unable to parse the Postscript"
    Distiller using any preset (I actually only tested 5) happily produces an empty page, lettersize. Interestingly the last status message, never a log for failed job, notes that "This document passes PDF/X-1a compliance checks"
    The obvious is get a new file...we're talking about people who needed help with compressing a file here...
    Any other hammers out there which might parse this unknown created by .eps?
    I suppose I could suggest a pixel based format...
    Hosted zip at Acrobat.com
    https://acrobat.com/#d=sJu*5CDTk4H3UI*srT-9bg

    Interesting. It *appears* to be a perfectly valid EPS, but it might be a bit bigger than Illy, Photoshop, or InDesign can handle:
    |19040 - 21231| = 2191 pt ~ 30.43 in ~ 77.3 cm wide
    |-446 - 1018| = 1464 pt ~ 20.3 in ~ 51.6 cm high
    Perhaps that's the problem.
    Or perhaps it's not -- setting the Distiller to a default page size of 3,000 x 3,000 points resulted in a much larger, yet still blank page.

  • Question about EPS file

    Hey guys, here's my perdicament and I need your guys' input/feedback on this.
    I had a midterm exam today in my advanced prepress class and the question was as follows:
    - An EPS file is considered a:
    A) Raster file
    B) Vector file
    C) Metafile
    I chose B (vector file) and here is the reason why: I know that an EPS file can contain vector, raster, and type data, meaning it would be a metafile but what if you were to create an EPS file with just a square box drawn and saved it? Wouldn't that make it a vector file (no raster or type data)?
    What do you guys think?
    Thanks for the input!

    function(){return A.apply(null,[this].concat($A(arguments)))}
    So couldn't I hold a valid argument if I was to tell my instructor that an EPS could be considered all 3: a raster file, vector file, or metafile?
    No, because simply stating that a file is in EPS format tells you absolutely nothing about whether its CONTENT is raster, vector, or text. Stop kicking against the thorns. It is completely inappropriate to refer to an EPS file as a "vector file." That is one of the most common misconceptions and misuses of terminology in graphic design and it has causes untold confusion and bad practices in the trade.  That is, no doubt, the very point of the test question.
    If I give you a box, would you call it an artificial Christmas tree just because it may contain one?
    Even the question was well-stated:
    - A cardboard box is considered a:
    A) Artificial Christmas tree
    B) Clutch basket for a Suzuki DL1000
    C) Container
    JET

  • 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

  • "adobe .ai or .eps file" is not a valid Win32 application

    I'm on Windows XP and can't open Illustrator .AI or .EPS files by double clicking them. When I do I get the error "...is not a valid Win32 application". I must go to file>open or drag the file icon to the AI icon. I checked some other threads, but had no luck. I did try going to control panel>folder options>file types>opens with. But that did not work. Photoshop and Acrobat files open fine when I double click them.
    thanks

    As I wrote many times, the best cure in such situations is to entirely delete any existing references to a file type or program from that list, then create the rules again from scratch. Nothing as refreshing as starting with a clean slate. In addition, check, whether other programs are having a hold on certain associations and/or are simply flooding your context menu with nonsense stuiff. Tools such as Nero burning software, various packer tools and a colorful array of other software have the bad habit of doing that...
    Mylenium

  • Error message:  "document may contain binary EPS file which can cause print failure"

    Can anyone help me with this error message?  I have an .indd file that contains about 20 logos and various images.  I was under the impression that using eps / ai / and psd file formats for printing was best in InDesign.  (It is a 25 page document).  When I try to print the document i get the error message that says:
    "This document may contain binary EPS files which can caise the print job to fail.  If the printer produces output then the binary datat did not interfere with printing. Do you want to print this document?"
    Well - my document did not print for me .. so hwo can I fix this?
    Thank you,
    Cmol

    There are many ways to fix this.
    Re-saving EPS files as AI is fine.
    Re-saving EPS files as PSD is a bad plan -- EPS files are vector graphics, and PSD typically aren't. Also, AI files are PDF files that are generally readable by many applications. PSD files, not so much, (though InDesign certainly can).
    (You could also re-save as an EPS file without 8-bit/binary data.)
    What does the error message mean? Well, EPS files are a type of PostScript file, and PostScript has many ways to store image data. It can be stored as 8-bit data, which is the most space-efficient. It can also be stored as base64 ascii, i.e. just letters and numbers and soforth, which takes up more space (I want to say 130% more?).
    Depending on exactly how your computer is connected to your printer, those 8-bit characters can cause problems and may not make it all the way to the printer. If that happens, then you get this problem. The warning message is there to let you know that if you have a non-8-bit-clean printing path, then you may have a problem.

  • How to use .eps files in Adobe Photoshop CS

    I purchased some vectorshapes from Vectorstock, and downloaded .zip files to my desktop. I then extracted the files to the /presets/customshapes folder in Adobe Photoshop CS. (I have Windows 7). I then found out they were not .CSH files but Encapsulated PostScript or .eps files. How can I use them in Adobe Photoshop? Please help

    Thanks, that helps.

  • Can you remove XMP data from .eps files in Illustrator-CS5.5?

    Background:
    I'm using font software called Typetool 3 and Illustrator CS5.5.
    I am using these on Windows 7, 64 bit.
    This is entry level font software released by Fontlab.
    This software accepts artwork through the .eps file format in both theory and practice.
    However: it refuses illustrator CS5.5 .eps files.
    When I looked at this I came up with two highly interesting things: First- CS5.5 illustrator files are roughly 13 times the size of CS5 files, of this type (a simple font glyph-comparing a 29-30 kbfile to a 420-450 kb file in cs5 and cs5.5 respectively).
    Thing two came from looking at what that data was (by opening it in a text editor). It appears that some of the data XMP data, illustrators data for tracking things like who created the file, copyright, and other. In document info many of these fields were blank. I'm sure this isn't the only issue because my exported xmp data is 64 kb large, but it does account for a chunk of the file.
    The main question being: Can this xmp data; which for my purposes is redundant, because I have to put copyright and other data in the font, be removed or not included at the point of document creation?
    The technical question being:Can the file be saved in a manner which will allow it to be exported from adobe CS5.5 and imported into Typetool 3?
    Things I've tried:
    In saving .eps file: removing document headers, previews, color data, saving as different versions of the language. Basically saving it without all settings.
    In saving .ai file: saving without any settings checked (without compression, pdf editting, ect.) and saving it to a different level of illustrator.
    I do not know enough about postscript programming to navigate the file or remove the offending data. Nor do I have time to do this over multiple glyphs.
    As a matter of opinion I do not like that my software is including potentially identifying information (which is one of the intents of XMP data, to provide identification) without notifying the creator, let alone allowing me to keep it from doing that. I would not mind or bother-except for the fact its messed up an established workflow. If someone editted this data without my knowledge, say with a virus or heaven forbid manually, it would be also be bothersome. Having a check that identifies that I am sending this data out would give me something to know if this situation was in fact happening. Additionally for a situation like mine-communication between programs in a closed environment where no other users are involved, its unnecessary and wasteful... like putting gold rims on what is intended to be an oxcart.
    I'm planning on going to Fontlab for later this week, as it is as much thier issue as it is Adobe's. From what I know XMP is both a useful and popular technology- having a workaround for this situation seems like it would be a good idea. If necessary I can attach some working files for comparision.

    I would save it as EPS (version Illustrator 3). This should be compatible to almost any  software that takes EPS.

  • Unable to open .eps file "unknown format and cannot be opened" ?

    A client sent me an .eps file (logo). I tried opening it in Illustrator AND photoshop (just to see if it was saved in one vs the other program) - however to no avail.
    Illustrator gives me a message "unknown format and cannot be opened"
    Photoshop gives me a message "photoshop was unable to parse the postscript".
    I'm using Adobe CS4, and I've never seen this message before—would love to know what this means and how to resolve?
    File attached if anyone is able to open / fix it?
    Thanks kindly,
    Chemol

    Thanks for the advice Scott - does compression improve the .eps?  Is it
    silly for me to ask them to compress it since the file is only 766 KB
    (that's how big the attachment is in my email - though I am unable to open
    it)?
    My friend is able to open it on his end - however the 3rd person (client) is
    the one who sent it, and I have already requested a different version - no
    response from them yet.  Unfortunately what the company "has" is what he
    will likely give to me again (ie: same file / unable to open).  So ... I am
    curious about how I can resolve this issue on my end - if possible?
    Do you know what the AI and Photoshop error messages mean? Could the issue
    be a mac vs PC concern? Or is it a corrupt file? Could it be a software
    version issue (old vs new) ... or Quark incompatibility?
    .... just guessing at this point....Any insight as to what different
    scenarios may apply in this situation would be greatly appreciated ..thank
    you.

  • Can't export an EPS file from Photoshop CS5 and open in Illustrator CS5.

    I'm on Mac OS X Lion 10.7.5
    I am making DVD covers for print. The barcodes for the DVD covers have to be done in Illustrator. But the original designs are done in photoshop including the text. For years this hasn't been a problem. Right before adding the barcodes I create an EPS file from photoshop, open that file in Illustrator and all my text is automatically coverted to perfect crisp clean vectors, viola! I add the barcodes and export the PDF for the printers.
    But now I can't open my EPS files in Illustrator CS5 even though I'm exporting them the same way I always have from Photoshop CS5. Illustrator says... "The operation cannot complete because of an unknown error." --> Note it does not give an error number after this warning like I see it does for so many other people.
    I have been trying to fix this for over 10 HOURS spanning 2 days! I'm infuriated I can't get help from Adobe on this and have read all the forums and don't see my problem listed anywhere.
    I've tried:
    - Deleting the .plist file and the Settings folder & resetting my permissions
    - Uninstalling and Reinstalling Illustrator
    - Turning off all other applications
    - Creating more disk space on my hard drive (even though I have 200gb available)
    - Restarting the computer
    - Disabling my Font book and still I can't open the EPS file
    I thought maybe it's possible it's the font I'm using Fontesque OT so I even tried converting text to objects prior to exporting the EPS file from photoshop to illustrator and turning off my font book, but still it won't open. And if I open the PSD directly in Illustrator, text comes out a bit fuzzy in the PDF I export.
    If anyone can provide any solutions I would be so grateful! I'm at my wits end here, this should have taken under an hour to do and now it's ruining my entire weekend. I'm completely panicked because I was suppose to have these to my client over the weekend so they could turn them in for Print frist thing on Monday morning and of course Adobe provides no chat support or phone support after 7pm on weekday or on the weekend which is when this all started.

    I never even thought of reinstalling photoshop, but I think this was a font issue. I'd never saved an EPS with Fontesque OT Regular enabled, only Fontesque OT Bold. Somehow I think the font was causing the problem because ridding the font from the equation allowed me to open the EPS file.
    After 12 HOURS of trying different things I found a WORK AROUND...
    I had to:
    - Select the Text in Photoshop (with Fontesque OT enabled)  --> Select Create Work Path --> Covert to Shape on each of the text items
    - Save EPS file out of Photoshop
    - Disable Fontesque OT font in Font Book
    - Then open EPS in Illustrator add in my Barcodes and export the PDF
    (the barcodes have to be added in Illustrator because they need to be pure 100% black with no CMYK color in them. You can't save them out of Photoshop that way, only Illustrator, otherwise I would have made my pdf straight out of photoshop like any other normal human
    This work around is the only way I could get the EPS files to open in Illustrator and still have the text remain super crisp like a vector.
    NOTE to others in the future about crisp text from Photoshop to Illustrator:
    - Simply "converting to shape" did not preserve the vector. You have to Select Create Work Path --> then Covert to Shape on each of the text items (with the font enabled) for this to work and preserve the crispness of the text. Even creating "smart object" did not truly preserve my vectors or the text crispness in the EPS file once I imported it into Illustrator.
    DrStrik9 thank you SO MUCH for trying to help me. You did give me ideas that helped me figure out the workaround and also helped me feel not so alone as I struggled through this. I'm going to follow up with your other suggestions about reinstalling photoshop and also checking my RAM, etc. But I just want to that you so so so SOOOO much for all your time and consideration in this matter. I hope you have a wonderful amazing week ahead and that someone does something very nice and thoughtful for you too

  • How to upload and edit an eps file

    Hi all,
    I have just downloaded an eps file from shutterstock and they given me this free trial idea with adobe but unfortunately i have got no idea how to upload my file and edit it and save it as a jpg file for further work. can anyone help me please

    you can use adobe illustrator to open that file.

  • How to create a eps file from illustrator?

    I am new to illustrator and new to creating logos for print, I usually only do it for the web.  I am creating a logo for my team so that it can be printed onto a jacket.  I created an all white logo because the jacket is black.  I was asked to send an eps file.  I created the logo in illustrator and saved it as an eps file and as a pdf file thinking the printer could use the pdf for viewing.  When I open the pdf file, the only thing that's there is a soccer ball, my text and a few other things are missing.  When I open the saved eps file, the same thing, I have to go to select all to see all my other stuff in the eps file.  How do I save my file as eps and know that it's attaching everything I have within the illustrator file and how can I view the logo as a pdf?  Any help you can give would be greatly appeciated, thanks so much!

    How did you similate the black color?
    Since Illustrator does not have a background, you must create one with the rectangle tool, drag out a rectangle the size of the document and then move it to the back. That rectangle can then be filled with black.
    Also look in your layers panel and see what you have for objects. You can select them there and move them up or down to bring them forward or backward on the document. It can also make it easier to select when the object is below others.

  • How do I fix a problem with .eps files not showing up properly in icon view

    Actually my .eps files are not showing properly in any of the views but icon view is most important to me.  I am using OSX.8.5 on a mac mini and mac book air.  Almost all of my .eps files are conversions of .wmf files converted to .eps by WMF Converter software.  All of these files used to be on a PC running windows Vista using ST Thumbnails explorer to be able to view thumbnails.  For background info: I had to use a program to view the WMF files becasue hackers could put viruses into the thumbnail for WMF fies so instead of fixing the problem Microsoft disabled the thumbnail view for all WMF files. 
    A few of my .eps files are conversions of files created in CorelDraw 3x and converted to .eps in CorelDraw 3x.  Both types of .eps files misbehave the same.
    I downloaded one .eps file today from the internet to see if it would misbehave the same way (it does).
    Here is the problem: After a reboot when I first view a folder that contains .eps files in icon view I can see the file contents fine.  If I use the resize slider at the bottom of the window or resize the window itself then some or all of my .eps files revert to displaying the "generic icon" of a Loupe with a picture behind it.  If i can manage to put the resize slider to exactly where it was then my icons display the file contents as they did before I messed with the slider.  There seems to be no rhyme or reason as to when an icon will display as the file contents or when the generic icon comes up.  In some folders all the icons display correctly at the smallest icon size and in other folders the icons may display correctly or as only generic or a mix of generic and file contents.  Icons to files that came from the same source will not necessarily display the same way.  Icons to files that came from the same source and were converted by WMF Converter at the same minute do not necessarily display the same way.  If I display "info" for the files sometimes the previev pane of the info box will display the generic icon or sometimes it will show the file contents.  If I take an .eps icon that displays properly and drop it into a folder where all .eps icons are displayed as generic then that icon displays generic.  When I move that same icon out of that folder then it will display properly.  Icon view, list view, column view and cover flow view all display differently with no discernable pattern.  Sometimes I can see file contents in column view and not icon view.  Sometimes in cover flow and not in icon view.  It makes no difference if I have a handful of .eps files in a folder or hundereds of files in a folder.  After an undetermined amount of time the icons might display properly again or maybe not.
    What I have done so far:  exhaustive search of the internet did not find anyone else with the same issue.  I checked and fixed all disk permission errors that disk utilities would fix.  I know that icon view and quick look are two different things, but, I did however, download and install an eps quicklook plugin that did not seem to make a difference for my issue.  BTW Quick look sometimes works and sometimes not (no discernable pattern to this behavior either).  I tried the cnet download fix for quicklook just for grins.  It had me force QL to reload plugins and it's cache then I cleared out the QL configuration files.  This did not seem to make a difference in the behavior of icon view or Quicklook.  The only two things I have found to be consistant are 1)  The "open with preview" always works but I know this is different because this preview actually generates a pdf view of the file. 2) When the icon does display the file contents it always displays correctly.
    When you read this please be mindful of:  I am a Microsoft refugee not yet familiar with the Apple world so you may have to tell me how to do "simple" things.  I have no idea what is the difference between a "thumbnail" or a "preview" or the behind the scenes way that apple generates the icon appearance for the 4 different views. 
    Any assistance would be greatly appreciated.  I tried to insert a screen shot but got an error message when I did it.

    Was the error number really 0XE8....
    iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting

  • How do I convert an EPS file to a PDF file?

    I am working in Pages ('06 - 2.0.1), and I cannot open an EPS file and convert it to a PDF file. Pages doesn't respond and I have to force quit. The same thing happened when I tried opening the file with Preview. Any suggestions?
    Thanks!
    iMac   Mac OS X (10.4.5)  

    Hi there,
    I use an App called Graphic Converter, this is the link to the different formats it can open and it looks to me it will be able to open EPS Files as well as export the same file as a PDF... this is free to download and try
    Rick
    iMac G5 iSight 20" - 30G iPOD in Slimming Black -   Mac OS X (10.4.7)   - HP Pav 15" WS and Toshiba Sat 17" WS LP's - Canon 20D & A620

Maybe you are looking for

  • Could I have damaged my hard drive?

    Yesterday I was moving my router and cable modem around my desk, and, to make a long story short, some cables were tangled and a small desk lamp took a four-foot swan dive onto my MacBook Pro. The point of impact was about two inches below the keyboa

  • Help with JTable - content of cell disappears when selected

    Hello, I have a jTable and I have created a custom cell renderer. It does what it's supposed to do (which is set the background color of all cells with null or "" value to red - as an indication to the user that b4 proceeding he/she has to fill in th

  • Declaration of subroutine formal parameters in ecc 6.0

    In extended syntax check of my program, how can i declare formal parameters ? the warning is Program:  ZADI_V_R_869_870_STATUS  Row:    751 Parameter "P_LV_UNSHIPPED_QTY" is untyped. Static type checks and optimizations, therefore, cannot take place.

  • Re-installing iTunes after operating system upgrade

    Hi, Just recently I upgraded my PC form WindowsXP to Windoes7, 64bit. I had iTunes on my main drive, so that is gone and I want to re-install iTunes, or install the latest version of it. I still have my old iTunes music library on another hard-drive,

  • What is your workflow, from start to finish?

    Here's mine, and it's a work in progress (any suggestions are appreciated). It feels a bit cumbersome, but I'm an amateur and only process 50-75 photos a week, so it's okay for now. 1. Use Automator script to import RAWs to Image Capture, name the sh