Tagged Questions

2
votes
1answer
228 views

QImage: is there any lazy copying crop method

I was trying to use QImage for loading image and checking the equality with a template sub-image that moves all over the image. The code is as: for i in range(image.height() - backgroundMask.height() ...
1
vote
1answer
14 views

Drawing on a QImage simultaneously with two QPainter instances

I am working on an application in PyQt4. In my application I will need to draw on a QImage according to data from two sources (for example, imagine periodically-called irregularly-timed methods which ...
1
vote
2answers
546 views

PyQt4 - Image Watermark

I'm trying to open a PNG image and write some text to it (a watermark) via QImage and QPainter. The code works 100% on Linux but when I run it on Windows XP (haven't tested with any other versions of ...
0
votes
0answers
22 views

How to draw QGraphicsItems onto an image?

I am working on a PyQt4 application which uses QGraphicsScene in the core. Items are dynamically added onto the scene at irregular intervals by the program, and can also be manually added by the ...