Answer the question
In order to leave comments, you need to log in
How to generate images from RGB?
There is an excel document with a list of RGB colors in the form of a code.
We need images of these flowers in .jpg / .png format.
How can I do this, maybe there is some specialized software?
Answer the question
In order to leave comments, you need to log in
In any graphic editor. Even Paint will do.
Example for python (previously need pip3.5.exe install Pillow)
from PIL import Image
rgblist = ("00ff00", "ff00ff","aabbcc")
for color in rgblist:
im = Image.new("RGB", (100,100), "#"+color)
im.save( "color-"+color+".png")
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question