https://bugs.kde.org/show_bug.cgi?id=356931
Nate Graham <pointedst...@zoho.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|CONFIRMED |RESOLVED Resolution|--- |UPSTREAM See Also| |https://bugreports.qt.io/br | |owse/QTBUG-64437 --- Comment #2 from Nate Graham <pointedst...@zoho.com> --- Looks like we're just using the standard QImageWriter. From documentloadedimpl.cpp: bool DocumentLoadedImpl::saveInternal(QIODevice* device, const QByteArray& format) { QImageWriter writer(device, format); bool ok = writer.write(document()->image()); if (ok) { setDocumentFormat(format); } else { setDocumentErrorString(writer.errorString()); } return ok; } This seems to be Qt bug in how webp images are saved; adding "writer.setQuality(100);" before we call writer.write() doesn't have any effect. I've filed https://bugreports.qt.io/browse/QTBUG-64437 -- You are receiving this mail because: You are watching all bug changes.