convert from cmyk to grayscale

Ask a Question related to Adobe Indesign Macintosh, Design and Development.

  1. #1

    Default Re: convert from cmyk to grayscale

    PitStop.
    Brutus_Maximus@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Can't Batch Process-Convert CMYK to Grayscale & Preserve Spot Colors
      Acrobat Pro 8.1.2 - Mac OS 10.4.11. Anyone have a way to batch process this request? I have files (many) that have CMYK images and spot color...
    2. How to Grayscale a non-device CMYK file
      This may be a really basic question. In fact, I don't even know the difference between non-device CMYK and Device CMYK or if there's a way to convert...
    3. PDFs from ID not CMYK when told to convert all to CMYK
      I'm creating a PDF from InDesign CS2 with the switch Convert all colors to CMYK enabled in Ink Manager. Yet I still get spot colors in my output...
    4. When printing with one color black on press cmyk? or grayscale?
      Hey Guys I was proofing some pdfs that im sending off to press for a one color job (black) and noticed that when using the seperations preview for...
    5. prevention of grayscale images converting to CMYK color index
      Good afternoon, I am experiencing an issue with using hires grayscale images in Acrobat 6.0 with Enfocus Pitstop pro 6. Pc is running XPpro with...
  3. #2

    Default Re: convert from cmyk to grayscale

    You need Acrobat 7 (or 8) Professional because that's where the Print Production toolbar and the Convert Colors tool was added.
    Steve_Werner@adobeforums.com Guest

  4. #3

    Default Re: convert from cmyk to grayscale

    If you don't have 7 "Quite a box of tricks" plugin can do it. its cheaper than Pitstop.
    Buko@adobeforums.com Guest

  5. #4

    Default Re: convert from cmyk to grayscale

    Hi Richard

    I think your solution looks like the most promising as nothing else seems to be working urghghhg.... but the only thing is when i go to print to PDF (as if PDF were a printer) it goes through the whole process of flattening, then creating the pdf etc but then disappears and i don't know where it's putting the blooming file!

    answers on a postcard...!

    thanks to everyone who's been helping. xxxxxxxxxxxxxxxx
    Fritha@adobeforums.com Guest

  6. #5

    Default Re: convert from cmyk to grayscale

    export your PDF
    Buko@adobeforums.com Guest

  7. #6

    Default Re: convert from cmyk to grayscale

    hey, well, it's not using the export function, it's using the Indesign, print - then printer - adobe pdf 7 -

    under colour management chancing the output colour to composite grey.

    then i'm hitting print to create the pdf

    it comes up with the bars showing it's making the pdf but then the bars disappear and i don't know where the pdf has gone.

    I had a look in the indesign preferences to see if it stashes them somewhere odd but it doesn't.

    help!
    Fritha@adobeforums.com Guest

  8. #7

    Default Re: convert from cmyk to grayscale


    >hey, well, it's not using the export function, it's using the Indesign,
    print - then printer - adobe pdf 7 -




    Fritha:

    Is there a specific reason why you're using Print to PDF instead of exporting PDF? Just curious.
    Brutus_Maximus@adobeforums.com Guest

  9. #8

    Default Re: convert from cmyk to grayscale



    why you're using Print to PDF instead of exporting PDF?




    Because she cannot choose "composite grey"?
    Just a guess.
    Isn't that what this thread is about?
    Gerald_Singelmann@adobeforums.com Guest

  10. #9

    Default Re: convert from cmyk to grayscale

    Ah, never mind, then. I'd misread the earlier posts.

    Fritha:

    If this is just a one-time need, I'm sure there are many folks here who would be happy to convert your file for you. I'd hate for you to waste time trying to find a short-term workaround. In the long term, I'd suggest upgrading to Acrobat Professional. If this is a daily need, it would probably be worth it to invest in a plugin like PitStop or Quite a Box of Tricks.
    Brutus_Maximus@adobeforums.com Guest

  11. #10

    Default Re: convert from cmyk to grayscale



    it comes up with the bars showing it's making the pdf but then the bars
    disappear and i don't know where the pdf has gone.




    Fritha,
    It should show up on your desktop. Sometimes OSX can have some flakey refresh issues, so try browsing to your user folder via Users>your account>Desktop folder.

    Rob
    rob day Guest

  12. #11

    Default Re: convert from cmyk to grayscale

    Export your PDF from ID. It will be in color. Open it in Acrobat and choose Adobe PDF as your print driver. Under advanced print options choose grayscale composite as your color space. Hit print.

    Exporting or printing to Adobe PDF from ID won't produce a bw pdf no matter what color space you select for output, IIRC.
    Richard_Sohanchyk@adobeforums.com Guest

  13. #12

    Default Re: convert from cmyk to grayscale



    printing to Adobe PDF from ID won't produce a bw pdf




    It will if you use CompositeGrey and force InDesign to re-calculate all EPS and PDF by setting their opacity to 99,5%.

    Gerald
    Gerald_Singelmann@adobeforums.com Guest

  14. #13

    Default Re: convert from cmyk to grayscale



    It will if you use CompositeGrey and force InDesign to re-calculate all
    EPS and PDF by setting their opacity to 99,5%.




    And who's going to do that in a multi-page doc? If you have a couple dozen files, chances are you'll miss one at some point and have to do redo the PDF.

    [update] Tried the above advice and it works. I don't use EPS files so I didn't have to adjust transparency. Do have have to select every eps image in a doc and adjust transparency to 99.9? If so, that wouldn't be efficient as oversights are bound to happen.
    Richard_Sohanchyk@adobeforums.com Guest

  15. #14

    Default Re: convert from cmyk to grayscale



    chances are you'll miss one at some point




    you could use


    tell application "Adobe InDesign CS2"
    set aDoc to active document
    set allLinks to every link of aDoc
    repeat with n from 1 to count allLinks
    set aLink to item n of allLinks
    set aClass to class of parent of aLink
    if aClass is EPS or aClass is PDF then
    if opacity of parent of aLink is 100 then set opacity of parent of aLink to 99.5
    end if
    end repeat
    end tell


    and miss none.

    Do have have to select every eps image in a doc




    There will be EPS that InDesign can convert to grey but there may just as well be some that it can't. This is more difficult to tell than being sure to adjust all opacities.

    By the way: this script returns all previously changed graphics to 100%. You probably don't want to have any transparency flying around.
    Better still not to save.


    tell application "Adobe InDesign CS2"
    set aDoc to active document
    set allLinks to every link of aDoc
    repeat with n from 1 to count allLinks
    set aLink to item n of allLinks
    set aClass to class of parent of aLink
    if aClass is EPS or aClass is PDF then
    if opacity of parent of aLink is 99.5 then set opacity of parent of aLink to 100
    end if
    end repeat
    end tell




    HTH
    Gerald
    Gerald_Singelmann@adobeforums.com Guest

  16. #15

    Default Re: convert from cmyk to grayscale

    Ok - seem to have cracked it. Thanks to everyone for all their help! Here's the final answer:

    To convert from cmyk to greyscale in an Indesign Document

    Posted this on the Adobe Indesign forum:

    I have an Indesign document with pictures and text in cmyk that i need to convert to greyscale. Does anyone know how to do this without changing every single item in the document. I just want a greyscale PDF of the document.

    You do it NOT using the export PDF function, but using the Indesign print to PDF function like this:

    Open your InDesign file, choose print - then printer

    In the Print box that pops up hit the Printer drop down box and change it to adobe pdf 7

    under colour management (in the box on the left) changing the output colour to composite grey.

    then hit print to create the pdf

    it comes up with the bars showing it's making the pdf.

    The greyscale PDF should show up on your desktop. (This might take a while – just keep navigating back and forward. It should show up!)

    You can check that it has converted the colours by opening the PDF in Acrobat Professional.
    Choose Advanced – Output Preview – drag cursor over the pages. It should just show process black as a percentage.

    Yey!
    Fritha@adobeforums.com Guest

  17. #16

    Default Re: convert from cmyk to grayscale

    As already pointed out there are several drawbacks with that approach.
    It won't work with EPS or PDF files and it will result in a flattened PDF.

    Bob
    Bob Levine Guest

  18. #17

    Default Re: convert from cmyk to grayscale

    You will also run into Black and its percentages changing value when you convert, so you might check this thread:

    rob day, "Export to EPS Changing 100% Black to 91%" #32, 30 Sep 2006 9:33 am </cgi-bin/webx?14@@.3bc1bd72/31>

    Rob
    rob day Guest

  19. #18

    Default Re: convert from cmyk to grayscale

    What if you print grayscale to ps and distill? I do this when I need to make PDFs of bw jobs. I print the black plate only to ps, distill. I get a nice crisp PDF w/o and loss of tone in images.
    Richard_Sohanchyk@adobeforums.com Guest

  20. #19

    Default Re: convert from cmyk to grayscale

    In Acrobat Professional, you can use the PDF Optimizer tool.

    - this seems to work fine - thanks Steve
    Fritha@adobeforums.com Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139