Preserve IPTC metadata when using cloudinary.api.resources function
I have tried using this:
cloudinary.api.resources(function(items) {
res.format({
html: function(){
res.render('images', { images: items.resources, cloudname: app.locals.cloud_name, crop: app.locals.crop, keyword: pathname, method: "prefix" });
},
json: function() {
res.json(items.resources);
}
});
}, { type: 'upload', prefix: pathname, max_results: maxresults, image_metadata : true, exif : true });
But the meta data is not being preserved. In the documentation it looks like you can only get the meta data from individual items? Is that correct? Is there a better way to do this?
Thank you!
-
Currently you can retrieve the metadata information of a single image only.
Note that for future images, you can have the image's color profile while uploading.
0 -
Good to know, thanks!
0
Post is closed for comments.
Comments
2 comments