"The following tags were not closed: x:xmpmeta, rdf:RDF"
"The following tags were not closed: x:xmpmeta, rdf:RDF"
Hi,
Looks like there is some issues with converting eps to jpeg (convert.exe XXX.eps yyyy.jpeg). I`v tried to convert this file https://dl.dropboxusercontent.com/u/739 ... raphic.eps to jpeg and got this file https://dl.dropboxusercontent.com/u/7392238/PAPER.jpeg the result file is corrupted with this error "following tags were not closed: x:xmpmeta, rdf:RDF, rdf:Description, xmpTPg:SwatchGroups, rdf:Seq, rdf:li, xmpG:Colorants, rdf:Seq, rdf:li.". If i convert it to png the result file is fine. I'm not sure is that a problem of imagemagick or ghostscript.
Victor
Looks like there is some issues with converting eps to jpeg (convert.exe XXX.eps yyyy.jpeg). I`v tried to convert this file https://dl.dropboxusercontent.com/u/739 ... raphic.eps to jpeg and got this file https://dl.dropboxusercontent.com/u/7392238/PAPER.jpeg the result file is corrupted with this error "following tags were not closed: x:xmpmeta, rdf:RDF, rdf:Description, xmpTPg:SwatchGroups, rdf:Seq, rdf:li, xmpG:Colorants, rdf:Seq, rdf:li.". If i convert it to png the result file is fine. I'm not sure is that a problem of imagemagick or ghostscript.
Victor
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: "The following tags were not closed: x:xmpmeta, rdf:RDF"
What version of IM and what platform? What software shows the errors?
On IM v6.8.6-5 on Windows 7, renaming your file "paper.eps" and doing ...
... Windows Photo Viewer complains that p.jpg is corrupt. However, Gimp and IM's identify and convert can all read it.
All software can read p.png with no problem.
On IM v6.8.6-5 on Windows 7, renaming your file "paper.eps" and doing ...
Code: Select all
convert paper.eps p.jpg
Code: Select all
convert paper.eps paper.png
snibgo's IM pages: im.snibgo.com
Re: "The following tags were not closed: x:xmpmeta, rdf:RDF"
Hi,
This was done with latest version of IM:
And latest version ghostscript - 9.09 on windows 7 machine. This error shows standard windows photo viewer and standard image viewer on windows phone
This was done with latest version of IM:
Code: Select all
C:\Users\Gaploid\Desktop\ImageMagick-6.8.6-9>convert.exe -version
Version: ImageMagick 6.8.6-9 2013-08-17 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2013 ImageMagick Studio LLC
Features: DPC OpenMP
Delegates: bzlib freetype jbig jng jp2 jpeg lcms png ps png tiff webp x xml zlib
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: "The following tags were not closed: x:xmpmeta, rdf:RDF"
I agree that there is a problem. IM should not create a bad JPEG.
jpegtran throws many errors on my p.jpg.
A developer would need to investigate.
jpegtran throws many errors on my p.jpg.
A developer would need to investigate.
snibgo's IM pages: im.snibgo.com
Re: "The following tags were not closed: x:xmpmeta, rdf:RDF"
Thanks any time-frame?
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: "The following tags were not closed: x:xmpmeta, rdf:RDF"
Sorry, I'm not a developer.
A workaround is to save in some other format then read from that format, eg:
(Using .miff as the intermediate format would be faster, but it seems to carry the bad metadata across to the output file.)
Or another simpler workaround:
A workaround is to save in some other format then read from that format, eg:
Code: Select all
convert paper.eps -write temp.png +delete temp.png p2.jpg
Or another simpler workaround:
Code: Select all
convert paper.eps -strip p2.jpg
snibgo's IM pages: im.snibgo.com
Re: "The following tags were not closed: x:xmpmeta, rdf:RDF"
I can just use png as an output. That is fine for me.
Re: "The following tags were not closed: x:xmpmeta, rdf:RDF"
Guys any update on this bug?
Re: "The following tags were not closed: x:xmpmeta, rdf:RDF"
I will take a look at it.