JavaScript:使用EXIF移动上传之前调整图像方向

时间:2018-07-18 09:26:49

标签: javascript html mobile google-cloud-firestore exif

我正在尝试将图像从移动设备上传到Firestore,但是当图像应该是纵向时,图像方向仍然保持横向。

基本过程:

  • 使用“输入”图像文件上传图像
  • 使用EXIF获取方向并相应地调整为画布
  • 将新画布上传到Firestore

问题:

预览画布时,方向和大小均正确,但是一旦上传到Firestore上,图像仍将保持原始(不正确)方向。

问题:

代码是否有问题?

我仅定向显示而不更改实际的EXIF数据吗?如果是这样,我该如何进行编辑以使其以正确的方向上传?

function readURL(input) {
  if (input.files && input.files[0]) {
    var reader = new FileReader();
    var image = new Image();

    reader.onload = function(e) {
      $('#editImage').attr('src', e.target.result);

      EXIF.getData(input.files[0], function() {
        // Fetch image tag
        // Create canvas
        var canvas = document.createElement("canvas");
        var img = document.createElement("IMG");
        img.setAttribute('src', e.target.result);

        // run orientation on img in canvas
        orientation(img, canvas);
      });
      image.onload = function() {
        // access image size here 
      };
    };
    reader.readAsDataURL(input.files[0]);
    console.log(reader);
  }
}

function orientation(img, canvas) {
  // Set variables
  var ctx = canvas.getContext("2d");
  var exifOrientation = '';

  // Set Width and Height
  var width = img.width;
  var height = img.height;

  var MAX_WIDTH = 600;
  if (width > MAX_WIDTH) {
    height *= MAX_WIDTH / width;
    width = MAX_WIDTH;
  }

  console.log(width);
  console.log(height);

  // Check orientation in EXIF metadatas
  EXIF.getData(img, function() {
    var allMetaData = EXIF.getAllTags(this);
    exifOrientation = allMetaData.Orientation;
    console.log('Exif orientation: ' + exifOrientation);
  });

  // set proper canvas dimensions before transform & export
  if (jQuery.inArray(exifOrientation, [5, 6, 7, 8]) > -1) {
    canvas.width = height;
    canvas.height = width;
  } else {
    canvas.width = width;
    canvas.height = height;
  }

  // transform context before drawing image
  switch (exifOrientation) {
    case 2:
      ctx.transform(-1, 0, 0, 1, width, 0);
      break;
    case 3:
      ctx.transform(-1, 0, 0, -1, width, height);
      break;
    case 4:
      ctx.transform(1, 0, 0, -1, 0, height);
      break;
    case 5:
      ctx.transform(0, 1, 1, 0, 0, 0);
      break;
    case 6:
      ctx.transform(0, 1, -1, 0, height, 0);
      break;
    case 7:
      ctx.transform(0, -1, -1, 0, height, width);
      break;
    case 8:
      ctx.transform(0, -1, 1, 0, 0, width);
      break;
    default:
      ctx.transform(1, 0, 0, 1, 0, 0);
  }

  // Draw img into canvas
  ctx.drawImage(img, 0, 0, width, height);
  console.log(canvas.toDataURL());
  var DataURL = canvas.toDataURL();

  UploadFile(DataURL);
}

1 个答案:

答案 0 :(得分:0)

我面临着同样的问题,我非常高兴分享我如何解决此问题的步骤。

问题:

很少有智能手机,尤其是三星和iPhone在横向模式下拍照。但是浏览器不够智能,无法正确呈现此图像。

分辨率:

步骤1:您可以读取图像EXIF信息,并可以根据方向数据以所需方式渲染图像。为此,“ exif-orientation-image” npm软件包将派上用场。

“ exif-orientation-image”将读取图像文件,并返回具有正确方向的图像的画布。然后,您可以在屏幕上渲染画布。

步骤2:如果要将正确定向的图像上载到服务器,则无需在步骤1中渲染画布,而是将画布转换为数据URL,然后将数据URL转换为文件。并使用此转换后的文件上传到s3存储桶或您正在使用的任何服务器上。