//....................................................................................................................................
// LOAD IMAGE
if (!fileName.isEmpty()) {
if (image.isNull()) {
tr("Cannot load %1.").arg(fileName));
return;
}
//....................................................................................................................................
QImage BottomMammogram
(fileName
);
BottomMammogram
= BottomMammogram.
convertToFormat(QImage::Format_ARGB32);
image.fill(qRgba(0,0,0,0));
QImage TopMammogram
("C:/TopMammogram");
TopMammogram
= TopMammogram.
convertToFormat(QImage::Format_ARGB32);
image.fill(qRgba(0,0,0,0));
painter1->begin(img);
painter1->fillRect(img->rect(), Qt::transparent);
painter1->drawImage(0, 0, BottomMammogram); // puts BottomMammogram image into img
painter1->drawImage(50, 50, TopMammogram); // puts TopMammogram image into img
painter1->end();
imageLabel->setPixmap(*img);
imageLabel->show();
//....................................................................................................................................
// LOAD IMAGE
if (!fileName.isEmpty()) {
QImage image(fileName);
if (image.isNull()) {
QMessageBox::information(this, tr("Mammogram Viewer"),
tr("Cannot load %1.").arg(fileName));
return;
}
//....................................................................................................................................
QImage BottomMammogram(fileName);
BottomMammogram= BottomMammogram.convertToFormat(QImage::Format_ARGB32);
image.fill(qRgba(0,0,0,0));
QImage TopMammogram("C:/TopMammogram");
TopMammogram= TopMammogram.convertToFormat(QImage::Format_ARGB32);
image.fill(qRgba(0,0,0,0));
painter1 = new QPainter;
img = new QPixmap(500, 500);
painter1->begin(img);
painter1->fillRect(img->rect(), Qt::transparent);
painter1->drawImage(0, 0, BottomMammogram); // puts BottomMammogram image into img
painter1->drawImage(50, 50, TopMammogram); // puts TopMammogram image into img
painter1->end();
imageLabel->setPixmap(*img);
imageLabel->show();
To copy to clipboard, switch view to plain text mode
Bookmarks