QPainter is a Qt class that provides low-level painting on widgets or other paint devices.

learn more… | top users | synonyms

0
votes
0answers
17 views

How can I make two different QPainter overlap

I have two painters. I create some lines using the following code: paint1.setPen(pen) // pen has only yellow color property paint1.drawLine(50, 45, 90, 20); paint1.drawLine(90, 20, 90, 35); ...
0
votes
1answer
19 views

drawing icons in a table with QStyledItemDelegate paint()

I'm trying to implement a custom paint function for a QStyledItemDelegate subclass (QT4.8.2). I've reviewed the StarItemDelegate example, among others, and it appears to be pretty straightforward. ...
0
votes
0answers
39 views

How to use QPainter to draw large amount of text?

Is it possible to use drawText() in PaintEvent() to draw 15Mb of text data...? If yes then how? I am drawing text but not getting more than 10Mb.
0
votes
0answers
23 views

how to apply qtransform to only clipped area of Qimage

My task is, Cut the triangular portion of Texture image and want to plot that clipped texture image to particular triangle. Condition is, my texture image that i had clipped size will be greater ...
0
votes
1answer
56 views

QT - QPainter.DrawText doesnt draw the text

i'm creating an analog clock in QT-Creater 5, now i wanna draw the numbers to the screen, but it doesnt work? painter.drawText(QPoint(50, 50), "12"); i absolutly dont see the point why it doesnt ...
-2
votes
0answers
44 views

RGB screen test with Qt [closed]

What is the simplest way to fill the screen with the red green and blue? There must be 3 seconds delay between the colours. This is for an embedded system. QGraphicsScene scene; QGraphicsView ...
1
vote
1answer
58 views

QtPainter Error Paint device returned engine ==0, type 3 ,Painter not active

I'm trying to paint some points of my image and I don't know why it doesn't work. I have defined a QImage and I want to modify some points. QImage *cou= new ...
0
votes
1answer
48 views

QGraphicsView to pdf

I have a big scene successfully displayed in my window with the help of QGraphicsView/QGraphicsScene with scroll bars for navigation. Everything works fine. Now I would like now to render part of ...
0
votes
1answer
43 views

Qt QPainterpath.h errors

I am currently working on a Qt application with many #include files from the Qt library. The project is quite large and I have encountered a strange problem when building. The errors displayed are ...
0
votes
2answers
89 views

How do I use QPainter in only one cpp file?

here's my code: #include<QApplication> #include<QWidget> #include<QPaintEvent> #include<QPainter> int main(int argc,char**argv) { QApplication app(argc,argv); QWidget*wid=new ...
1
vote
1answer
32 views

qt painterpath rotation

I have a circle that drawed with painter path and inside it I have line with the same painter path.I want to rotate the circle but not rotate the line in it?How can I achieve this?
1
vote
1answer
46 views

My paintEvent method is not painting anything with PySide

I'm trying to draw a circle on top of a label (which has a background image of a circuit board) to represent an output pin's state. I'm just trying to draw something at the moment but I'm not getting ...
0
votes
1answer
23 views

Display issue in QPrinter Report

i am using QPrinter to create report and embed in the qt application. there is no issue in creating report, but display is the issue. when i am scrolling the report the display problem is coming. ...
0
votes
1answer
137 views

PaintEvent in Qt painting all widgets the same for each instance of the class

I have a class called MotionVectorDisplay which inherits from QWidget and I override the paintevent, what I do with this class is draw motion vectors for a pariticular macroblock which is 16x16 in ...
0
votes
2answers
48 views

What's the point in QPainter::drawConvexPolgon

From the docs: QPainter offers two methods of painting QPolygons: drawPolygon and drawConvexPolygon. Nowhere in the documentation is it made clear what the difference between them is. Additionally, ...
2
votes
1answer
49 views

Stroking a path only inside/outside?

Given a QPainterPath how can I stroke the path only on the inside or outside edge of the path (or left- or right-side for non-closed paths)? QPainter::strokePath() centers the pen along the path and ...
0
votes
0answers
125 views

Drawing Points and connecting them with a line

I have made this program which is a basic paint application, I'm trying to edit it now so when the mouse is clicked a point(like a point on a graph) is made and after 3 or 4 points are made they are ...
0
votes
1answer
61 views

