I have a working bash script which extracts raw data from an image. I'm converting this script into JS (node.js) and am having trouble converting a piped command into its components to translate into javascript. The exiftool command works (as far as I can tell, and the error occurs at the first convert function.
Working bash pipe:
exiftool $F -b -RawThermalImage | convert - gray:- | convert -depth 16 -endian lsb -size $Resolution gray:- $F-RAW.tiff
Current (not working) javascript:
const execFile = require('child_process').execFile;
const exiftool = require('dist-exiftool');
const im = require('imagemagick');
execFile(exiftool, ['file.jpg', '-b', '-RawThermalImage', '-w', '-raw.jpg'], (error) => {
if (err) throw "Error extracting RawThermalImage. Unsupported filetype.";
im.convert(['file-raw.jpg', 'gray', 'file-raw.jpg'], function(err, stdout){
if (err) throw err;
console.log('stdout:', stdout);
im.convert(['file-raw.jpg', '-depth', '16', 'endian', 'lsb', '-size', resolution, 'gray', 'file-raw.jpg'], function(err, stdout){
if (err) throw err;
console.log('stdout:', stdout);
});
});
});
My issue was with Azure and not with Nodejs.
im.convert(['raw.tiff', 'gray:raw.gray']...
works perfectly. For anyone having this issue with Azure imagemagick not working, the only distribution that working in Azure functions is here. Thanks to @fmw42