我已经开始使用三元存储和 RDF 来存储图像元数据,但我不明白如何将整数值放入 RDF/XML。
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:exif="http://penkov.me/exif/">
<rdf:Description rdf:about="http://penkov.me/images/0">
<exif:SourceFile>./205CANON/_MG_0538.CR2</exif:SourceFile>
<exif:Make>Canon</exif:Make>
<exif:FocalLength>50</exif:FocalLength>
</rdf:Description>
</rdf:RDF>
我猜50
在<exif:FocalLength>
标签中将被三重存储视为字符串,并且不可能对这个值进行范围查询。