HTML5 - resize image and keep EXIF in resized image

后端 未结 4 618
一生所求
一生所求 2020-12-16 01:31

How can I resize an image (using an HTML5 canvas element) and keep the EXIF information from the original image? I can extract EXIF info from from original imag

4条回答
  •  一整个雨季
    2020-12-16 01:59

    Canvas generates images with 20 bytes header (before jpeg data segments start). You can slice head with exif segments from original file and replace first 20 bytes in resized one.

提交回复
热议问题