I am wanting to create an image from a selection of coordinates i have. So I want each coordinate to be set a particular size and colour say black and 2X2, and then place it at the particular pixel it represents.
How will i go about this?
Will the function putpixel, work for what I want to do?
Thanks in advance
Doing this with
putpixelwill be inconvenient but not impossible. Since you say you want to make dots of more than a single pixel, it would be better to useImageDraw.rectangle()orellipse()instead.For example: