switched all image outputs to jpeg format instead of png

This commit is contained in:
csoler 2023-01-16 19:53:20 +01:00
parent f65a761c9d
commit 0a8f4b1b6e
14 changed files with 16 additions and 16 deletions

View file

@ -141,7 +141,7 @@ void AvatarDialog::getAvatar(QByteArray &avatar)
QBuffer buffer(&avatar);
buffer.open(QIODevice::WriteOnly);
pixmap.save(&buffer, "PNG"); // writes image into ba in PNG format
pixmap.save(&buffer, "JPG"); // writes image into ba in PNG format
}
void AvatarDialog::load()