Popularity
1.0
Growing
Activity
0.0
Stable
6
1
1
Monthly Downloads: 9
Programming language: Elixir
License: Apache License 2.0
Tags:
Miscellaneous
Latest version: v0.1.1
epub_cover_extractor alternatives and similar packages
Based on the "Miscellaneous" category.
Alternatively, view epub_cover_extractor alternatives based on common mentions on social networks and blogs.
-
ex_rated
ExRated, the Elixir OTP GenServer with the naughty name that allows you to rate-limit calls to any service that requires it. -
gen_task
Generic Task behavior that helps encapsulate errors and recover from them in classic GenStage workers. -
countriex
All sorts of useful information about every country. A pure elixir port of the ruby Countries gem
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of epub_cover_extractor or a related project?
README
EpubCoverExtractor
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)