This commit is contained in:
n1474335 2017-05-13 16:08:14 +01:00
parent ad74e6c475
commit 62154309fb
2 changed files with 3 additions and 2 deletions

View File

@ -3348,8 +3348,7 @@ const OperationConfig = {
run: Image.runEXIF,
inputType: "byteArray",
outputType: "string",
args: [
],
args: [],
},
};

View File

@ -12,6 +12,7 @@ import Utils from "../Utils.js";
* @namespace
*/
const Image = {
/**
* Extract EXIF operation.
*
@ -40,6 +41,7 @@ const Image = {
throw "Could not extract EXIF data from image: " + err;
}
},
};
export default Image;