file in abyss
フォーマット一覧へ戻る

Document

EPUB Electronic Publication

電子書籍で広く使われるEPUB形式。ZIPコンテナで、mimetype、container.xml、OPF、XHTML本文を含みます。

Extensions .epub
MIME application/epub+zip

マジックナンバー

ファイルを解析
オフセット 0 ZIP local file header
50 4B 03 04
PK..

構造

  1. ZIP container
  2. mimetype
  3. META-INF/container.xml
  4. OPF package
  5. XHTML content

注意点

  • EPUB固有の判定にはmimetypeがapplication/epub+zipであることを確認します。

判定コード例

SIGNATURE = bytes.fromhex("504b0304")
OFFSET = 0

def is_epub(path: str) -> bool:
    with open(path, "rb") as f:
        f.seek(OFFSET)
        head = f.read(len(SIGNATURE))
    return head == SIGNATURE

実践的な使い方

ユースケース

Electronic Publication はデータ交換、インポート/エクスポート、パーサのテスト、検証ワークフローで使われます。エンコーディング・区切り文字・バージョン・コンテナ構造が実装の挙動を変えることがあります。

よくある判定ミス

  • .epub という拡張子だけではファイルの中身を保証できません。アップロードや変換の処理では、拡張子・MIMEタイプ・先頭バイト・形式固有の構造チェックを組み合わせるべきです。
  • Electronic Publication は 50 4B 03 04 のようなシグネチャで始まりますが、関連するコンテナや破損ファイルでは追加の検証が必要になる場合があります。

セキュリティ上の注意

文書形式はスクリプト・添付・マクロ・外部参照を含むことがあります。プレビューや変換はサンドボックス化し、信頼できないファイルを直接開かないでください。

サンプルの活用

11 個のサンプルで、先頭バイト判定・パーサのエラー・アップロード上限・ダウンロード挙動をテストできます。

サンプルファイル

11 / 11 files
Sample Traits Size Source / license / SHA-256
Doc

Blue Sky EPUB

Blue Sky EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

01-blue-sky.epub
Type Sample
1.4 KB
SHA-256 46b713c4a852927e9b7e527624b0ab692577b4997922ec00c659d8b9bcfcd6b4
Download
Doc

Flower Garden EPUB

Flower Garden EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

02-flower-garden.epub
Type Sample
1.4 KB
SHA-256 9791254a0bfa525c943bf5010a12ef46d9d98d05eae4d796995c8b44ebcfc75e
Download
Doc

Navy Blue Sky EPUB

Navy Blue Sky EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

03-navy-blue-sky.epub
Type Sample
1.4 KB
SHA-256 61dc9c961f56a3dee8f0e07f18b02291665f89c10f43a1bcd8b041a079046397
Download
Doc

Nature of the Sky EPUB

Nature of the Sky EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

04-nature-sky.epub
Type Sample
1.4 KB
SHA-256 8a59b26f29daba3a1411930278966a8fc23e55347660feb0691cd71bfc925043
Download
Doc

Sky Landscape EPUB

Sky Landscape EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

05-sky-landscape.epub
Type Sample
1.4 KB
SHA-256 32db1dc4da5dca8a666921a1f7413fc1090cb6329e98b4bd4575642ab250ac90
Download
Doc

Starry Sky EPUB

Starry Sky EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

06-starry-sky.epub
Type Sample
1.4 KB
SHA-256 30f23026c4b6cba65b1675ebacb89ba9f823f301581684587dee1ea093a072fa
Download
Doc

Blue Night Sky EPUB

Blue Night Sky EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

07-blue-night-sky.epub
Type Sample
1.4 KB
SHA-256 6784065f85709a8f8a2a8b3d99838197c0a29427cee8322139c02c6b7828949e
Download
Doc

Hibiscus Flower EPUB

Hibiscus Flower EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

08-hibiscus-flower.epub
Type Sample
1.4 KB
SHA-256 93e32496707477839860c7552adbcf0229203644378c63bb19158a85ae02b188
Download
Doc

Arctic Sky EPUB

Arctic Sky EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

09-arctic-sky.epub
Type Sample
1.4 KB
SHA-256 43e7c963fd298b81078da605951e5ca8b4a2b0feb11118af433340ae4ba8e4c6
Download
Doc

Sunset Rays EPUB

Sunset Rays EPUB is a Electronic Publication sample based on Wikimedia Commons. It can be used to test downloads, parsers, previews, and file type detection.

10-sunset-rays.epub
Type Sample
1.4 KB
SHA-256 ccd1352fd410f4f0ee556137468c1d328ac99cb725c21ab9055d68fd176cfd04
Download
Doc

NASA Blue Marble EPUB

NASA Blue Marble EPUB is a Electronic Publication sample based on NASA Image and Video Library. It can be used to test downloads, parsers, previews, and file type detection.

nasa-blue-marble-2012-east.epub
Type Sample
1.5 KB
SHA-256 d5766b911a2b93a869d32ba1863e72403f8e0e245fcbb08b81f96914e338c511
Download

よくある質問

Electronic Publication のマジックナンバー(ファイルシグネチャ)は?

Electronic Publication ファイルはバイトシグネチャ 50 4B 03 04 ("PK..") で始まります。拡張子に頼らず、この先頭バイトを読み取って形式を判定してください。

Electronic Publication のMIMEタイプは?

Electronic Publication のMIMEタイプは application/epub+zip です。

Electronic Publication の拡張子は?

Electronic Publication ファイルは .epub 拡張子を使います。拡張子は慣習にすぎず中身を保証しないため、シグネチャや構造のチェックと組み合わせてください。

関連フォーマット