How to make a script to convert RGB to CMYK as black 100%?

Hi guy
my customer sent me a book (144 pages) for print but all of them are RGB and Tiff, she scan them. there are on the page some texts and pictures. The text are R=30 G=30 B=30.I think if I can make a script I will do it very soon to black 100%, but unfortunately I dont know anything to make script 
anybody can help me ?anybody can make it for me ?

We need to know some more information.
1. The book consists of 144 pages, and each page is in fact an RGB image in TIFF format.
    Correct?
    That means, the text is already rasterized, but with low resolution (no more than 300ppi).
    A very bad starting point, in my humble opinion. For offset printing this is not acceptable.
2. Is the printing process offset printing or by digital printing?
Nevertheless we may think about a conversion of these images into CMYK K-only (one plate
per page) . 
a) Increase contrast until R=G=B=0 for text.
b) Convert each image into Grayscale, using a so-called Black-Ink-Profile, for instance
    Black-Ink-ISOCoated-v2-eci (can be explained later)
c) Make empty CMYK image, here for  ISOCoated-v2-eci, and paste the Grayscale into the
    K-channel. All further handling happens as CMYK file for the process ISOCoated-v2-eci.
    Void plates CMY don't matter.
    Post #12 here:
    Re: Colour shift (from CMYK = 0 0 0 20 to Grayscale K = 22 !)
All this can be done by an action (I hope so...).
Much better would be a new start by InDesign with typographical text (K-only vector instead of raster)
with images in RGB or CMYK, taking into account the intended process.
Note: Photoshop can deliver vector text, if exported as PDF.
Best regards --Gernot Hoffmann

