How do I match a pantone color in Photoshop

I need to match a pantone color in CMYK for a shape I need to print can someone help

Adobe Photoshop contains support for the PANTONE COLOR BRIDGE libraries.  PANTONE COLOR BRIDGE is the physical guide which displays a side-by-side match between PANTONE solid colors, and explicit CMYK simulations, including the CMYK values used to print the Guide.  These explicit CMYK values are provided within the PANTONE COLOR BRIDGE libraries.
Adobe CS6 contains native support for the updated PANTONE PLUS SERIES versions of PANTONE COLOR BRIDGE, with the exception of the 336 newest PANTONE colors launched in April 2012.  To access the 336 newest colors for Adobe CS6, or for older versions of the Adobe suite, the libraries can be exported from PANTONE Color Manager software, which is provided free of charge with purchase and registration of any PANTONE PLUS SERIES product.  Details of how to obtain and use PANTONE Color Manager software can be found at http://www.pantone.com/pages/pantone/pantone.aspx?pg=21054&ca=12.  You can also e-mail Pantone support directly at [email protected]
Best regards,
John Stanzione
Manager - Technical Support
Pantone, LLC

Similar Messages

  • How to match the Pantone colors to the Cinema Display...

    Hi, I need to match the pantone colors to my cinema display, how to make it...could anyone help.
    Thanks!

    Thanks for your response--
    I looked at this adapter:
    http://www.mycableshop.com/sku/ADCHD1506.htm
    However, it says this:
    "The adapter cable allows any VGA monitors to be connected to the new dual-display G4 system with ADC video interface. The VGA monitor can be used as the primary display, or as a second display on G4 that supports dual-monitor support. Compatible with GeForce 4 MX, GeForce 4 Ti, Radeon 7500, and Radeon 9000 Pro."
    My graphics card is a ATI Rage 128 Pro. Will it not work, then?
    What is the possibility of adapting the Cinema Display from DVI to ADC?
    Thanks!

  • How can you match an existing color when you are using the Hue/Saturation adjustment layer?

    Hi, I have a student who wants to match the color of a new layer to the exact color of an existing layer. He is using an adjustment layer to "eyeball" the color match, but is there a way to ensure that the match is perfect?

    Depends, John.
    If you're able to create a reasonable selection via Color Range, feathered masking, etc, then by matching one specific color, you'll also be correcting for that entire range of hue. It might have been needed anyway...or you use a color filter to correct the whole image, if it's needed.
    As we all know, each image presents its own specific challenges and solutions.

  • How do I replace 2 pantone colors with 2 new pantone colors globally? I have a 2 PMS logo with many tint variations in it . When I replace PMS in Swatches pallette. The logo does not globally replace the selected color. es

    I have a 2-PMS color logo with many tints in it of the 2 colors. When I replace the  swatches in the logo to new colors, they convert from Book Color to CMYK. Can the printer work with that? How can I kee it a 2-color separation?
    MaryFl

    This is what I understand. You have a logo in a document that uses PMS 'A' and PMS 'B' colors and you want to change to colors PMS 'C' and PMS 'D'. If this is correct there are different ways to do this, but here is a traditional way:
    Make sure Select Same Tint is turned OFF in the Preferences. And all objects are unlocked in the document.
    Get the two PMS (C and D) in the document's Swatches Panel.
    Select PMS 'A' and bring the 'Fill' box in focus.
    From the Select menu choose Same > Fill Color.
    Click on PMS 'C' in Swatches panel to replace all PMS 'A' fills with PMS 'C'.
    Deselect all.
    Again select PMS 'A' and this time bring 'Stroke' box in focus.
    From the Select menu choose Same > Stroke Color.
    Click on PMS 'C' in Swatches panel to replace all PMS 'A' strokes with PMS 'C'.
    Deselect all.
    Similarly using the same approach replace PMS 'B' wit PMS 'D'.
    If you have CS3 / CS4 and the PMS colors in the logo are easily identifiable, you can use Live Color to change the colors pretty easily.
    Hope this helps!
    - Neeraj
    New Note: If there are gradients / blends that use these PMS colors the above approach would not work, but Live Color can.

  • How can I load TPX Pantones into CS6 Photoshop palette?

    I use the Pantone papers for Fashion and Home and want to be able to load/download these into my photoshop palette rather than having to print out my designs and then match them to the papers by going tirelessly through the book. I've looked on the Pantone website and their links are useless and seem to be sending me round in circles. Photoshop seems to have every other type of Pantone pre-loaded apart from the TPX ones I need! Can any one help?

    You would need the ACB files from Pantone for the TPX books, and install those in the Photoshop presets folder.
    Sorry, but there are several of the more obscure Pantone books that we haven't shipped yet. (and it takes quite a bit of time to clean up and validate them all)

  • How to get the foreground/background color in photoshop.

    I want to get the foreground or background color at runtime ( by any action ) in photoshop.
    What steps should I follow.

    For example here is a script I use within Photoshop Actions to save and restore the users foreground and background colors so the action can mess with Photoshops foreground and background colors during its processing.
    SaveAndRestoreColors.jsx
    /* ======================================================================================
    // 2009  John J. McAssey (JJMack)  http://www.mouseprints.net/
    // This script is supplied as is. It is provided as freeware.
    // The author accepts no liability for any problems arising from its use.
    // This script is designed to be used by a Photoshop Action twice
    // A good pratice to use when creating an actions that use this scipt is for the action
    // not to do a save or play some other action between its two useages of this Script.
    // The first time this script is used by an action Photoshops Current Forground
    // and Background Colors are saved into the document's meta-data Info Instructions field.
    // The second time this script used by the action the script retreives what was
    // saved in the meta-data during the first usage and these colors are set.
    // and the saved data is removed from the document's meta-data Info Instructions field.
    // ===================================================================================== */
    <javascriptresource>
    <about>$$$/JavaScripts/SaveAndRestoreColors/About=JJMack's SaveAndRestoreColors.^r^rCopyright 2009 Mouseprints.^r^rRun twice script utility for action.^rNOTE:Don't play other actions between runs!^r^rFirst Run records Photoshops foreground and background swatch colors.^rSecond Run restores the recorded colors and removes the recording.</about>
    <category>JJMack's Action Run Twice Utility</category>
    </javascriptresource>
    if (app.documents.length > 0) {
    if (app.activeDocument.info.instructions.indexOf("<Colorf>") == -1 ){ // no footprint fisrt useage
    //alert("first");
    // Retreive Document information for Foot Print
    saveforeColor = new SolidColor;
    saveforeColor.rgb.red = app.foregroundColor.rgb.red;
    saveforeColor.rgb.green = app.foregroundColor.rgb.green;
    saveforeColor.rgb.blue = app.foregroundColor.rgb.blue;
    savebackColor = new SolidColor;
    savebackColor.rgb.red = app.backgroundColor.rgb.red;
    savebackColor.rgb.green = app.backgroundColor.rgb.green;
    savebackColor.rgb.blue = app.backgroundColor.rgb.blue;
    // put footprint in metadata info instructions
    app.activeDocument.info.instructions = app.activeDocument.info.instructions + "<Colorf>" + saveforeColor.rgb.red + "," + saveforeColor.rgb.green + "," + saveforeColor.rgb.blue + "</Colorf>" + "<Colorb>" + savebackColor.rgb.red + "," + savebackColor.rgb.green + "," + savebackColor.rgb.blue + "</Colorb>";
    //alert( "Saved ="  + "<Colorf>" + saveforeColor.rgb.red + "," + saveforeColor.rgb.green + "," + saveforeColor.rgb.blue + "</Colorf>" + "<Colorb>" + savebackColor.rgb.red + "," + savebackColor.rgb.green + "," + savebackColor.rgb.blue + "</Colorb>");
    else {
    //alert("second");
    // Retreive saved information
    colorfOffset = app.activeDocument.info.instructions.indexOf("<Colorf>") + "<Colorf>".length;
    colorfLength = app.activeDocument.info.instructions.indexOf("</Colorf") -colorfOffset;
    saveforeColor = app.activeDocument.info.instructions.substr(colorfOffset, colorfLength);
    colorbOffset = app.activeDocument.info.instructions.indexOf("<Colorb>") + "<Colorb>".length;
    colorbLength = app.activeDocument.info.instructions.indexOf("</Colorb") -colorbOffset;
    savebackColor = app.activeDocument.info.instructions.substr(colorbOffset, colorbLength);
    //alert("Colorf = " + saveforeColor + " Colorb = " + savebackColor );
    // Restore Colors
    app.foregroundColor.rgb.red = saveforeColor.substr(0,saveforeColor.indexOf(","));
    saveforeColor = saveforeColor.substr(saveforeColor.indexOf(",") + 1,saveforeColor.length);
    app.foregroundColor.rgb.green = saveforeColor.substr(0,saveforeColor.indexOf(","));
    saveforeColor = saveforeColor.substr(saveforeColor.indexOf(",") + 1,saveforeColor.length);
    app.foregroundColor.rgb.blue = saveforeColor ;
    app.backgroundColor.rgb.red = savebackColor.substr(0,savebackColor.indexOf(","));
    savebackColor = savebackColor.substr((savebackColor.indexOf(",") + 1),savebackColor.length);
    app.backgroundColor.rgb.green = savebackColor.substr(0,savebackColor.indexOf(","));
    savebackColor = savebackColor.substr(savebackColor.indexOf(",") + 1,savebackColor.length);
    app.backgroundColor.rgb.blue = savebackColor ;
    // Remove footprint from metadata info instructions
    before = app.activeDocument.info.instructions.substr(0,app.activeDocument.info.instructions.indexO f("<Colorf>"));
    afterOffset = app.activeDocument.info.instructions.indexOf("</Colorb>") + "</Colorb>".length;
    after = app.activeDocument.info.instructions.substr(afterOffset, app.activeDocument.info.instructions.length - afterOffset);
    //alert ("before = " + before + " after = " + after);
    app.activeDocument.info.instructions = before + after;
    else { alert("You must have at least one open document to run this script!"); }

  • How do I convert cymk artwork to pantone colors?

    Is there a quick way to convert all the colors in my artwork from cmyk to pantone process uncoated?
    Also, it seems that the indesign colors for the pantone books are incredibly small, and no way to view a full spectrum of colors. For instance, my browns are only about 6 swatches??? How do I access more pantone colors within a color book?
    Thanks so much!!!

    As yo seem to be working with InDesign, I suggest you to ask this question in the aprropriate forum (that is: InDesign's), where you may get more answers. This is for colour management issues.
    Gustavo

  • Extract Pantone color from the PDF using c#.

    hi i have an requirement to extact pantone color from PDF. So i had decided will  go for acrobat.dll or illustrator library to get pantone and other color from the PDF.Can you please help me out how to proceed and get pantone color from PDF using c#.thanku in advance

    If the PDF has Pantone colors in it, you can use output preview to see it. If you want a Pantone equivalent of a CMYK value you can do this:
    In Illustrator, make a cmyk swatch of the desired color, open the Color Guide panel (Window > Color Guide), then press the Swatch Library button in the panel's lower left corner and choose color books> Pantone+solid coated. Clicking the first color in the Color Harmony section (the Base Color) at the top of the panel will add the closest PMS Spot Color equivalent to your Swatches panel.
    There is often no exact 4/C match for a spot color, but this method will get you in the ballpark.

  • Pantone colors in elements 12?

    Can I access Pantone colors from photoshop elements 12?  If so, how do I do it?  THanks!

    As far as i know the only way is to install the swatches or load the swatches from a folder on your computer and then use the Window>Swatches panel to load the swatches.
    Have you found some panotone swatches for photoshop?
    The swatches for photoshop usually have a .ACO or .ASE extension.

  • Pantone colors

    Hey,
    If I want something to be printed with the exact Pantone color, is it possible?
    I mean, when getting a Pantone color online, you get a false reference because of the screen's colors.
    And when getting a color via Pantone bridge, you can't test it properly at illustrator because again, the screen differs the colors.
    In short, how should I work with Pantone color while making a design for a printing house?
    Furthermore, there are some colors missing using Pantone, am I wrong? I tried getting a very Dark Blue, and couldn't find any Pantone color for it.
    Thanks in advance.

    Illustrator has many swatch libraries built in, with the names and colour values already defined. Just select Windows > Swatch Libraries > Color Books, then the appropriate swatch book. A new panel will appear and you can select the correct swatch there. To get an accurate preview of the swatch you should use a no-shît dead tree Pantone swatch book, which is not cheap, but cheaper than one reprint because you picked the wrong colour.
    You probably want PANTONE solid coated, PANTONE solid matte, or PANTONE solid uncoated.

  • Pantone Color Chart

    How do I add the Pantone color cjart to Adobe Photoshop 10?

    I am not aware that you can add the Pantone chart directly in Elements. However, that chart does provide conversion numbers which can be entered in the color picker.
    http://www.wilcorgraphics.com/ColorCharts1/Index.htm

  • Pantone colors vs. image in Photoshop.

    Hi!
    I need to print this image in only 2 Pantone colors using Photoshop.
    How should I prepare my document?
    Thanks for everything!
    Chris.

    Hi again,
    I think I did Mike's solution (except for the white layer and the dodge and burn)...
    Would that be it? (The final image isn't like the original, though...)
    Thanks again!

  • Can I easily match Pantone colors using Illustrator?

    Hi all,
    I run a small invitation supply company.
    Our primary design tool up until now has been Photoshop Elements.
    We recently purchased a $6000 printer from Xerox which is the 'gold standard' for graphic arts and Pantone approved.
    We also have a pantone color bridge. When I print a color using the hex code, the color looks NOTHING like the pantone swatch.
    I contacted Xerox and they told me that because Elements has a very low degree of color management that we will never be able to easily color match our pantone swatches and that they aren't surprised the color is way off.
    I suppose I naively figured that spending $6000 on a printer would get us easy and flawless color matching. Xerox says- not so.
    They suggested investing in Illustrator and they are convinced that it will be much more likely to get us to the point that we want. Ultimately I want to be able to pick a color from the pantone deck, enter the code, and feel confident that the print will come out 100% the corresponding color.
    Am I living a pipe dream?
    I would like some feedback before proceeding.
    On top of the financial investment, obviously there is a lot of time that my partner and I will have to spend learning Illustrator.
    Any input would be great.
    Thanks,
    Aaron

    Am I living a pipe dream?
    Yes.
    More precisely, you are just failing to understand the fundamental difference between spot color and process color.
    I want to be able to pick a color from the pantone deck, enter the code, and feel confident that the print will come out 100% the corresponding color.
    Not gonna happen, even if you do all the tedious color management setup you can.
    The above assumes you are, in fact, talking about matching Pantone spot colors. (Pantone does not just publish spot color swatches, but that is the usual sense in which beginners refer to Pantone.)
    A spot color is, by definition, an actual, physical, single ink which is loaded into a press. The only way to achieve your 100% pipedream is to load that actual, physical, single ink into your $6000 printer.
    But that's how a printing press works, not how your $6000 printer works. It works by printing four "primary colors" of inks and then arranging tiny dots of them in proximity to each other in order to "trick" the eye into seeing them as a mixture of colors on the page in proportions which try to approximate the spot color as best it can.
    But physical inks are simply not accurate enough to actually do that. There are many, many spot colors which simply cannot be replicated by mixing arrays of primary colors of inks. That's what all this "gamut" talk is about. That's one reason why spot color inks exist.
    The Pantone spot color matching system is a means by which to consistently communicate proportional mixtures of actual, real, physical inks of known specific colors. All anyone (including Pantone) can do with the CMYK inks (or dyes) in a desktop printer is try to recommend percentages of those CMYK inks to best approximate a match to an actual, physical spot color ink.
    It gets worse. Your monitor cannot actually match a spot color ink swatch, either. Your monitor glows. Ink doesn't. Even on tediously calibrated systems, there is more to perceived "color" than just numerical values of CMYK or RGB or HSL or Lab. There is chroma. There is reflectance. There is opacity. There is grain.
    Then there's the whole matter of the incredibly context-sensitive adaptabability of human vision.
    So if you are selling the output of your $6000 printer as the final product, you should not use Pantone spot color swatches as any kind of contract color specification, because your printer cannot actually print spot color inks. If you're doing color-critical work that the customer will refuse when specified colors don't match, you and your customer must specify colors which your device can actually produce.
    JET

  • Showing clients a Pantone color vs. the CMYK match

    Is there a way to show a client a sqaure of a Pantone color with a square of the same color done out of CMYK, and be accurate?  I have some out of state clients that don't have Pantone/CMYK books and have asked this question.  They utilize pantone colors in their logos and we only have CMYK digital presses.  I would like to show them how close of a "match" we can reasonably achieve.  Assuming their monitors are calibrated, is there an accurate way to do this via a PDF proof?
    Thanks.

    Bart's tip is ideal if you have the time to send mail. If there's no time for mail delivery and you typically proof online, lay a sample print and a pantone color chip on a scanner and send them the scanned image over the internets. They'll be able to compare any color shift from both color samples in the same scanned image, even if their monitors are whacked.

  • How to select matching RGB and CMYK colors

    Starting from scratch for a client, how do I select matching RGB and CMYK pairs?
    Say we find a nice red colour in RGB for screen use, how do I then find the correct CMYK for print? And what assumptions do I have to make when doing this, if any?
    Would it be the same for the other way around (choose CMYK first for print and then find the RGB equivalent)
    Is it more sensible to start with a Pantone colour and then find the RGB and CMYK equivalents for that?
    Many thanks
    RobbieG
    (I'm working with Ai, Ps and Id CS6)

    Yes.  Better to start with Pantone reference books where you are viewing the color in a reflective environment.  As already mentioned, color on the monitor can be deceptive.  And, I think the others are basiclt saying that you should have everything calibrated and use color management policies in your apps.  There is a way to find CMYK equivalents using Photoshop's color palette.  Let's say you have an RGB Red as the foreground color in Photoshop.  If you double click on the swatch you will get Photoshop's color palette which lists the RGB percentages, CMYK percentages, LAB percentages, and HEX web color for that Red.  You can go further and select "Custom" and the Pasntone Spot color palette opens and gives you the closest Spot color value for that Red.  This however, depends on your color settings.  That's why I recommend you start with the Pantone swatch book and get the perecentages of CMYK from their formula guide which is set to industry standard color.

Maybe you are looking for

  • Mysql_jdk1.5

    I run a small office network with a java-application to a mysql-backend. This works perfectly with jdk1.4.2 and an assortment of Windows and Linux computers. Trying to switch to jdk1.5 I loose all my swedish characters U+00c5 etc. Mysql feeds iso8859

  • Ipod touch won't turn on, just shows the apple logo - even when plugged into Itunes?

    I have an Ipod touch 8GB - it's virtually never been used. I have tried to charge it up but nothing happens - it just displays an apple logo. I have plugged it into Itunes but again nothing happens. Any ideas? Thanks K.

  • Running FCP HD 4 on Intel Mac?

    Hello Not sure where I should post this.... I recently acquired FCP HD 4 (retail) for a screamin' deal. I was hoping it would run on my Mac Pro. It installed fine but when I try to open it, I get configuration error with hardware/software is missing

  • Adapter Engine Queue

    Hi. I got yhe following error in default trace. ========== Could not get next EOIO QueueMessage from MessageStore. Reason: com.sap.aii.af.ra.ms.api.MessagingException: Error retrieving message from database store. Reason: Could not create Message. Re

  • .vsd application in SAP DMS

    Hi friends, I have .vsd application file to upload in SAP DMS. But SAP DMS does not supports this kind of application. What to do? kindly help me out. Regards, Punam