画像はフォームデザイン内のスタティック画像フィールドオブジェクトにマップされます。以下の属性があります。
xfa:contentType
xfa:href
xfa:transferEncoding
ここでは以下のような宣言の例を紹介します。
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xfa="http://www.adobe.com/2003/xfa">
<xsd:import namespace="http//www.adobe.com/2003/xfa">
<xsd:element name="ImageField">
<xsd:complexType>
<xsd:extension base="xsd:hexBinary">
<xsd:attribute ref="xfa:contentType" fixed="image/jpg"/>
<xsd:attribute ref="xfa:transferEncoding" fixed="base64"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
この場合、属性はフォームデザインへのフィールドの生成に使用されません。属性は画像フィールドに対応する要素を認識するために使用され、属性のデフォルト値または固定値は、生成された
<image>
要素に対して設定されます。
|
|
|