Tools, FAQ, Tutorials:
What Is OPF
What is OPF?
✍: FYIcenter.com
OPF (Open Packaging Format) is a
standard that is a part of the EPUB eBook specification. The OPF files
store information for an associated eBook including the title of the
eBook, the eBook language, creator, reading order and book ID. The OPF
file is included in the EPUB archive to specify the metadata of the
associated eBook. The OPF files are saved in XML format.
Here is an example of OPF file used in an EPUB ZIP file:
<?xml version="1.0" encoding="UTF-8"?>
<!-- Hello.opf
Copyright (c) FYIcenter.com
-->
<package xmlns="http://www.idpf.org/2007/opf" version="3.0"
unique-identifier="id">
<metadata xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/">
<dc:title>Hello</dc:title>
<dc:identifier id="id">fyicenter.com.epub.hello</dc:identifier>
<dc:language>en-US</dc:language>
<meta property="dcterms:modified">2018-04-01T00:00:00Z</meta>
</metadata>
<manifest>
<item id="toc" href="/toc.xhtml" media-type="application/xhtml+xml"
properties="nav"/>
<item id="body" href="/body.xhtml" media-type="application/xhtml+xml"/>
</manifest>
<spine>
<itemref idref="toc"/>
<itemref idref="body"/>
</spine>
</package>
2022-07-26, ∼2375🔥, 0💬
Popular Posts:
What's Wrong with "while ($c=fgetc($f)) {}" in PHP? If you are using "while ($c=fgetc($f)) {}" to lo...
How to access URL template parameters from "context.Request.Matched Parameters"object in Azure API P...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
How To Convert a Character to an ASCII Value? If you want to convert characters to ASCII values, you...
How to read RSS validation errors at w3.org? If your RSS feed has errors, the RSS validator at w3.or...