2013-10-17 67 views
0

我使用ImageGlue从图像读取Exif数据。 ImageGlue成功获取exif数据并返回一个xml字符串。当我尝试使用一个XMLDocument加载XML字符串,它抛出的错误:XmlDocument.Loadxml System.Xml.XmlException:名称不能以'8'字符开头 - imageglue中的xml

Name cannot begin with the "8" character".

我知道什么是XML的一部分,导致了错误,但我不知道这是否是同一个问题, xml或试图加载的xmldocument对象。 XML在下面,导致错误的标记是最后一个: Industries,Inc.它不喜欢“8298”,如果我删除它,它可以正常工作。 ImageGlue的问题是不是从Exif中生成正确的xml,还是XmlDocument对象(C#)没有正确读取它?

<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?> 
<rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:exif=\"http://ns.adobe.com/exif/1.0/#\"> 
<rdf:Description> 
<dc:date>2013-10-17T14-08-19Z</dc:date> 
<dc:type>image</dc:type> 
<dc:format>image/jpeg</dc:format> 
<dc:source>Photo</dc:source> 
<exif:ImageWidth>4368 pixels</exif:ImageWidth>  
<exif:ImageLength>2912 pixels</exif:ImageLength>  
<exif:BitsPerSample>8,8,8</exif:BitsPerSample> 
<exif:Compression>6</exif:Compression> 
<exif:PhotometricInterpretation>2</exif:PhotometricInterpretation>  
<exif:Model>Canon EOS 5D</exif:Model>  
<exif:Orientation>Normal</exif:Orientation> 
<exif:SamplesPerPixel>3</exif:SamplesPerPixel>  
<exif:XResolution>72 pixels per inch</exif:XResolution>  
<exif:YResolution>72 pixels per inch</exif:YResolution>  
<exif:ResolutionUnit>inch</exif:ResolutionUnit>  
<exif:Software>Adobe Photoshop CS5 Windows</exif:Software>  
<exif:DateTime>2013:10:16 10:42:48</exif:DateTime>  
<exif:Artist>bobbi </exif:Artist>  
<exif:ThumbnailOffset>838</exif:ThumbnailOffset> 
<exif:ThumbnailLength>6049</exif:ThumbnailLength> 
<exif:Tag 8298>Industries, Inc.</exif:Tag 8298> 

回答

4

这是无效的XML - 这是ImageGlue不能生成正确的XML。它试图使用“Tag 8298”的XML标签名称,但该空间不起作用,这意味着8298被解释为属性名称,该名称不能以数字开头。

+0

谢谢,标示为答案! – TheRedDwarf

相关问题