pull/1210/head
KUNJ SHAH 2025-05-05 13:19:46 +00:00
parent fe4a87e8f2
commit a64940def7
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ def imwrite_unicode(path, img, params=None):
if not ext:
ext = ".png"
result, encoded_img = cv2.imencode(ext, img, params if params else [])
if result:
result, encoded_img = cv2.imencode(f".{ext}", img, params if params is not None else [])
encoded_img.tofile(path)
return True
return False