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

[feature request] Would it be possible to add an option to stitch the images of a chapter together after they have been downloaded? #22

Open
qunYp3dZSyLjoEoEg opened this issue Jun 24, 2023 · 2 comments

Comments

@qunYp3dZSyLjoEoEg
Copy link

Hello,

I wanted to ask whether it would be possible to make an option as described in the title. Some Webtoons have quite long pages, and look pretty bad when they get downloaded as separate images (e.g. text-bubbles getting cut of etc.), so I wanted to ask whether that would be possible.

Have a nice day!

@ghost
Copy link

ghost commented May 23, 2024

I second this!

@Seally
Copy link

Seally commented Aug 19, 2024

I personally "fixed" this by writing an HTML file generator with an appropriate CSS file to create my own Webtoon reader. Although the request makes sense, my personal experience with extremely large image files is that many image viewers don't handle those too well, creating performance issues. It might be better to leave them as separate files.

Here's a partial example of the HTML:

<main id="content">
  <img src="1/001.jpg" alt="001.jpg" />
  <img src="1/002.jpg" alt="002.jpg" />
  <img src="1/003.jpg" alt="003.jpg" />
  <!-- ... -->
</main>

And the CSS:

#content {
    line-height: 0;
    display: inline-flex;
    flex-direction: column;
}

Note: I haven't tested if more CSS is needed here since I only showed the fragment I thought was relevant.

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

2 participants