i am using putpixel operation on image (srcImage) which is w = 134 and h = 454
The code here gets r,g,b value of part of the font which is 0,255,0 which i found through debugging (using print option).
image = letters['H']
r,g,b = image.getpixel((1,1)) *Note r g b values are 0, 255,0*
srcImage.putpixel((10,15),(r,g,b))
srcImage.save('lolmini2.jpg')
This code is not giving any error but when i look at the saved image i cannot spot the pure green pixel.