I have an image in PIL Image format. I need to convert it to byte array.
JavaScript
x
3
1
img = Image.open(fh, mode='r')
2
roiImg = img.crop(box)
3
Now I need the roiImg
as a byte array.
Advertisement
Answer
Thanks everyone for your help.
Finally got it resolved!!
JavaScript
1
9
1
import io
2
3
img = Image.open(fh, mode='r')
4
roi_img = img.crop(box)
5
6
img_byte_arr = io.BytesIO()
7
roi_img.save(img_byte_arr, format='PNG')
8
img_byte_arr = img_byte_arr.getvalue()
9
With this i don’t have to save the cropped image in my hard disc and I’m able to retrieve the byte array from a PIL cropped image.