mertakdut / EpubParser

Parses .epub files, provides seperation page by page.
Apache License 2.0
118 stars 27 forks source link

How I can get images from epub? #6

Closed DanTsk closed 8 years ago

DanTsk commented 8 years ago

How I can get images from epub? Not cover image but all images.

mertakdut commented 8 years ago

Currently all the image source is replaced with Base64 encoding.

You can retrieve the encoded string in src attribute, Crop the part after ";base64,". Decode it and use it.

DanTsk commented 8 years ago

Thank you a lot ! Your library really great and very useful! Thanks for your answer