zelazna / epub_cover_extractor

A tool for getting the ebooks covers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EpubCoverExtractor

Build Status

A tool for getting the ebooks covers, the projet is WIP, contributions are welcome.

Installation

Add epub_cover_extractor to your list of dependencies in mix.exs:

def deps do
  [
    {:epub_cover_extractor, "~> 0.1.0"}
  ]
end

Documentation

The project documentation can be found here on Hex

Quick Start

{:ok, binary} = EpubCoverExtractor.get_cover("book.epub")
{:ok,
<<137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73,
  72, 68, 82, 0, 0, 5, 130, 0, 0, 8, 202, 8, 6, 0, 0,
  0, 43, 176, 122, 217, 0, 0, 0, 9, 112, 72, 89, 115,
  0, 0, 14, 196, 0, 0, 14...>>}
File.write("cover.png", binary)

About

A tool for getting the ebooks covers

License:Apache License 2.0


Languages

Language:Elixir 100.0%