Sample Inverse Color in PhotoshopIs there a way to sample metallic paint?Match web color to fabric...
Random point on a sphere
How to say "quirky" in German without sounding derogatory?
Should I leave the first authorship of our paper to the student who did the project whereas I solved it?
Modify width of first column in file with a variable number of fields, using awk
How can I locate a missing person abroad?
Parallel resistance in electric circuits
How is Team Scooby Doo (Mystery Inc.) funded?
Have there been any countries that voted themselves out of existence?
Is low emotional intelligence associated with right-wing and prejudiced attitudes?
Why does Coq include let-expressions in its core language
Is there a reliable way to hide/convey a message in vocal expressions (speech, song,...)
Mean π: Archimedes vs. Gauss - π computation through generalized means
Is there a real-world mythological counterpart to WoW's "kill your gods for power" theme?
How to help my 2.5-year-old daughter take her medicine when she refuses to?
Has SHA256 been broken by Treadwell Stanton DuPont?
Do my friendships grow, even if I cannot progress the story?
How can I discourage sharing internal API keys within a company?
Why do sellers care about down payments?
Do they still use tiger roars in the 2019 "Lion King" movie?
A medieval fantasy adventurer lights a torch in a 100% pure oxygen room. What happens?
Why did it become so much more expensive to start a university?
I asked for a graduate student position from a professor. He replied "welcome". What does that mean?
How are chord ratios developed exactly?
A shy person in a queue
Sample Inverse Color in Photoshop
Is there a way to sample metallic paint?Match web color to fabric swatchCreating texture from a sample in photoshopgimp change colors in 2-color imageWhat is the proper way to perform color replacementIllustrator: How to create a swatch by combining two colors?How to match color in Adobe Illustrator?gimp changed my image color after using color to alphaHow to calculate the RGB color values with a given alpha value for mixing with another color to achieve a target color?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I'm looking for a way to quickly get the inverse of a color into the foreground or background color swatch. Ideally, I would like to use the eyedropper to sample a color from an image, but have the sample be the inverted color. For instance, were I to use the eyedropper to sample #0ff000 from an image, I would like #f00fff to be the color that gets stored in the swatch.
Can this be done? If not, is there some approximation that would get me the same result quickly?
adobe-photoshop color
add a comment
|
I'm looking for a way to quickly get the inverse of a color into the foreground or background color swatch. Ideally, I would like to use the eyedropper to sample a color from an image, but have the sample be the inverted color. For instance, were I to use the eyedropper to sample #0ff000 from an image, I would like #f00fff to be the color that gets stored in the swatch.
Can this be done? If not, is there some approximation that would get me the same result quickly?
adobe-photoshop color
add a comment
|
I'm looking for a way to quickly get the inverse of a color into the foreground or background color swatch. Ideally, I would like to use the eyedropper to sample a color from an image, but have the sample be the inverted color. For instance, were I to use the eyedropper to sample #0ff000 from an image, I would like #f00fff to be the color that gets stored in the swatch.
Can this be done? If not, is there some approximation that would get me the same result quickly?
adobe-photoshop color
I'm looking for a way to quickly get the inverse of a color into the foreground or background color swatch. Ideally, I would like to use the eyedropper to sample a color from an image, but have the sample be the inverted color. For instance, were I to use the eyedropper to sample #0ff000 from an image, I would like #f00fff to be the color that gets stored in the swatch.
Can this be done? If not, is there some approximation that would get me the same result quickly?
adobe-photoshop color
adobe-photoshop color
asked 9 hours ago
bubblekingbubbleking
1225 bronze badges
1225 bronze badges
add a comment
|
add a comment
|
2 Answers
2
active
oldest
votes
As a hacky solution, you could do this:
- Pick your color using the Eyedropper Tool.
- Fill the image with the color using Alt + Backspace.
- Invert the color using Ctrl / Cmd + I.
- Pick the inverted color using the Eyedropper Tool.
- Undo two times by pressing Ctrl / Cmd + Z two times.
That's two clicks and four keyboard shortcuts. Don't think I could do it any simpler.
There's a caveat to that; you have to have a pixel layer selected in the layers panel... or, at least, it can't be a text layer or (maybe) some other types of non-pixel layers.
– bubbleking
8 hours ago
1
@bubbleking, true! But you could use this idea to make an action which will work in all cases if you add a new layer which you remove again afterwards.
– Wolff
8 hours ago
Well, it took a bit of finagling to get the eyedropper working properly (see designeasy.co/2018/08/how-to-sample-color-from-image-in.html), and I'd never made an action before, but I made it work, so problem solved!
– bubbleking
5 hours ago
add a comment
|
This can be done with a very simple script:
var color = app.foregroundColor;
color.hsb.hue = color.hsb.hue < 180 ? color.hsb.hue + 180 : color.hsb.hue - 180;
app.foregroundColor = color;
save this as a .jsx file to Your Photoshop Folder/Presets/Scripts/ folder and after PS restart it'll be available in File > Scripts > name_you_gave and you can assign it to a shortcut or write an Action with it. This way after calling the script your foreground color will be changed to an inverted color (in RGB model)
+1 My answer bows before your answer...
– Wolff
2 hours ago
add a comment
|
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "174"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgraphicdesign.stackexchange.com%2fquestions%2f129491%2fsample-inverse-color-in-photoshop%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
As a hacky solution, you could do this:
- Pick your color using the Eyedropper Tool.
- Fill the image with the color using Alt + Backspace.
- Invert the color using Ctrl / Cmd + I.
- Pick the inverted color using the Eyedropper Tool.
- Undo two times by pressing Ctrl / Cmd + Z two times.
That's two clicks and four keyboard shortcuts. Don't think I could do it any simpler.
There's a caveat to that; you have to have a pixel layer selected in the layers panel... or, at least, it can't be a text layer or (maybe) some other types of non-pixel layers.
– bubbleking
8 hours ago
1
@bubbleking, true! But you could use this idea to make an action which will work in all cases if you add a new layer which you remove again afterwards.
– Wolff
8 hours ago
Well, it took a bit of finagling to get the eyedropper working properly (see designeasy.co/2018/08/how-to-sample-color-from-image-in.html), and I'd never made an action before, but I made it work, so problem solved!
– bubbleking
5 hours ago
add a comment
|
As a hacky solution, you could do this:
- Pick your color using the Eyedropper Tool.
- Fill the image with the color using Alt + Backspace.
- Invert the color using Ctrl / Cmd + I.
- Pick the inverted color using the Eyedropper Tool.
- Undo two times by pressing Ctrl / Cmd + Z two times.
That's two clicks and four keyboard shortcuts. Don't think I could do it any simpler.
There's a caveat to that; you have to have a pixel layer selected in the layers panel... or, at least, it can't be a text layer or (maybe) some other types of non-pixel layers.
– bubbleking
8 hours ago
1
@bubbleking, true! But you could use this idea to make an action which will work in all cases if you add a new layer which you remove again afterwards.
– Wolff
8 hours ago
Well, it took a bit of finagling to get the eyedropper working properly (see designeasy.co/2018/08/how-to-sample-color-from-image-in.html), and I'd never made an action before, but I made it work, so problem solved!
– bubbleking
5 hours ago
add a comment
|
As a hacky solution, you could do this:
- Pick your color using the Eyedropper Tool.
- Fill the image with the color using Alt + Backspace.
- Invert the color using Ctrl / Cmd + I.
- Pick the inverted color using the Eyedropper Tool.
- Undo two times by pressing Ctrl / Cmd + Z two times.
That's two clicks and four keyboard shortcuts. Don't think I could do it any simpler.
As a hacky solution, you could do this:
- Pick your color using the Eyedropper Tool.
- Fill the image with the color using Alt + Backspace.
- Invert the color using Ctrl / Cmd + I.
- Pick the inverted color using the Eyedropper Tool.
- Undo two times by pressing Ctrl / Cmd + Z two times.
That's two clicks and four keyboard shortcuts. Don't think I could do it any simpler.
answered 9 hours ago
WolffWolff
4,5891 gold badge7 silver badges22 bronze badges
4,5891 gold badge7 silver badges22 bronze badges
There's a caveat to that; you have to have a pixel layer selected in the layers panel... or, at least, it can't be a text layer or (maybe) some other types of non-pixel layers.
– bubbleking
8 hours ago
1
@bubbleking, true! But you could use this idea to make an action which will work in all cases if you add a new layer which you remove again afterwards.
– Wolff
8 hours ago
Well, it took a bit of finagling to get the eyedropper working properly (see designeasy.co/2018/08/how-to-sample-color-from-image-in.html), and I'd never made an action before, but I made it work, so problem solved!
– bubbleking
5 hours ago
add a comment
|
There's a caveat to that; you have to have a pixel layer selected in the layers panel... or, at least, it can't be a text layer or (maybe) some other types of non-pixel layers.
– bubbleking
8 hours ago
1
@bubbleking, true! But you could use this idea to make an action which will work in all cases if you add a new layer which you remove again afterwards.
– Wolff
8 hours ago
Well, it took a bit of finagling to get the eyedropper working properly (see designeasy.co/2018/08/how-to-sample-color-from-image-in.html), and I'd never made an action before, but I made it work, so problem solved!
– bubbleking
5 hours ago
There's a caveat to that; you have to have a pixel layer selected in the layers panel... or, at least, it can't be a text layer or (maybe) some other types of non-pixel layers.
– bubbleking
8 hours ago
There's a caveat to that; you have to have a pixel layer selected in the layers panel... or, at least, it can't be a text layer or (maybe) some other types of non-pixel layers.
– bubbleking
8 hours ago
1
1
@bubbleking, true! But you could use this idea to make an action which will work in all cases if you add a new layer which you remove again afterwards.
– Wolff
8 hours ago
@bubbleking, true! But you could use this idea to make an action which will work in all cases if you add a new layer which you remove again afterwards.
– Wolff
8 hours ago
Well, it took a bit of finagling to get the eyedropper working properly (see designeasy.co/2018/08/how-to-sample-color-from-image-in.html), and I'd never made an action before, but I made it work, so problem solved!
– bubbleking
5 hours ago
Well, it took a bit of finagling to get the eyedropper working properly (see designeasy.co/2018/08/how-to-sample-color-from-image-in.html), and I'd never made an action before, but I made it work, so problem solved!
– bubbleking
5 hours ago
add a comment
|
This can be done with a very simple script:
var color = app.foregroundColor;
color.hsb.hue = color.hsb.hue < 180 ? color.hsb.hue + 180 : color.hsb.hue - 180;
app.foregroundColor = color;
save this as a .jsx file to Your Photoshop Folder/Presets/Scripts/ folder and after PS restart it'll be available in File > Scripts > name_you_gave and you can assign it to a shortcut or write an Action with it. This way after calling the script your foreground color will be changed to an inverted color (in RGB model)
+1 My answer bows before your answer...
– Wolff
2 hours ago
add a comment
|
This can be done with a very simple script:
var color = app.foregroundColor;
color.hsb.hue = color.hsb.hue < 180 ? color.hsb.hue + 180 : color.hsb.hue - 180;
app.foregroundColor = color;
save this as a .jsx file to Your Photoshop Folder/Presets/Scripts/ folder and after PS restart it'll be available in File > Scripts > name_you_gave and you can assign it to a shortcut or write an Action with it. This way after calling the script your foreground color will be changed to an inverted color (in RGB model)
+1 My answer bows before your answer...
– Wolff
2 hours ago
add a comment
|
This can be done with a very simple script:
var color = app.foregroundColor;
color.hsb.hue = color.hsb.hue < 180 ? color.hsb.hue + 180 : color.hsb.hue - 180;
app.foregroundColor = color;
save this as a .jsx file to Your Photoshop Folder/Presets/Scripts/ folder and after PS restart it'll be available in File > Scripts > name_you_gave and you can assign it to a shortcut or write an Action with it. This way after calling the script your foreground color will be changed to an inverted color (in RGB model)
This can be done with a very simple script:
var color = app.foregroundColor;
color.hsb.hue = color.hsb.hue < 180 ? color.hsb.hue + 180 : color.hsb.hue - 180;
app.foregroundColor = color;
save this as a .jsx file to Your Photoshop Folder/Presets/Scripts/ folder and after PS restart it'll be available in File > Scripts > name_you_gave and you can assign it to a shortcut or write an Action with it. This way after calling the script your foreground color will be changed to an inverted color (in RGB model)
answered 3 hours ago
Sergey KritskiySergey Kritskiy
1,6841 gold badge4 silver badges12 bronze badges
1,6841 gold badge4 silver badges12 bronze badges
+1 My answer bows before your answer...
– Wolff
2 hours ago
add a comment
|
+1 My answer bows before your answer...
– Wolff
2 hours ago
+1 My answer bows before your answer...
– Wolff
2 hours ago
+1 My answer bows before your answer...
– Wolff
2 hours ago
add a comment
|
Thanks for contributing an answer to Graphic Design Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgraphicdesign.stackexchange.com%2fquestions%2f129491%2fsample-inverse-color-in-photoshop%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown