-
1. Re: Copy CMYK Values
tmyusuf74 Apr 12, 2017 3:50 AM (in response to deekingus)1 person found this helpfulYeah sure! Go to the image menu bar then mode then CMYK marge.
-
2. Re: Copy CMYK Values
c.pfaffenbichler Apr 12, 2017 3:57 AM (in response to deekingus)What exactly do you mean?
Do you want to copy the information in the form of text or as image data (in which case tmyusf74’s post should have should address the issue)?
-
-
-
5. Re: Copy CMYK Values
deekingus Apr 12, 2017 5:01 AM (in response to c.pfaffenbichler)No, there isn't answer
-
6. Re: Copy CMYK Values
c.pfaffenbichler Apr 12, 2017 5:13 AM (in response to deekingus)2 people found this helpfulYou could use a Script:
#target photoshop
var check = app.showColorPicker();
var theColor = "cyan "+app.foregroundColor.cmyk.cyan+"\nmagenta "+app.foregroundColor.cmyk.magenta+"\nyellow "+app.foregroundColor.cmyk.yellow+"\nblack "+app.foregroundColor.cmyk.black;
copyTextToClipboard(theColor);
function copyTextToClipboard( txt ) {
const keyTextData = app.charIDToTypeID('TxtD');
const ktextToClipboardStr = app.stringIDToTypeID( "textToClipboard" );
var textStrDesc = new ActionDescriptor();
textStrDesc.putString( keyTextData, txt );
executeAction( ktextToClipboardStr, textStrDesc, DialogModes.NO );
};
-
7. Re: Copy CMYK Values
c.pfaffenbichler Apr 12, 2017 5:29 AM (in response to deekingus)1 person found this helpfulHow does this not meet your needs?
-
8. Re: Copy CMYK Values
deekingus Apr 12, 2017 5:29 AM (in response to c.pfaffenbichler)Wow !!! c.pfaffenbichler that is exactly what I need! Thanks a lot.... Adobe should to include that function to the Photoshop.
Only one more please, if I may : integers numbers .
-
9. Re: Copy CMYK Values
c.pfaffenbichler Apr 12, 2017 5:30 AM (in response to deekingus)1 person found this helpfulDid you save the code to a jsx-file and put it in Photoshop’s Presets/Scripts-Folder?
-
10. Re: Copy CMYK Values
c.pfaffenbichler Apr 12, 2017 5:46 AM (in response to c.pfaffenbichler)2 people found this helpful#target photoshop
var check = app.showColorPicker();
var theColor = "cyan "+Math.round(app.foregroundColor.cmyk.cyan)+"\nmagenta "+Math.round(app.foregroundColor.cmyk.magenta)+"\nyellow "+Math.round(app.foregroundColor.cmyk.yellow)+"\nblack "+Math.round(app.foregroundColor.cmyk.black);
copyTextToClipboard(theColor);
function copyTextToClipboard( txt ) {
const keyTextData = app.charIDToTypeID('TxtD');
const ktextToClipboardStr = app.stringIDToTypeID( "textToClipboard" );
var textStrDesc = new ActionDescriptor();
textStrDesc.putString( keyTextData, txt );
executeAction( ktextToClipboardStr, textStrDesc, DialogModes.NO );
};
Edit:
Adobe should to include that function to the Photoshop.
Photoshop offers considerable customisability through features like Edit Toolbar, Keyboard Shortcuts and Menus, but also Actions, Scripts (for those familiar with JavaScript, VB or AS), html5-Panels (for those with html-knowledge) and plug-ins (for those familiar with C++) so some features, in particular those that would likely benefit only a small number of Photoshop users, which can be attained by any of those means do not seem very likely to be implemented in Photoshop by default.
-
11. Re: Copy CMYK Values
deekingus Apr 12, 2017 5:51 AM (in response to c.pfaffenbichler)c.pfaffenbichler ! This is incredible. Thank you! Man. The case is closed.
... Why I'am not written here earlier. Where I heave been? ...
-
12. Re: Copy CMYK Values
deekingus Apr 12, 2017 6:12 AM (in response to c.pfaffenbichler)I have changed only the output data, to be clearer for me.
thanks