Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update imagemagick.js
Also return path value to the callback so that the logical position of the identified file can be accessed in the callback method
  • Loading branch information
soupdiver committed Mar 7, 2013
commit 9fe98f46f7da3250dcf838fc6f8d4ae4cccb6d20
1 change: 1 addition & 0 deletions imagemagick.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ exports.readMetadata = function(path, callback) {
else meta[typekey][key] = value;
})
}
meta.path = path;
callback(err, meta);
});
}
Expand Down