TypeError: a bytes-like object is required, not 'str' while using img2pdf library

1.2k Views Asked by At

While using the img2pdf library I'm getting the above mentioned error, my code looks something like this, this is also the line of code that throws the above mentioned error

pdf = img2pdf.convert('maskedImage'+ filename + '.jpeg')

where filename is a string taken in from the user as form of a url while using flask.

And this is how masked image is being saved using opencv

cv2.imwrite("maskedImage" + filename + ".jpeg", maskedImage)
1

There are 1 best solutions below

1
On

Actually you have to convert it to bytes. You can do it like this.

bytes = string.encode(encoding='UTF-8')

Also you can check it out the link for more information about that.