This image has been resized. Click on the View larger version link in the sidebar for a high-quality version.
Hide this message.
Image samples have been disabled. If you find this to be too slow, you can turn samples back on in your profile settings.
Search
Tags
- ? doha skylightscent 62
- ? erect nipples 38383
- ? heels 52187
- ? pointy ears 44573
- ? see through 73833
- ? thighhighs 251275 see-through torn thighhighs thighighs tighhighs thighhigh hold-ups thighboots clever heel high heels high heel boots thigh boots pointed ears white thighhighs single thighhigh frilled thighhighs black thighhighs covered erect nipples
Statistics
- Id: 666284
- Posted: over 4 years ago by Dreista
- Size: 2452x5305
- Source: www.pixiv.net/artwor...
- Rating: Questionable
- Score: 7
- Favorited by: kikimi, roberch, YamatoBomber, videinfra, 血魔弑天
Mr GT
over 4 years agoGenex
over 4 years agoThat is if she is supposed to be on her back.
Mr GT
over 4 years agoIf nothing else we can simply delete this and keep post #66319
Genex
over 4 years agoSonnyIgor
over 4 years ago996709763
over 4 years agofireattack
over 4 years agoIt has been reported before: https://github.com/moebooru/moebooru/issues/132
I'd say just leave it as-is since it's just the display. The image files are fine.
Darkthought75
over 4 years agoEdit: On new Edge its also a mess :P
fireattack
over 4 years ago// ==UserScript==
// @name Fix image thumbnail orientation
// @namespace Violentmonkey Scripts
// @match https://yande.re/*
// @grant none
// @version 1.0
// @author fireattack
// @run-at document-idle
// ==/UserScript==
const imgs = document.querySelectorAll('img.preview,img.image');
for (let img of imgs) {
if (Math.round((img.width / img.naturalWidth - img.height / img.naturalHeight) * 10) === 0) continue;
let _ = img.width;
img.width = img.height;
img.height = _;
}
Genex
over 4 years agofireattack
over 4 years agoGenex
over 4 years ago