i have resized an image into "1x1" in order to get the average color using wand library in python but now i want to print the "RGB" values of that resized "1x1" image. i am new to wand so any guidance or help would be really appreciated.this is the code i have written so far.
with Image(filename='E:/Miro/images/test.jpg') as image:
with image.clone() as img:
img.resize(1,1)
i just want to know if there is a function in wand library to access "RGB" values of image.