Merge pull request #203

fdd6ad4 QRCodeImageProvider: fix 0/1 black/white mixup (moneromooo.monero)
This commit is contained in:
Riccardo Spagni 2016-12-08 23:53:16 +02:00
commit 0bab9a0b04
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -10,7 +10,7 @@ QImage QRCodeImageProvider::requestImage(const QString &id, QSize *size, const Q
QImage img = QImage(qrcode.size, qrcode.size, QImage::Format_Mono);
for (int y = 0; y < qrcode.size; ++y)
for (int x = 0; x < qrcode.size; ++x)
img.setPixel(x, y, qrcode.getModule(x, y));
img.setPixel(x, y, !qrcode.getModule(x, y)); // 1 is black, not "255/white"
if (size)
*size = QSize(qrcode.size, qrcode.size);
return img;