C++ (Qt)QImage gray((const uchar *)bits.data(), width, bits.length() / width, QImage::Format_Indexed8);QVector<QRgb> palette;for (int i = 0; i < 255; ++i) palette.append(qGray(i, i, i);gray.setColorTable(palette);gray.save(file.fileName() + ".jpg");
C++ (Qt)for (int i = 0; i < 255; ++i) palette.append(qGray(i, i, i);
for (int i = 0; i < 255; ++i) palette.append(qGray(i, i, i);