Changing Colors And Hues

Can I, In Java, Change the color of a picture to a specific color of another picture? like I got two pictures, one in orange and one got blue and brown, I want to change the hues of the blue and brown picture to make the dominated color of the orange picture its color. Like A Sword From A Game, I want to change the color of that blue sword to orange and generate the png
57 Replies
JavaBot
JavaBot4w ago
This post has been reserved for your question.
Hey @MDT 168! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
dan1st
dan1st4w ago
Do you want to change the color of an individual pixel? Or do you want to change the averag hue?
MDT 168
MDT 168OP4w ago
Like the average hue
Context:

I am a modder and I made a generator to help me add stuff easier. So I am trying to make a generator from the image on an ingot (mineral) it will see the color and change the color of all diamond tools into that color then writes the png into a path I define
Context:

I am a modder and I made a generator to help me add stuff easier. So I am trying to make a generator from the image on an ingot (mineral) it will see the color and change the color of all diamond tools into that color then writes the png into a path I define
dan1st
dan1st4w ago
If you want to change the average hue from image A to the average hue of image B, you can do the following: - You calculate the average hues of A and B - You divide the average hue of B by the average hue of A - For every pixel of A, you multiply the hue with that - You clamp the result to ensure it doesn't go out of bounds Do you want to do it programmatically or not?
MDT 168
MDT 168OP4w ago
So you mean I get the RGB for the hues, the width and the height to clamp?
dan1st
dan1st4w ago
I meant HSV and not RGB
MDT 168
MDT 168OP4w ago
Oh okay. Because when I tried doing it I used RGB
dan1st
dan1st4w ago
then the hue is the first component and when I said clamping, I meant ensuring it doesn't go above 255
MDT 168
MDT 168OP4w ago
Aha.
dan1st
dan1st4w ago
You do want to do it programmatically, right?
MDT 168
MDT 168OP4w ago
Yeah. What else?
dan1st
dan1st4w ago
well if you just want to do it on a few images, you could just do it in Gimp or similar though note that multiplication might not be ideal
MDT 168
MDT 168OP4w ago
Well. I use it on 5 images each time I run the program
dan1st
dan1st4w ago
adding might be better - or maybe you'd need another operation
MDT 168
MDT 168OP4w ago
I generate 5 images. From 1 image
dan1st
dan1st4w ago
Why every time you run the program? Isn't the input image always the same?
MDT 168
MDT 168OP4w ago
No. The Input image changes when I want to generate other images
dan1st
dan1st4w ago
yeah I thought about just changing the color balance in gimp or similar lol
No description
MDT 168
MDT 168OP4w ago
But I thought of other way. I can open a pixel editor and change the hues till I find the appropriate one. Then just make a program that changes the hue of an image by passing in an array with paths and the new hue like 0.8 But that won't be fully automated but why not.
dan1st
dan1st4w ago
well the images contain many different colors, right?
MDT 168
MDT 168OP4w ago
No.
dan1st
dan1st4w ago
oh? Do you just want to replace a single color?
MDT 168
MDT 168OP4w ago
Like I got an image containing an Aluminum Ingot Pixel Art. Mostly Light Grey. And I got tools that is mostly blue. I want to change those blue to mostly light grey. Like it's different shades of blue, such as cyan and darker versions of cyan So all stuff are one color but different shades So I just want to change the color of the tools to like the ingot
dan1st
dan1st4w ago
yeah get the image as hsv and then the hue (h) value should be the same for all relevant pixels (if the color is actually the same) and then you can just change that hue value to whatever you like
MDT 168
MDT 168OP4w ago
Well I am not on my laptop right now so I can't really check. Is there a method to get that in The BufferedImage class?
dan1st
dan1st4w ago
I think BufferedImageOp/ColorConvertOp can be used for that
MDT 168
MDT 168OP4w ago
Oh well I think I need to get the RGB then convert it to HSV image.getRGB(x, y) inside of a nested loop for x and y. Color color = new Color(rgb) rbg is a variable storing that image.getRGB(x, y) float[] hsv = Color.RGBtoHSB(color.getRed(), color.getGreen(), color.getBlue(), null); Idk if I am spitting non-sense Dude I just found out how to use it. Just get the HSV. Change the Hue value. Turn it back to RGB. Put the RGB of the image to the new RGB hsv[0] is the hue. So I can shift it by adding the shift amount. hsv[0] += 0.5f
dan1st
dan1st4w ago
should be fine
MDT 168
MDT 168OP4w ago
Then returning it to RGB using the Color class HSBtoRGB method.
dan1st
dan1st4w ago
yes
MDT 168
MDT 168OP4w ago
Then using the ImageIO class to write the new png Gosh I talk a lot
dan1st
dan1st4w ago
though you might have the case that the hue is not exactly the same
MDT 168
MDT 168OP4w ago
Okay Thanks dan1st
JavaBot
JavaBot4w ago
If you are finished with your post, please close it. If you are not, please ignore this message. Note that you will not be able to send further messages here after this post have been closed but you will be able to create new posts.
dan1st
dan1st4w ago
e.g. 123 vs 124
MDT 168
MDT 168OP4w ago
What?
dan1st
dan1st4w ago
if you have two pixels with different lightness, it could be that the hue of one is 0.123 and the other is .124 you'd probably want to consider these as the same hue
MDT 168
MDT 168OP4w ago
But when I change the hue. I want the same lightness to be there Like when I change it to grey. I don't want the whole image grey or something. I want only to change the color to grey with the lightness the same
dan1st
dan1st4w ago
yes but there may be some numerical precision issues in the RGB to HSB conversion so you might end up with numbers that are almost the same but not exactly
MDT 168
MDT 168OP4w ago
Like I want that light blue to be light grey. And that dark blue to be dark grey
No description
MDT 168
MDT 168OP4w ago
Sooo is it an issue?
dan1st
dan1st4w ago
you should be aware of it when implementing it
MDT 168
MDT 168OP4w ago
Okay. I would try the first way of getting the HSV then making some conversions. If it didn't work, I will just manually figure out the needed hue then make a method to change the hue of an Image
dan1st
dan1st4w ago
Note: If you are working with int values, these are typically between 0 and 255 - for floats, they are typically between 0 and 1 and I think a hue of 0 is (practically) the same as a hue of 1 because of how hue works
MDT 168
MDT 168OP4w ago
Yeah I found out about something called Alpha and stuff. If it was 0 the pixel is transparent. Like when you use a background remover Idk if they are the same as you are talking about Yeah. I know that
dan1st
dan1st4w ago
yeah but I think you don't need it if you don't have transparent images
MDT 168
MDT 168OP4w ago
All of my images got transparent pixels ;—;
dan1st
dan1st4w ago
then you should use RGBA and HSVA
MDT 168
MDT 168OP4w ago
This image is transparent but I changed it to send it on telegram then here
dan1st
dan1st4w ago
or just save the alpha, use the RGB/HSV ignoring the alpha and then use the same alpha again
dan1st
dan1st4w ago
I wouldn't have seen a difference
No description
MDT 168
MDT 168OP4w ago
Lol. I am in Dark mode that is why Well. Thanks for the Help Daniel. I will try both ways.
JavaBot
JavaBot4w ago
If you are finished with your post, please close it. If you are not, please ignore this message. Note that you will not be able to send further messages here after this post have been closed but you will be able to create new posts.
MDT 168
MDT 168OP4w ago
The Help Forum is marked as Minecraft modding. So the tools and the stuff are Minecraft stuff. That is why they are transparent
dan1st
dan1st4w ago
I have no idea about Minecraft modding lol
MDT 168
MDT 168OP4w ago
They are just textures 🙂 Okay have a great day/night
JavaBot
JavaBot4w ago
Post Closed
This post has been closed by <@1021759889623756852>.

Did you find this page helpful?