swag-shop/app/services/product/product_helper.py

9 lines
201 B
Python
Raw Permalink Normal View History

import imghdr
def is_base64_jpg(decoded_string) -> bool:
try:
image_type = imghdr.what(None, decoded_string)
return image_type == "jpeg"
except Exception:
return False