Better Qt5 support

This commit is contained in:
Denis Kormalev 2016-09-15 13:22:08 +03:00
parent 243c4dbef2
commit f7b9e83078
4 changed files with 74 additions and 30 deletions

View File

@ -120,8 +120,8 @@ public slots:
* of a portion of the image. (Suggested for Qt 4.x)
*/
QString decodeSubImageQML(QObject *item,
const double offsetX = 0 , const double offsetY = 0,
const double width = 0, const double height = 0);
const int offsetX = 0, const int offsetY = 0,
const int width = 0, const int height = 0);
/**
* The decoding function accessible from QML. (Suggested for Qt 5.x)
@ -138,8 +138,8 @@ public slots:
* (Suggested for Qt 5.x)
*/
QString decodeSubImageQML(const QUrl &imageUrl,
const double offsetX = 0, const double offsetY = 0,
const double width = 0, const double height = 0);
const int offsetX = 0, const int offsetY = 0,
const int width = 0, const int height = 0);
/**
* The main encoding function. Currently supports only Qr code encoding

View File

@ -4,16 +4,37 @@
#include <QPainter>
#include <QStyleOptionGraphicsItem>
#include <QDebug>
#include <QQuickItem>
#include <QQuickItemGrabResult>
#include <QQuickWindow>
#include <QThread>
#include <QTime>
ImageHandler::ImageHandler(QObject *parent) :
QObject(parent)
{
}
QImage ImageHandler::extractQImage(QObject *imageObj,
const double offsetX, const double offsetY,
const double width, const double height)
QImage ImageHandler::extractQImage(QObject *imageObj, int offsetX, int offsetY, int width, int height)
{
#if QT_VERSION >= 0x050000
QQuickItem *item = qobject_cast<QQuickItem *>(imageObj);
if (!item || !item->window()->isVisible()) {
qDebug() << "Item is NULL";
return QImage();
}
bool imgReady = false;
QTime timer;
timer.start();
auto img = item->grabToImage();
connect(img.data(), &QQuickItemGrabResult::ready, this, [&imgReady](){imgReady = true;});
while (!imgReady && timer.elapsed() < 1000) {
qApp->processEvents();
QThread::yieldCurrentThread();
}
#else
QGraphicsObject *item = qobject_cast<QGraphicsObject*>(imageObj);
if (!item) {
@ -26,18 +47,26 @@ QImage ImageHandler::extractQImage(QObject *imageObj,
QPainter painter(&img);
QStyleOptionGraphicsItem styleOption;
item->paint(&painter, &styleOption);
#endif
if(offsetX == 0 && offsetY == 0 && width == 0 && height == 0)
return img;
if (offsetX < 0)
offsetX = 0;
if (offsetY < 0)
offsetY = 0;
if (width < 0)
width = 0;
if (height < 0)
height = 0;
if (offsetX || offsetY || width || height)
return img->image().copy(offsetX, offsetY, width, height);
else
{
return img.copy(offsetX, offsetY, width, height);
}
return img->image();
}
void ImageHandler::save(QObject *imageObj, const QString &path,
const double offsetX, const double offsetY,
const double width, const double height)
const int offsetX, const int offsetY,
const int width, const int height)
{
QImage img = extractQImage(imageObj, offsetX, offsetY, width, height);
img.save(path);

View File

@ -11,13 +11,13 @@ public:
explicit ImageHandler(QObject *parent = 0);
QImage extractQImage(QObject *imageObj,
const double offsetX = 0 , const double offsetY = 0,
const double width = 0, const double height = 0);
int offsetX = 0, int offsetY = 0,
int width = 0, int height = 0);
public slots:
void save(QObject *item, const QString &path,
const double offsetX = 0, const double offsetY = 0,
const double width = 0, const double height = 0);
const int offsetX = 0, const int offsetY = 0,
const int width = 0, const int height = 0);
};
#endif // IMAGEHANDLER_H

View File

@ -9,10 +9,15 @@
#include "imagehandler.h"
#include <QTime>
#include <QUrl>
#include <QFileInfo>
#include <zxing/qrcode/encoder/Encoder.h>
#include <zxing/qrcode/ErrorCorrectionLevel.h>
#include <QColor>
#include <QQmlEngine>
#include <QQmlContext>
#include <QQuickImageProvider>
using namespace zxing;
QZXing::QZXing(QObject *parent) : QObject(parent), tryHarder_(false)
@ -296,8 +301,8 @@ QString QZXing::decodeImageQML(QObject *item)
}
QString QZXing::decodeSubImageQML(QObject *item,
const double offsetX, const double offsetY,
const double width, const double height)
const int offsetX, const int offsetY,
const int width, const int height)
{
if(item == NULL)
{
@ -317,21 +322,31 @@ QString QZXing::decodeImageQML(const QUrl &imageUrl)
}
QString QZXing::decodeSubImageQML(const QUrl &imageUrl,
const double offsetX, const double offsetY,
const double width, const double height)
const int offsetX, const int offsetY,
const int width, const int height)
{
QString imagePath = imageUrl.path();
imagePath = imagePath.trimmed();
QFile file(imagePath);
if (!file.exists()) {
qDebug() << "[decodeSubImageQML()] The file" << file.fileName() << "does not exist.";
emit decodingFinished(false);
return "";
QImage img;
if (imageUrl.scheme() == "image") {
if (imagePath.startsWith("/"))
imagePath = imagePath.right(imagePath.length() - 1);
QQmlEngine *engine = QQmlEngine::contextForObject(this)->engine();
QQuickImageProvider *imageProvider = static_cast<QQuickImageProvider *>(engine->imageProvider(imageUrl.host()));
QSize imgSize;
img = imageProvider->requestImage(imagePath, &imgSize, QSize());
} else {
QFileInfo fileInfo(imagePath);
if (!fileInfo.exists()) {
qDebug() << "[decodeSubImageQML()] The file" << imagePath << "does not exist.";
emit decodingFinished(false);
return "";
}
img = QImage(imagePath);
}
QImage img(imageUrl.path());
if(!(offsetX == 0 && offsetY == 0 && width == 0 && height == 0)) {
if (offsetX || offsetY || width || height)
img = img.copy(offsetX, offsetY, width, height);
}
return decodeImage(img);
}