Delete ellipse in qwidget created using qpainter

I have elipses on QWidget that are drawn using QPainter, is there a way to delete a certain ellipse (at a certain coordinate)? Thanks
0
votes
1answer
245 views

QGLWidget: overpainting with QPainter

I would like to draw some overlay on my image viewer : a dashed rectangle around the image, indicating the bounding box. Here 's what I do in the paintEvent function: void ...
0
votes
1answer
89 views

Why the pixmap(a football field image) disappear when I try to draw something on its QLabel?

guys.I have a QLabel with a pixmap-a PNG image(typically a football playground) and I wanna draw some rectangels(represent some robots) on the playground,which I use the painter class to draw ...
2
votes
1answer
106 views

Creating one QPainter object and using it in paintEvent

The common use of QPainter is inside a widget's paint event: Construct and customize (e.g. set the pen or the brush) the painter. Then draw. Remember to destroy the QPainter object after ...
0
votes
1answer
161 views

Qpainter drawimage unpredicatable location with rotation

I'm trying to paint a rotated image on an existing painter. The rotation as well as the location will be different each time. The rotation works fine, but I can't seem to predict the location. The ...
1
vote
1answer
77 views

Painting in a QTextEdit without affecting the text

I am trying to paint some lines in a QTextEdit but when paintEvent it is called the whole QTextEdit text clears, the lines are drawn, no further text input possible. If I scroll, the drawn lines act ...
2
votes
1answer
314 views

QtQuick 2.0 vs QGraphicsView (QPainter)

I'm writing right now an application in Python (PyQt / PySide), which should visualise and should give the possibility to edit complex dataflow graphs (like nodes in blender). Additional I want these ...
0
votes
1answer
190 views

QT QGraphicsScene Drawing Arc

I have a question about drawing specific arc on a scene. I have this information about arc: Starting Koordinates, Start Angle, End Angle , Radius. But I can't use them efficently with QPainter. ...
2
votes
5answers
833 views

Qt Beginner QPainter and QRect