Similar Messages

  • How to make iTunes Match not convert my files ALACs in 256 kbps (VBR)? How to get iTunes to convert CDs to Apple loselss?

    How to make iTunes Match not convert my files ALACs in 256 kbps (VBR)? How to get iTunes convert CDs in Apple loselss? The difference between 256 (VBR) and Apple Losless is very clear...

    Dear Michael, good day!
    1. As per your instruction, I turned off iTM.
    Small discrepancy – where are two screens with iTM switch:
    -Settings > iTunes & App Store. 
    -Settings > Music
    I switched OFF in both.
    NB: I turned device to English for convenience.
    2. My next step was Setting > General > Usage – tapped {Music};
    {All music} screen appeared; I swiped it and taped Delete. 
    3. I performed “hard reset” …………………………………..
    4. Switched back On iTM
    5. Taped Music app on Home screen
    iTM has started –  (it took 18 minutes  to completed, 60 mbps Wi-Fi speed )
    Regret to inform… All the same:
    Erase and reset to factory default? Or I did smf wrong?

  • Hi, cannot convert RGB to CMYK...

    I cannot find such an option in the Elements? Can anyone help how can I convert the files to CMYK from RGB using this tool...
    Thanks
    ansu

    Elements can't convert RGB to CMYK. You'd need the full Photoshop.
    Otherwise you can google 'RGB to CMYK' conversion to find online or software tools that can do that.
    The real question is why do you need CMYK. If it's a request from a printer shop, it's their job and responsibility to do the conversion, since such a conversion can only be properly done when you know the specificity of your printing tools, inks and papers.

  • Convert rgb to cmyk in bridge

    I am working on a MAC & Photoshop CS2. I
    need a how-to action for converting RGB
    to CMYK & how to image process it in Bridge.
    Many thanks.

    If you create an RGB>CMYK action in Photoshop you can easily pick images in Bridge and call up a Batch operation from within Bridge...but it's Photoshop doing the work cause Bridge ain't an image processor (as others have said).

  • How to change the document color mode(RGB to CMYK)?

    Kindly advice me how to change the document color mode(RGB to CMYK) via scripting in "illustrator cs3".
    Thanks.

    Somebody wrote and posted this a couple of years ago.
    // Duplicate the selection from the active document into a new document.
    // To invoke the JavaScript debugger, remove comment delimiters
    //$.level = 1; debugger;
    var newItem;
    var docSelected = app.activeDocument.selection;
    if ( docSelected.length > 0 ) {
    // Create a new document and move the selected items to it.
    var newDoc = app.documents.add();
    if ( docSelected.length > 0 ) {
    for ( i = 0; i < docSelected.length; i++ ) {
    docSelected[i].selected = false;
    newItem = docSelected[i].duplicate( newDoc,
    ElementPlacement.PLACEATEND );
    else {
    docSelected.selected = false;
    newItem = docSelected.parent.duplicate( newDoc,
    ElementPlacement.PLACEATEND );
    else {
    alert( "Please select one or more art objects" );
    It should give some ideas about how to proceed.

  • ICC profile to convert RGB to CMYK,   jpeg is ok, png format have a problem

    When I use ICC profile to convert RGB to CMYK, jpeg format is ok, but png format have a problem.the color is lossy.
    It means, the png file color is shallow than jpeg file after convert.Could anybody help me?
    thanks
    source code
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.util.Iterator;
    import javax.imageio.IIOImage;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageTypeSpecifier;
    import javax.imageio.ImageWriteParam;
    import javax.imageio.ImageWriter;
    import javax.imageio.metadata.IIOMetadata;
    import javax.imageio.metadata.IIOMetadataNode;
    import javax.imageio.stream.ImageOutputStream;
    import org.w3c.dom.Node;
    import com.sun.image.codec.jpeg.ImageFormatException;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.sun.image.codec.jpeg.JPEGEncodeParam;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    public class TestImage {
         public static void main(String args[]) throws ImageFormatException, IOException{
              BufferedImage readImage = null;
              try {
                  readImage = ImageIO.read(new File("C:\\TEST.jpg"));
              } catch (Exception e) {
                  e.printStackTrace();
                  readImage = null;
              readImage = CMYKProfile.getInstance().doChColor(readImage);
              writeImage(readImage, "C:\\TEST_after_.jpg", 1.0f);
        protected static String getSuffix(String filename) {
            int i = filename.lastIndexOf('.');
            if(i>0 && i<filename.length()-1) {
                return filename.substring(i+1).toLowerCase();
            return "";
        protected static void writeImage(BufferedImage image, String filename, float quality) {
            Iterator writers = ImageIO.getImageWritersBySuffix(getSuffix(filename));
            System.out.println("filename�F"+filename);
            if (writers.hasNext()) {
                ImageWriter writer = (ImageWriter)writers.next();
                try {
                    ImageOutputStream stream
                        = ImageIO.createImageOutputStream(new File(filename));
                    writer.setOutput(stream);
                    ImageWriteParam param = writer.getDefaultWriteParam();
                    if (param.canWriteCompressed()) {
                        param.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);//NO COMPRESS
                        param.setCompressionQuality(quality);
                    } else {
                        System.out.println("Compression is not supported.");
                    IIOMetadata metadata = null;
                    if(getSuffix(filename).equals("png") || getSuffix(filename).equals("PNG")){
                         ImageTypeSpecifier imageTypeSpecifier = new ImageTypeSpecifier(image);
                         metadata = writer.getDefaultImageMetadata(imageTypeSpecifier, param);
                            String sFormat = "javax_imageio_png_1.0";
                            Node node = metadata.getAsTree(sFormat);
                            IIOMetadataNode gammaNode = new IIOMetadataNode("gAMA");
                            String sGamma = "55556";
                            gammaNode.setAttribute("value", sGamma);
                            node.appendChild(gammaNode);
                            metadata.setFromTree(sFormat, node);
                    writer.write(null, new IIOImage(image, null, metadata), param);
                    writer.dispose();
                    return;
                } catch (IOException ex) {
                    ex.printStackTrace();
    }

    Hi,
    I am having similar problems. I have read somewhere that png format can not handle CMYK colorspace anyway, which I find odd (and plainly stupid IM(NS)HO) which would mean that converting to RGB and therefore using profiles is mandatory.
    May be you should check if the internal format of the png files claims it is RGB or CMYK (using ImageMagick's "identify" command for example).
    HTH
    JG

  • Color converting RGB to CMYK mode???

    Is it possible to convert RGB to CMYK color mode in Elements 10?

    No, not really. If you google around, Richard Lynch had a sort of workaround for this for very early versions of PSE that could possibly be adapted for current use, but a proper CMYK conversion is much more complex, even with the proper tools, than going from sRGB to Adobe RGB, for example.
    If you have a mac you can do a mode conversion in Preview, but you may not like what you get from the print shop using that method.

  • Converting RGB to CMYK color

    Hi All,
    I have few BASIC Questions on converting RGB to CMYK  in Photoshop and Illustrator. Hope could get some professional insights here.
    1, Are all the DTG printers set only in CMYK color mode ?
    2, If there is no difference after viewing RGB image with 'Gamaut Warning' (Photoshop),  Does that mean I'll have the exact print result as monitor view ?
    and Basically no need for CMYK conversion  ?
    3, Please list some the most effective way to convert RGB to CMYK, and keep the final CMYK color result as close as the RGB.
    4, when I simply convert one RGB image to CMYK color, why Ps/AI don't allow me to save as PNG file ?
    ( I save the file as PDF, but I cannot edit this PDF using apple preview app  )
    5, compare Photoshop to Illustrator, which one result better final CMYK color image ?

    Thanks for the detailed reply. Sure clear some of the doubts.
    I just start to draw/design in Photoshop and illustrator, I save my files most as PNG, for a transparent background.
    After I went to officework do the poster printing, I found the color of my print image are not as vivid as Mac preview.
    To be precise, the poster I printed looks like has a very thin grey layer, it is not much noticeable, but it indeed lost some vivid color.  As I want to print out my works and keep color as close exact as Mac preview,  here is the issue of coverting RGB CMYK.
    Please feel free to add for below:
    1, Should I set color space in CMYK before drawing in PS/AI 
    2,  in PS, I convert profile from PNG file to CMYK save as psd file,  that psd file preview exactly same as PNG.
    But when saved as PDF, the file preview a bit grey.  Can someone explain this?
    3, Now im thinking, since CMYK is all about printers, it really should be the profession in printing shop who shall check my image, and edit/convert to the right color space to fit their printers.

  • Script to convert RGB values to CMYK values

    I want a script that can help me convert RGB value to CMYK values.
    I've seen this thread which explains a script to round up and down:
    http://forums.adobe.com/thread/1079041
    but is there a script that i can actually define lets say the colour is yellow and in RGB it looks ok because its in RGB mode so you change it to CMYK and you have 6% - 9% cyan and you only want yellow
    is there a script out there that i can say
    if
    cyan = 6%
    yellow = 80%
    magenta = 0%
    black = 0%
    then change to
    cyan = 0%
    yellow = 80&
    mangenta = 0%
    black = 0%
    I don't mind writting the code for each colour that needs to be converted as it would only need defining once but how would i make this script?
    any clues?

    Hi Carlos,
    I've got a bit further with applescript as i've used it a little but i've got an error this is my code so far:
    tell application "Adobe Illustrator"
              if exists color is equal to "C=0 M=0 Y=0 K=90" then
                        set color to "C=0 M=0 Y=0 K=100"
              end if
    end tell
    The error i'm getting is "can't get color"
    the color is there however i believe i must not be using the correct variable any clues?

  • How to make powershell script.

    How to make script that copy content from notepad to other notepad and reverse the text?

    If you mean a .txt file then there's three aspects to your question.
    Open a file and read the text
    Reverse the text
    Save the text into a new file
    For point one, this technet article is good:
    http://technet.microsoft.com/en-us/library/ee692806.aspx
    For point two you could turn the text into one or more strings, then convert those into arrays, loop through them and then re-assemble them. This article shows you most of that:
    http://technet.microsoft.com/en-us/library/ee692804.aspx
    And finally you need to save that text as a file, there's lots of ways but the Out-File cmdlet is the simplest.
    This might also be of use:
    http://www.ehow.com/how_7174023_write-basic-powershell-script.html

  • How to make AE script folder?

    Hi, i want to ask something about script in after effect CS6. I have many script in my AE and I think its quite difficult to find the script i want. So, how to make script folder in AE or maybe group of script? So if I want to use the script i can find it easier....
    Thank you and sorry for my bad english...

    // create a new FolderItem in project, with name “comps”
    var compFolder = app.project. items.addFolder(“comps”);
    AE CS3 Scripting guide, page 78

  • Launchd: how to make a script run every weekday?

    I'm trying to make a script run every weekday as a LaunchAgent. Is there a way to do this like you could in cron?
    Here is the relevant portion of my LaunchAgent plist:
    <key>StartCalendarInterval</key>
    <dict>
    <key>Hour</key>
    <integer>9</integer>
    <key>Minute</key>
    <integer>0</integer>
    <key>Weekday</key>
    <integer>3</integer>
    </dict>
    I have tried changing the Weekday integer to 1-5 or 1,2,3,4,5 but neither worked. It only works with a single integer. Do I have to create 5 separate plists for each weekday?
    Any ideas?

    Thanks VK, for others who are looking to do something similar, here is the relevant part of the code to make the command run every day (since that field is missing) at 7:00pm and 7:01pm:
    <key>StartCalendarInterval</key>
    <array>
    <dict>
    <key>Hour</key>
    <integer>19</integer>
    <key>Minute</key>
    <integer>00</integer>
    </dict>
    <dict>
    <key>Hour</key>
    <integer>19</integer>
    <key>Minute</key>
    <integer>01</integer>
    </dict>
    </array>

  • How to make a script for find text object?

    Hi everyone
    I want to make a script for find and select text object and then find next, find next, and so on, but without any open dialog
    Is that possible make a script for this?
    app.findGrepPreferences = app.changeGrepPreferences = null;
    app.findGrepPreferences.findWhat = "(\[\x{2022}\])|(\x{25CF})";
    app.findGrep();
    thanks
    Regard

    You already have that. A script does not 'find, select, find next' - it finds all texts as soon as you execute the 'app.findGrep' command.

  • How to make a script for a terminal command

    I need to find instructions on how to create a script to automatically run the following Terminal command;
    Sudo chmod 755 /private/var/spool/cups. It will also need to include the admin password as you will be prompted to enter it after the command line is entered. Apparently the only way to get Quark 7 to print adobe pdf's is to open a terminal window and type the command every time the machine is rebooted. This is a temporary fix and I do not want the MAC users to have to type the command.
    Thanks
    Sal

    This Script works here. Get you the error, when you save or checks the syntax?
    When you use in AppleScript the entry with administrator privileges, is sudo optional. This says only, if everyone can use the sudo command inside of the 5 minutes limit without to write the password again or not.
    The Syntax do shell script "sudo chmod 755 "private/var/spool/cups" password "***" doesn´t work, because you need the entry with administrator privileges for the execution as privileged user.

  • How to make a script for expand column width

    Hi experts,
    Is that possible to make a script for expand the column width aim to let the columns show up all the overset text?
    Regard
    John

    Hi John,
    As Uwe advised it would be wise to put a stop on any while loop in case the condition is never fulfilled which would mean the script will break.
    Without knowing what specifically you are working on you could make the below amendments to do this.
    myTables = app.documents[0].stories.everyItem().tables.everyItem().getElements();
    for (var t = 0; t < myTables.length; t++) {
        BE_resizeColumnsToFitContents(myTables[t], 200);
    function BE_resizeColumnsToFitContents(tableToEdit, tableMaxWidth) {
        for (var i = 0; i < tableToEdit.columns.length; i++) {
            while (tableToEdit.columns[i].overflows === true) {
                if (tableToEdit.width < tableMaxWidth) {
                    tableToEdit.columns[i].width += 1;
                    tableToEdit.columns[i].recompose();
                else {
                    alert("Column " + i + " contents too large for column.");
                    break;
    I won't put any extra functions in this because it might not be what you're after. To use this you just define the table width as a second argument to the function (but you could change this parameter to something else, like page, column or cell width). And, if you want to have a fail action you just put it in the 'else' part.
    Brett

Maybe you are looking for

  • Berkeley DB Java Edition 3.3.62 is available

    All, Berkeley DB Java Edition (JE) 3.3.62 is now available for download at http://www.oracle.com/technology/software/products/berkeley-db/je/index.html . The release contains new features and bug fixes, many in response to questions and requests post

  • How to install Windows 7 from a bootable usb in Mavericks

    I updated to Mavericks (os x 10.9) a few days ago and finding it near impossible to install windows 7 on my macbook pro mid-2010.  I put Windows 7 64 bit on a bootable usb using a windows pc.  Any time I try and use the Boot Camp assistant it gives m

  • Has anyone had a problem with memory cards switching the file from EOS to EKS?

    My camera memory cards have suddenly switched from an EOS file to an EKS file and are no longer readable.  I don't know if the problem is my computer, my card reader, my memory cards, or my camera.  It doesn't seem probable that two cards would becom

  • Is there an underwater case for iPad Air?

    I have read that the LifeProof Nuud works for the other iPads... but am curious of what is avialable for the iPad Air?

  • New G-Tech Drive "Not Readable by Computer"

    Please help ! I bought a brand new G-Tech 1TB drive just 3 months ago. I used it once. No problems. Just fine. Then we moved across the country and this is the first time in 3 months I am revisiting my hard drive. But when I plug it in, all it says i