Image Utility Class


source

handle_string_to_bytes_and_encode

 handle_string_to_bytes_and_encode (data:Union[str,bytes])

source

handle_string_to_bytes_and_decode

 handle_string_to_bytes_and_decode (data:Union[str,bytes])

source

isBase64

 isBase64 (s)

source

Image.from_image_file

 Image.from_image_file (image_path:str)

source

crop_square

 crop_square ()

source

to_bytes

 to_bytes ()
img = Image.from_image_file(image_path="../test/route_sample.png")
img

img.crop_square()

byte_arr = img.to_bytes()

Image.from_bytestr(byte_arr)

Utility Functions


source

are_same_image

 are_same_image (image1, image2)
domo_default_img

img2 = Image.from_image_file("../classes/images/128618865.png")
img2

are_same_image(domo_default_img, img2)
images do not match
False