AVB

|
Posted: Sun Sep 30, 2007 13:56 Post subject: |
|
|
| Alextp wrote: | Добавлена поддержка FB2.
У кого-нибудь есть процедура декодирования <binary></binary> тегов из FB2, чтобы показывать картинку в FB2? |
Спасибо за FB2
Возможно, этот кусок из описания схемы fb2 Вам поможет "победить" картинки?
<xs:element name="binary" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Any binary data that is required for the presentation of this book in base64 format. Currently only images are used.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:base64Binary">
<xs:attribute name="content-type" type="xs:string" use="required"/>
<xs:attribute name="id" type="xs:ID" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element> _________________ С уважением, Алекс.
Last edited by AVB on Sun Sep 30, 2007 14:06; edited 1 time in total |
|