Вы можете создать объект Color
(значения должны быть int
с между 0
- 255
или float
с между 0f
- 1f
:
Color c = new Color(red, green, blue, alpha);
Если вы хотите нарисовать изображение этим цветом:
BufferedImage image = new BufferedImage(300, 200, BufferedImage.TYPE_INT_ARGB);
Graphics graphics = image.getGraphics();
graphics.setColor(c);
graphics.fillRect(50, 50, 100, 100);
graphics.dispose();
Если вы хотите установить толькопиксель (цветовая модель должна быть ARGB):
image.setRGB(50, 50, c.getRGB());