Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21
  1. #11
    Shawn is offline Senior Member
    Join Date
    Aug 2007
    Location
    Topsham, Maine
    Posts
    192

    Default

    Quote Originally Posted by FTuser1 View Post
    Okay so we have been struggling to get quality PDF's to our customers for a couple of years. Finally we have decided to find a solution. Here is the workflow we would like to have:

    1. Save finished label as .eps or .ai
    2. Throw the .eps into a Distiller watched folder
    3. Collect the PDF and email to the Customer (subsequently the file size should be email friendly)

    This is working for 80% of our files but some of the non-flattened files are causing issues in Distiller (white box problem etc). Of course our Customers don't all have Acrobat Pro so they can't see an accurate PDF unless we save each file from AI as a PDF which is very time consuming when we are dealing with 300-400 files a shift.
    Sounds like a perfect place to use a script.

    I'd also try to remove steps 2 and 3. The time it takes to save as an EPS or AI is the same as the time it takes to save as a PDF. As Leonard mentioned EPS is old school, and is related to the flattening issues you're seeing. Going direct to PDF X1a or PDF X4 will be much more efficient and fix your white box issue.

    Adobe ships Illustrator with a script that will save all open docs as a PDF. They also have another version that will batch save all PDFs in a folder. I've attached our slightly edited version that saves as a PDFX4 here. If you want it to work with your default pdf settings just change [PDF/X-4:2008] in line 124 from "pdfSaveOpts.pDFPreset = '[PDF/X-4:2008]'; " to exactly match whatever your job options are named. You could easily make separate scripts that use different joboptions, one for high res PDFs and one for low res email pdfs.

    To use just add it into the Illustrator scripts folder (Presets - en_US[or whatever language default you have] - Scripts). That will make it show up in the Illustrator File - Scripts menu.

    When you run it, it will ask for a folder of AI files and ask where you want to save them as PDFs to. Let it run and when done you'll get a bunch of PDFs out.

    If you really want to geek out and you're using it a lot in production you could hard code in the source folder (line 38) the destination folder (line 52) or the file types that it accepts (including *.eps instead of *.ai on line 47).

    We use this script all the time on batches of greeting cards that are saved as separate single page .ai files that need to be processed as PDFs and it works really great.

    Shawn
    Attached Files Attached Files

  2. #12
    FTuser1 is offline Junior Member
    Join Date
    Mar 2011
    Posts
    7

    Default

    Okay guys, thanks for the input. Here are some answers to the questions above.

    1. We are not opposed to changing our workflow from .eps (postcript) to .PDF if it helps us.
    2. We are using OSX, but currently we are just saving as .eps files and using distiller. We discussed yesterday about saving all our files as .ai (pdf compatible) files in lieu of .eps.
    3. Each prepress operator has Acrobat Pro 9.4.1 but we could upgrade to X if needed.
    4. We have had our customers turn on their Overprint preview in Reader's preferences. Which has solved many issues, however, like mentioned I think the .eps to distiller flow is outdated and we need to be current in our process.
    5. We have actually looked a lot at the WebCenter from Esko. At this point the only reason we are waiting is for some MIS integration issues to be resolved.

  3. #13
    FTuser1 is offline Junior Member
    Join Date
    Mar 2011
    Posts
    7

    Default

    The reason we are using Distiller in lieu of the AI script is it allows our operators to continue editing in AI while their dozens of jobs convert from .eps to pdf in the background. I believe that if AI is running this script it would prevent us from working while it saves is that correct?

  4. #14
    Stephen Marsh is offline Senior Member
    Join Date
    Apr 2009
    Location
    Sydney, Australia
    Posts
    575

    Default

    Quote Originally Posted by FTuser1 View Post
    Okay guys, thanks for the input. Here are some answers to the questions above.

    2. We are using OSX, but currently we are just saving as .eps files and using distiller. We discussed yesterday about saving all our files as .ai (pdf compatible) files in lieu of .eps.
    OS X offers Automator and AppleScript, however I would suggest using Acrobat Pro and or a plug for Pro over OS X features.

    You mentioned working in Illustrator, so I presumed that your native file format was .ai and that you were saving a copy in .eps to make use of the Distiller watched folder conversion to PDF. If you do use .ai with pdf compatibility on, then there *may be no need to use an intermediate format such as .eps (see * below)

    ____

    I would look into Enfocus PitStop or Callas PDF Toolbox for batch optimization of PDF files (however your files must be PDF to start with). Both have 30 day free working trials.

    ____

    As I said, this is a quick, free hack - not an ideal solution. It may or may not work 100% depending on various factors...

    1) At the OS level, copy your final native working .AI files saved with "create PDF compatible file" option to your PDF folder.

    *2) Use a batch file naming utility to change the filename extension from .ai to .pdf. You will of course have to test that the media box, bleed etc is correct (should be for labels, which often float on a larger white space).

    3) Use Acrobat Pro 9 or X to run a batch on a folder, to optimize the incoming PDF files and to write them to another folder or add a proof suffix to the file name etc. This can be done to the entire PDF folder.

    One could easily set up a shared folder on a "server/workstation" which has Acrobat Pro installed, where it could do the batch processing behind the scenes without tying up a workstation/operator.

    _____

    Optional -

    4) Another option could be to use an Apple Automator workflow to reduce file size by further image compression and/or resampling. I would go with Acrobat over the native OS X options, as Acrobat will not screw up your files like the Apple options.


    Regards,

    Stephen Marsh
    Last edited by Stephen Marsh; 03-04-2011 at 02:35 AM. Reason: Clarity

  5. #15
    Ruby Barrett is offline Junior Member
    Join Date
    Sep 2010
    Posts
    8

    Default Pdf

    We require print ready PDF's, converted to outline, including fonts and images. Most will comply but we have the odd designer telling us that they never have to do that for other printers! Is this such an unusual request? Some of our customers are being charged extra from their graphic designer to do this, this action takes a mere minute or 2. Any solutions out there for us?

  6. #16
    Al Ferrari is offline Senior Member
    Join Date
    Jan 2008
    Posts
    735

    Default

    "We require print ready PDF's, converted to outline, including fonts and images."

    If you require that they include fonts in the pdf, why do you require that they be converted to outlines??? And if it requires a mere minute or two, then why don't you do that for them?

    Realize that keeping their business is about not making them jump through a bunch of hoops just for your convenience. It seems to me that the simplest solution is for you to change your attitude about this and learn more about pdfs and fonts.

    Al

  7. #17
    Ruby Barrett is offline Junior Member
    Join Date
    Sep 2010
    Posts
    8

    Default

    Thanks for your kind words and help Al. I did ask for a solution as I am learning.

  8. #18
    Stephen Marsh is offline Senior Member
    Join Date
    Apr 2009
    Location
    Sydney, Australia
    Posts
    575

    Default

    Quote Originally Posted by Ruby Barrett View Post
    Most will comply but we have the odd designer telling us that they never have to do that for other printers!
    True and fair enough.


    Is this such an unusual request?
    Unusual? No

    Unnecessary? Perhaps... Why can't you deal with fonts? Software working with PDF files should be able to use the fonts in the PDF and take advantage of the benefits of having the fonts remain as fonts. Do you have an APPE RIP? Is your RIP old or CPSI only? Does the RIP or workflow before the RIP have problems receiving fonts downloaded from PDF files? How are your PDF files input into your system? Are fonts not embedded in source PDF files correctly? Do you need to open PDF files into Illustrator for "editing" (and you don't have the fonts)? Are these PDF files Illustrator PDF files or PDF files generated by some other application?


    Any solutions out there for us?
    Solution* - accept fonts in PDF files and stop asking for them to be outlined to paths? (*which you may not see as a "solution").


    Regards,

    Stephen Marsh
    Last edited by Stephen Marsh; 03-09-2011 at 09:17 PM.

  9. #19
    karolisk is offline Junior Member
    Join Date
    Apr 2012
    Location
    Lithuania
    Posts
    2

    Default

    Hello,
    I tried this script, but it does not work. it says:
    Error 1200: an Illustrator error occured 1129270854('CONF')
    Line 64
    -> sourceDoc.saveAs(targerFile,pdfSaveOpts);

    Quote Originally Posted by Shawn View Post
    Sounds like a perfect place to use a script.

    We use this script all the time on batches of greeting cards that are saved as separate single page .ai files that need to be processed as PDFs and it works really great.

    Shawn

  10. #20
    Shawn is offline Senior Member
    Join Date
    Aug 2007
    Location
    Topsham, Maine
    Posts
    192

    Default

    Quote Originally Posted by karolisk View Post
    Hello,
    I tried this script, but it does not work. it says:
    Error 1200: an Illustrator error occured 1129270854('CONF')
    Line 64
    -> sourceDoc.saveAs(targerFile,pdfSaveOpts);
    Hi Karolisk

    Looks like it's having a problem finding the joboptions fiile. Go through the instructions on my original post carefully. Open the script in a text editor and make sure that the joboptions mentioned in line 124 of the script exactly matches the PDF joboption setting from Illustrator that you want to use. In the script I posted it's set to look for one of the Adobe defaults for the newer versions of Illustrator CS3 or later '[PDF/X-4:2008]' -- including the brackets -- if that exact joboption isn't installed on your system it won't work.

    Shawn


Page 2 of 3 FirstFirst 123 LastLast

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Sponsors

Esko Sponsored Content