QMLでの描画(1、Canvas 2、QpainterとQML結合)
5853 ワード
QMLのCanvasはHTML 5のCanvasと同じで、W 3 CSchoolの学習方法:HTML 5 Canvasリファレンスマニュアルを参照できます
線を引く、線を削除する、すべてのインスタンスを削除する:
しかし、QMLのCanvasは強くなく、線を引くとカードになります.Qpainterで線を描き、QMLで表示すればいいのですが、
方法は次のとおりです.
1、まずQpainterの線を作って、私達の類ALPaintedItemをします:
(1)ヘッダファイル
#ifndef ALPAINTEDITEM_H #define ALPAINTEDITEM_H #include #include #include #include #include #include #include #include #include class ALPaintedItem : public QQuickPaintedItem { Q_OBJECT Q_PROPERTY(int penWidth READ penWidth WRITE setPenWidth) Q_PROPERTY(QColor penColor READ penColor WRITE setPenColor) Q_PROPERTY(bool erasered READ isErasered WRITE setErasered) public: ALPaintedItem(QQuickItem *parent = 0); ~ALPaintedItem(); int penWidth() const { return m_penWidth; } void setPenWidth(int width) { m_penWidth = width; } QColor penColor() const { return m_brushColor; } void setPenColor(QColor color) { m_brushColor = color; } bool isErasered() const{ return m_bErasered; } void setErasered(bool erasered){ m_bErasered = erasered; } void paint(QPainter *painter); Q_INVOKABLE void init(); Q_INVOKABLE void clear(); protected: void mousePressEvent(QMouseEvent *event); void mouseMoveEvent(QMouseEvent *event); void mouseReleaseEvent(QMouseEvent *event); private: void drawTmpLine(); void drawBgLine(const QPainterPath &path); void drawPenStyle(QPainter *painter); private: QImage m_bgImage; QImage m_tempImage; QColor m_brushColor; QColor m_eraserColor; QPointF m_nowPoint; QPointF m_lastPoint; QPainterPath *m_pDrawPath; int m_penWidth; bool m_bFlag; bool m_bErasered; };
#endif//ALPAINTEDITEM_H
(2)ソースファイル
#include “alpainteditem.h” ALPaintedItem::ALPaintedItem(QQuickItem *parent) : QQuickPaintedItem(parent), m_brushColor(QColor(0, 0, 0 ,255)), m_eraserColor(QColor(255,255,255,255)), m_bFlag(true), m_bErasered(false), m_pDrawPath(NULL), m_penWidth(NULL) { setAcceptedMouseButtons(Qt::LeftButton); }
ALPaintedItem::~ALPaintedItem() { }
void ALPaintedItem::paint(QPainter *painter) { if(m_bFlag) painter->drawImage(QRectF(0,0,m_bgImage.width(),m_bgImage.height()),m_bgImage); else { painter->drawImage(QRectF(0,0,m_tempImage.width(),m_tempImage.height()),m_tempImage); painter->drawImage(QRectF(0,0,m_bgImage.width(),m_bgImage.height()),m_bgImage); } }
void ALPaintedItem::init() { m_bgImage = QImage(this->width(),this->height(),QImage::Format_ARGB32); m_tempImage = QImage(this->width(),this->height(),QImage::Format_ARGB32); m_bgImage.fill(QColor(255,255,255,0)); m_tempImage.fill(QColor(255,255,255,0)); }
void ALPaintedItem::clear() { m_bgImage.fill(QColor(255,255,255,0)); m_tempImage.fill(QColor(255,255,255,0)); update(); }
void ALPaintedItem::mousePressEvent(QMouseEvent *event) { if(!(event->button() & acceptedMouseButtons())) { QQuickPaintedItem::mousePressEvent(event); } else{ if(m_pDrawPath == NULL) { m_pDrawPath = new QPainterPath(); } m_pDrawPath->moveTo(event->localPos()); m_nowPoint = event->localPos(); } }
void ALPaintedItem::mouseMoveEvent(QMouseEvent *event) { m_lastPoint = m_nowPoint; m_nowPoint = event->localPos(); QPointF tmpPoint = m_nowPoint - m_lastPoint; if(m_pDrawPath == NULL) { return; } if(qAbs(tmpPoint.x()>0|qAbs(tmpPoint.y()>0){m_pDrawPath->quadTo( m_lastPoint.x(),m_lastPoint.y(),(m_nowPoint.x()+m_lastPoint.x())/2,(m_nowPoint.y()+m_lastPoint.y()+m_lastPoint.y()/2);m_bFlag=false;if(m_bErasered)drawBgLine Line;m_bbbgLine(m_bEraaaaaeeeeLine.x()/2);m_(*m_pDrawPath);else drawTmpLine();//仮画}QQQuickPaintedItem::mouseMoveEvent(event);}
void ALPaintedItem::mouseReleaseEvent(QMouseEvent *event) { if(!(event->button() & acceptedMouseButtons())) { QQuickPaintedItem::mousePressEvent(event); } else{ if(m_pDrawPath != NULL) { m_bFlag = true; drawBgLine(*m_pDrawPath); delete m_pDrawPath; m_pDrawPath = NULL; } } }
void ALPaintedItem::drawTmpLine(){QPSainter painter(&m_tempImage);drawPenStyle(&painter);painter.drawLine(m_lastPoint,m_nowPoint);qreal rad=this->width()/375.0* 170;///点周囲範囲値qDebug()<void ALPaintedItem::drawBgLine(const QPainterPath &path) { QPainter painter(&m_bgImage); drawPenStyle(&painter); painter.drawPath(path); m_tempImage.fill(QColor(255,255,255,0)); update(); }
void ALPaintedItem::drawPenStyle(QPainter painter) { painter->setRenderHint(QPainter::Antialiasing); QBrush brush(m_brushColor, Qt::SolidPattern); if(m_bErasered) { painter->setCompositionMode(QPainter::CompositionMode_Clear); painter->setPen(QPen(brush, 5m_penWidth, Qt::SolidLine, Qt::RoundCap,Qt::RoundJoin)); } else { painter->setCompositionMode(QPainter::CompositionMode_SourceOver); painter->setPen(QPen(brush, m_penWidth, Qt::SolidLine, Qt::RoundCap,Qt::RoundJoin)); } painter->setBrush(Qt::NoBrush); }
2、このクラスを登録する
3、QMLでの呼び出し
import QtQuick 2.5 import ALPaintedItem 1.0
Rectangle { id:photoMarkedRoot color: “transparent” property alias painter: painter
}
テキストリンク:https://blog.csdn.net/u014597198/article/details/52415858
線を引く、線を削除する、すべてのインスタンスを削除する:
しかし、QMLのCanvasは強くなく、線を引くとカードになります.Qpainterで線を描き、QMLで表示すればいいのですが、
方法は次のとおりです.
1、まずQpainterの線を作って、私達の類ALPaintedItemをします:
(1)ヘッダファイル
#ifndef ALPAINTEDITEM_H #define ALPAINTEDITEM_H #include #include #include #include #include #include #include #include #include class ALPaintedItem : public QQuickPaintedItem { Q_OBJECT Q_PROPERTY(int penWidth READ penWidth WRITE setPenWidth) Q_PROPERTY(QColor penColor READ penColor WRITE setPenColor) Q_PROPERTY(bool erasered READ isErasered WRITE setErasered) public: ALPaintedItem(QQuickItem *parent = 0); ~ALPaintedItem(); int penWidth() const { return m_penWidth; } void setPenWidth(int width) { m_penWidth = width; } QColor penColor() const { return m_brushColor; } void setPenColor(QColor color) { m_brushColor = color; } bool isErasered() const{ return m_bErasered; } void setErasered(bool erasered){ m_bErasered = erasered; } void paint(QPainter *painter); Q_INVOKABLE void init(); Q_INVOKABLE void clear(); protected: void mousePressEvent(QMouseEvent *event); void mouseMoveEvent(QMouseEvent *event); void mouseReleaseEvent(QMouseEvent *event); private: void drawTmpLine(); void drawBgLine(const QPainterPath &path); void drawPenStyle(QPainter *painter); private: QImage m_bgImage; QImage m_tempImage; QColor m_brushColor; QColor m_eraserColor; QPointF m_nowPoint; QPointF m_lastPoint; QPainterPath *m_pDrawPath; int m_penWidth; bool m_bFlag; bool m_bErasered; };
#endif//ALPAINTEDITEM_H
(2)ソースファイル
#include “alpainteditem.h” ALPaintedItem::ALPaintedItem(QQuickItem *parent) : QQuickPaintedItem(parent), m_brushColor(QColor(0, 0, 0 ,255)), m_eraserColor(QColor(255,255,255,255)), m_bFlag(true), m_bErasered(false), m_pDrawPath(NULL), m_penWidth(NULL) { setAcceptedMouseButtons(Qt::LeftButton); }
ALPaintedItem::~ALPaintedItem() { }
void ALPaintedItem::paint(QPainter *painter) { if(m_bFlag) painter->drawImage(QRectF(0,0,m_bgImage.width(),m_bgImage.height()),m_bgImage); else { painter->drawImage(QRectF(0,0,m_tempImage.width(),m_tempImage.height()),m_tempImage); painter->drawImage(QRectF(0,0,m_bgImage.width(),m_bgImage.height()),m_bgImage); } }
void ALPaintedItem::init() { m_bgImage = QImage(this->width(),this->height(),QImage::Format_ARGB32); m_tempImage = QImage(this->width(),this->height(),QImage::Format_ARGB32); m_bgImage.fill(QColor(255,255,255,0)); m_tempImage.fill(QColor(255,255,255,0)); }
void ALPaintedItem::clear() { m_bgImage.fill(QColor(255,255,255,0)); m_tempImage.fill(QColor(255,255,255,0)); update(); }
void ALPaintedItem::mousePressEvent(QMouseEvent *event) { if(!(event->button() & acceptedMouseButtons())) { QQuickPaintedItem::mousePressEvent(event); } else{ if(m_pDrawPath == NULL) { m_pDrawPath = new QPainterPath(); } m_pDrawPath->moveTo(event->localPos()); m_nowPoint = event->localPos(); } }
void ALPaintedItem::mouseMoveEvent(QMouseEvent *event) { m_lastPoint = m_nowPoint; m_nowPoint = event->localPos(); QPointF tmpPoint = m_nowPoint - m_lastPoint; if(m_pDrawPath == NULL) { return; } if(qAbs(tmpPoint.x()>0|qAbs(tmpPoint.y()>0){m_pDrawPath->quadTo( m_lastPoint.x(),m_lastPoint.y(),(m_nowPoint.x()+m_lastPoint.x())/2,(m_nowPoint.y()+m_lastPoint.y()+m_lastPoint.y()/2);m_bFlag=false;if(m_bErasered)drawBgLine Line;m_bbbgLine(m_bEraaaaaeeeeLine.x()/2);m_(*m_pDrawPath);else drawTmpLine();//仮画}QQQuickPaintedItem::mouseMoveEvent(event);}
void ALPaintedItem::mouseReleaseEvent(QMouseEvent *event) { if(!(event->button() & acceptedMouseButtons())) { QQuickPaintedItem::mousePressEvent(event); } else{ if(m_pDrawPath != NULL) { m_bFlag = true; drawBgLine(*m_pDrawPath); delete m_pDrawPath; m_pDrawPath = NULL; } } }
void ALPaintedItem::drawTmpLine(){QPSainter painter(&m_tempImage);drawPenStyle(&painter);painter.drawLine(m_lastPoint,m_nowPoint);qreal rad=this->width()/375.0* 170;///点周囲範囲値qDebug()<
void ALPaintedItem::drawPenStyle(QPainter painter) { painter->setRenderHint(QPainter::Antialiasing); QBrush brush(m_brushColor, Qt::SolidPattern); if(m_bErasered) { painter->setCompositionMode(QPainter::CompositionMode_Clear); painter->setPen(QPen(brush, 5m_penWidth, Qt::SolidLine, Qt::RoundCap,Qt::RoundJoin)); } else { painter->setCompositionMode(QPainter::CompositionMode_SourceOver); painter->setPen(QPen(brush, m_penWidth, Qt::SolidLine, Qt::RoundCap,Qt::RoundJoin)); } painter->setBrush(Qt::NoBrush); }
2、このクラスを登録する
qmlRegisterType("ALPaintedItem", 1, 0, "ALPaintedItem");
3、QMLでの呼び出し
import QtQuick 2.5 import ALPaintedItem 1.0
Rectangle { id:photoMarkedRoot color: “transparent” property alias painter: painter
Component.onCompleted: {
painter.penWidth = initHeight/647.0*3
painter.penColor = "red"
painter.init()
}
ALPaintedItem {
id: painter;
width: photoMarkedRoot.width
height: photoMarkedRoot.height
onWidthChanged: {
painter.init()
}
onHeightChanged: {
painter.init()
}
}
}
テキストリンク:https://blog.csdn.net/u014597198/article/details/52415858