any option to stretch

Joined
Mar 29, 2019
Messages
7
is there any option to strech the image to fit the container? i end up just going to other sites that support the webcomicreader extension when they are low res because its annoying to read when fit to container doesnt stretch the image to fit and only shrinks
 
Dex-chan lover
Joined
Feb 17, 2018
Messages
1,856
Press F to...


Resize to container or ^f.

You can see more options in the gear icon of the reader that usually denotes settings on desktops.

For mobile it is usually automatic
 
Joined
Mar 29, 2019
Messages
7
@teddy
PfJXGWE.png

it doesnt stretch
 
Dex-chan lover
Joined
Feb 17, 2018
Messages
1,856
Are you using a tablet? I'm not too sure about those.
 
Custom title
Staff
Developer
Joined
Jan 19, 2018
Messages
2,682
@308090b There's no mode that stretches out smaller images to fill an area because it makes the images look worse.

Although if you want to, regardless, you could try adding these css rules by using e.g. Stylus. They... should work, I guess. Didn't exactly spend a lot of time checking.

Code:
.reader.fit-horizontal .reader-images, .reader.fit-horizontal .reader-image-wrapper, .reader.fit-horizontal .reader-image-wrapper img {
    min-width: 100%;
}
.reader.fit-vertical .reader-images, .reader.fit-vertical .reader-image-wrapper, .reader.fit-vertical .reader-image-wrapper img {
    min-height: 100%;
}
.reader-image-wrapper img {
    object-fit: contain;
}
 
Joined
Mar 29, 2019
Messages
7
of course it makes it look SLIGHTLY worse but why wouldnt you make it an option ?
also it doesnt look worse if you dont wanna read a page at half the screen size sometimes.
This site has to be the only site that doesnt work with webcomicreader userscript 🤬🤬🤬🤬🤬
 
Miku best girl
Admin
Joined
May 29, 2012
Messages
1,441
Shouldn't you complain to webcomicreader? lol
 
Joined
Mar 29, 2019
Messages
7
why would I complain to a script to add a site that should just have the feature?
 
is a Reindeer
VIP
Joined
Jan 24, 2018
Messages
3,231
@308090b Because we currently have no interest in making an image mode that only makes things look worse.
 
Dex-chan lover
Joined
Jul 4, 2018
Messages
5,168
Try this:

Go to a manga,
Click the settings grey box,
(Make sure your reader is Legacy),
Scroll down until you find "image fit",
Choose the option you want.
 
Joined
May 5, 2018
Messages
305
I've been using a userscript to stretch images since september 2018. If the CSS Teasday posted doesn't work, try this:

// ==UserScript==
// @name MangaDex - stretch images
// @namespace firelight
// @include https://mangadex.org/chapter/*
// @version 1
// @grant none
// ==/UserScript==

// https://github.com/greasemonkey/greasemonkey/issues/2724
var style = document.createElement('style');
style.textContent = `
.reader-images img {
width: 3000px;
object-fit: contain;
}
`;
document.documentElement.appendChild(style);
 
Joined
Mar 29, 2019
Messages
7
@Plykiya
oof "only makes it look worse"
you people have the iq of an ant.
@firelight
i fixed it with a script
but its a "fix" to a site that should have the feature. Which would take literally no time to add and would convenience many and inconvenience none
 

Users who are viewing this thread

Top