最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Is it possible to modify the exif data of an image taken from Canvas in HTML5? - Stack Overflow

programmeradmin0浏览0评论

I was trying to modify the dpi header of an image in the exif data. I know it can be done in native iOS/Android scenario. But is it possible to do in Javascript for the images retrieved from Canvas. Please suggest. Thanks

I was trying to modify the dpi header of an image in the exif data. I know it can be done in native iOS/Android scenario. But is it possible to do in Javascript for the images retrieved from Canvas. Please suggest. Thanks

Share asked Oct 27, 2015 at 6:43 thegeekthegeek 1272 silver badges7 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 5

Try canvas sample in piexifjs.

  1. Get exif binary.
  2. Get jpeg from canvas.
  3. Insert exif binary into jpeg.

    // make exif data
    var zerothIfd = {};
    var exifIfd = {};
    var gpsIfd = {};
    zerothIfd[piexif.ImageIFD.Make] = "Maker Name";
    zerothIfd[piexif.ImageIFD.XResolution] = [777, 1];
    zerothIfd[piexif.ImageIFD.YResolution] = [777, 1];
    zerothIfd[piexif.ImageIFD.Software] = "Piexifjs";
    exifIfd[piexif.ExifIFD.DateTimeOriginal] = "2010:10:10 10:10:10";
    exifIfd[piexif.ExifIFD.LensMake] = "Lens Maker";
    exifIfd[piexif.ExifIFD.Sharpness] = 777;
    exifIfd[piexif.ExifIFD.LensSpecification] = [[1, 1], [1, 1], [1, 1], [1, 1]];
    gpsIfd[piexif.GPSIFD.GPSVersionID] = [7, 7, 7, 7];
    gpsIfd[piexif.GPSIFD.GPSDateStamp] = "1999:99:99 99:99:99";
    var exifObj = {"0th":zerothIfd, "Exif":exifIfd, "GPS":gpsIfd};
    
    // get exif binary as "string" type
    var exifBytes = piexif.dump(exifObj);
    
    // get JPEG image from canvas
    var jpegData = document.getElementById("canvas").toDataURL("image/jpeg", 1.0);
    
    // insert exif binary into JPEG binary(DataURL)
    var exifModified = piexif.insert(exifBytes, jpegData);
    

Yes it is passible,

  1. You need to convert canvas to blob (file)
  2. You need to convert blob to DataView
  3. You need to find exif data in dataview, and exif tag position in dataview (offset)
  4. You need to replace data in dataview by dataView.setUint8(offset, value, bigEndian);
  5. convert dataview to base64 or image or blob

Exif is a binary data so, you will convert your dpi to binary and put it to dataview

You can use or see code in ExifRestorer.js and exif.js. First link is for insert exif data, second is for parse exif data

发布评论

评论列表(0)

  1. 暂无评论