How would I go about drawing a rectangle? I have tried two different ways; void MyWidget::paintEvent(QPaintEvent *) { QPainter painter(this); painter.setRenderHint(QPainter::Antialiasing); ...
1
vote
2answers
187 views

QGradient ellipse blending

I am currently working on generating "heat-maps" with QPainter and QImage. My method consists of drawing multiple circles with black to transparent QRadialGradients as the QBrush (see "Intensity ...
0
votes
2answers
306 views

How do i Draw on a Frame in Qt?

Ok so i have created my UI with the drag and drop part of Qt and in the Ui i created a "Tab Widget" inside another "Tab Widget". Now, inside the second Tab Widget i created a Frame My Question is, ...
1
vote
1answer
71 views

Accessing a QPainter in base class

I am creating widget classes that draw grids using QWidgets paint event. My base class BaseRenderArea contains this method: //draws a list of guesses in the grid void ...
0
votes
1answer
114 views

Derived QPainterPath, QPainter performance degrading quickly

I am currently trying to encapsulate my QPainter objects into reusable classes, possibly deriving each other. This enables them to transform the painter around any way they like, have their own ...
2
votes
1answer
59 views

Is it safe to call QImage::save() before QPainter::end()

In this code: QPainter painter(&image); // do painting ....... painter.end(); // is this needed? image.save(tempFileName); do I need to close the QPainter before saving the QImage, in order ...
0
votes
1answer
145 views

Qt:[Solved] How to release memory occupied by QPainterPath when drawing is finished?

The thing is: I want to draw many many lines calculated by input data (data size above 50MB) generated from USB device. If I use QPainterPath::lineTo and QPainterPath::moveTo function to draw lines, ...
1
vote
1answer
233 views

How to disable multiple auto-redrawing at resizing widgets in PyQt?

I have a PyQt4 program with widgets whose content redraws very slowly (it's ok, because of my tasks). And when I trying to resize those widgets, program is trying to redraw a lot of times while mouse ...
1
vote
1answer
158 views

Changing the position of a line using QPainter

I have a window with a push-button. Once the button is clicked , I would like to change the position of line that is initially drawn.This is my code till now. import sys from PyQt4 import QtGui , ...
0
votes
1answer
37 views

What is the vertical offset between 2 lines of text in QFont?

Is it just QFontMetrics::height(), or is it QFontMetrics::height()+QFontMetrics::leading()? For example, in this code: painter.drawText(QRect(x, y, 1000, 1000), "line1"); y += lineOffset; ...
1
vote
1answer
377 views

QPainter::drawText, get bounding boxes for each character

I'm using QPainter to draw multiline text on QImage. However, I also need to display a colored rectangle around each character's bounding box. So I need to know the bounding box that each character ...
0
votes
2answers
499 views

How to draw custom shapes(like a tear) in Qt with QPainter or QPainterPath using one shape or a group of shapes joined

i have this simple question, i don't get to draw a shape like a tear but without using more that one shape (an ellipse and a polygon) because the QPen is draw for each shape, i want is something like ...
0
votes
1answer
218 views

How do I combine a QImage and QPixmap?

I'm using PyQt, and I've loaded an image from disk into a QPixmap. I've also created a mask, using: self.mask = QImage(self.image.width(), self.image.height(), QImage.Format_Mono) self.mask.fill(0) ...
0
votes
1answer
79 views

QT4: which QPainter::CompositionMode is suitable to merge two pixmaps with white background to mix the two foreground contents

I am using QPainter to put a pixmap onto another. The pixmaps have white BG. I want that the result is a pixmap with white BG but with mixed content, even if it is ugly and confused. I want to create ...
0
votes
1answer
385 views

Smooth line in QGraphicsScene with Qt

I need to draw curves with Qt : the user click on QgraphicsScene (via QGraphicsView) and straight lines are drawn between the points clicked by the user. When the user finish to draw straights lines ...
1
vote
1answer
140 views

Why does my QPainter instance only draw when I use a specific .png?

I'm creating a simple "frogger" type game with Qt Creator. I managed to get a player that works with 4 directional keys, and a car that moves on its own across the screen. I have separate Player, Car, ...
0
votes
3answers
104 views

QPainter Save State

I have a QWidget in which I use a QPainter object to draw some dots but when update() method is invoked, the QWidget's draw is cleared completely. Is there any way to save the actual state and just ...
10
votes
4answers
660 views

Qt/C++ : drawing efficiently

I have designed a program which, basically, cuts a geometrical shape into many small triangles (in a "left canvas"), applies some simple mathematical transformation to the bunch of triangles, and ...
1
vote
1answer
799 views

Qt : draw triangle image

I need to do something similar to QPainter::drawImage, but drawing a triangle part of the given picture (into a triangular region of my widget) instead of working with rectangles. Any idea how I ...
1
vote
1answer
205 views

Drawing a line on transparent qt widget

I want to achieve this : Have a transparent surface of some width and height (A transparent widget) Draw something on this surface such that only outlines of that figure are visible on the screen ...
1
vote
1answer
226 views

`paint` method isn't called after `QGraphicsView` scroll

I have a QGraphicsItem on scene. hoverEnterEvent is reimplemented for this item. This is the code from hoverEnterEvent: grabber = new agnt::A_CornerGrabber(A_CornerGrabber::TOP_RIGHT,this,8,3); ...
0
votes
1answer
101 views

Qt - How to Draw an Icon Image to a QListWidgetItem

I have QListWidget, in that I had added the items. i had made the QListWidgetItems to scroll from right to left in a QWidget. Now i want to add a Icon image before every item that is Scrolling in the ...
1
vote
2answers
141 views

how to get the end position of drawItemText in Qt

I am trying to customize a QPUshButton by subclassing it and overriding the paintEvent. I am writing the text, followed by the icon as below: paintEvent(QPaintEvent *paint) { ...
2
votes
2answers
186 views

Get list of points affected by drawLine() or QLineF

How do I get a list of points/coordinates that the drawLine() function affects? For example if I have QLineF line(10.0, 80.0, 90.0, 20.0); QPainter(this); painter.drawLine(line); I want to get the ...
1
vote
1answer
392 views

Python PyQt: TypeError while pressing the button to change the color of Circle

I am new in Python and using PyQt4 for developing the Gui. I want to change the color of circles while pressing the toggle button. But I am getting the error in slot. My code is: import sys from ...

1 2 3 4