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)
Actually you have to convert it to bytes. You can do it like this.
Also you can check it out the link for more information about that.