Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use contentType for images #21

Open
Secretmapper opened this issue Jul 5, 2016 · 4 comments
Open

Use contentType for images #21

Secretmapper opened this issue Jul 5, 2016 · 4 comments

Comments

@Secretmapper
Copy link

Right now, the img mimetype is being looked up using the url. It would be best to look at the contentType header if it set.

Options such as allowing input of baseURL would be great too.

@cyrilis
Copy link
Owner

cyrilis commented Jul 20, 2016

Hi @Secretmapper ,

Thanks for your feed back! what you said about detect image type by contentType should be right, A following PR is on the way. 😄

However, I'm not quite sure the meaning of "baseURL"? Is it the base url of the remote images?
If so, I prefer to replacing the image url in the HTML string with regex or with cheerio or some library else before pass the HTML string to epub-gen. What do you think?

Let me know if you have any questions.

Thanks.

@cyrilis
Copy link
Owner

cyrilis commented Jul 20, 2016

and hi @pedrosanta, What do you think? Should this be added to options?

@Secretmapper
Copy link
Author

Secretmapper commented Jul 20, 2016

Hello @cyrilis thanks for the feedback! Glad to hear a PR is along the way :)

The reason I would opt to have baseUrl as an option is to save a parse step. Epub-gen is already parsing the html/url src when it's collecting the urls, so it seems wasteful to parse beforehand.

In fact I just realized as I'm typing this, it would probably be great if we can pass a callback function for image resolving, to make it more general. That way, we can for example do custom transforms on the URLs like we did here, and even read the data from different storage mechanisms.

I'm using GridFS, and right now my server is doing a round trip to download the assets on my own server. It'll be great to eliminate that.

@pedrosanta
Copy link
Collaborator

Hi @Secretmapper!

Yap, I also think that makes sense... because some image URLs don't have the extension and so on. Nice one. I think we could advance with a PR for it soon, yes. Cool! 👍

However, I'm not quite sure the meaning of "baseURL"? Is it the base url of the remote images?
If so, I prefer to replacing the image url in the HTML string with regex or with cheerio or some library else before pass the HTML string to epub-gen. What do you think?

Regarding the baseUrl option, I also lean to have that out of the library scope to make it more flexible and to keep the library simpler. Like @cyrilis is saying, I see that more of a lib user manipulation, through a Regex, of the data that gets fed to epub-gen, than a config option.

But, the point you arise of the parsing (twice) has some sense. And also the idea of a callback function seems interesting to me - and if it could benefit you for that GridFS scenario the better.

Gonna wrap my head around it, think about this a bit and come back with more comments - but seems to me that it would be easy to work something out. 😏

Cheers!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants