prevent exif/pnginfo when save to output dir

This commit is contained in:
Qing 2023-05-07 17:13:17 +08:00
parent a899dd3c08
commit 7fcce78e40

View File

@ -125,14 +125,18 @@ def save_image():
input = request.files input = request.files
filename = request.form["filename"] filename = request.form["filename"]
origin_image_bytes = input["image"].read() # RGB origin_image_bytes = input["image"].read() # RGB
image, _ = load_img(origin_image_bytes) ext = get_image_ext(origin_image_bytes)
if image.shape[2] == 3: image, _, exif_infos = load_img(origin_image_bytes, return_exif=True)
image = cv2.cvtColor(image, cv2.COLOR_RGB2BGR)
elif image.shape[2] == 4:
image = cv2.cvtColor(image, cv2.COLOR_RGBA2BGRA)
save_path = os.path.join(output_dir, filename) save_path = os.path.join(output_dir, filename)
cv2.imencode(Path(save_path).suffix, image)[1].tofile(save_path)
img_bytes = pil_to_bytes(
Image.fromarray(image),
ext,
quality=image_quality,
exif_infos=exif_infos,
)
with open(save_path, "wb") as fw:
fw.write(img_bytes)
return "ok", 200 return "ok", 200