We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aca6129 commit 6a6b245Copy full SHA for 6a6b245
1 file changed
test/test.js
@@ -823,6 +823,14 @@
823
})
824
825
826
+ it('Should parse Iptc information', function (done) {
827
+ loadImage.parseMetaData(blobJPEG, function (data) {
828
+ expect(data.iptc).to.be.ok
829
+ expect(data.iptc.get('ObjectName')).to.equal('objectname')
830
+ done()
831
+ })
832
833
+
834
it('Should parse the complete image head', function (done) {
835
loadImage.parseMetaData(blobJPEG, function (data) {
836
expect(data.imageHead).to.be.ok
0 commit comments