One issue I found (or I haven t used it correctly) is that using saveLocation: "file" always causes the photo orientation to be landscape during file upload.
(I d like the photos to be in portrait orientation instead).
I tried to force the orientation to portrait using the config.json setting of:
"orientations": {
"default": "portrait",
"iphone": "portrait",
},
but it didn t fix the issue.
My invocation of getImages is like:
forge.file.getImage({
source: "camera",
saveLocation: "file",
width: 300,
height: 300
}, function (file) { ... }
);
If I remove saveLocation: "file", then the uploaded photos are in portrait orientation.