15 lines
300 B
C++
15 lines
300 B
C++
#include "Screenshot.h"
|
|
#include <QImage>
|
|
#include <QIcon>
|
|
QIcon ScreenShot::getImage()
|
|
{
|
|
if(!imageloaded)
|
|
{
|
|
QImage image(file);
|
|
QImage thumbnail = image.scaledToWidth(256, Qt::SmoothTransformation);
|
|
m_image = QIcon(QPixmap::fromImage(thumbnail));
|
|
imageloaded = true;
|
|
}
|
|
return m_image;
|
|
}
|