Tagged Questions
2
votes
2answers
2k views
How to make a QImage or QPixmap semi-transparent - or why is setAlphaChannel obsolete?
4.7 and like to overlay two images on a qgraphicsview. The image on top shall be semi-transparent to allow to see through it. Initially both images are fully opaque. I expected some function for ...
1
vote
1answer
31 views
Qt, low cost way to display only part of large QImage
I draw frequency spectrum of WAV file inside QImage (example: http://savepic.net/2350314.jpg). The WAV file may be long enough to not fit into screen considering good time resolution.
I need to be ...
1
vote
2answers
526 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
1answer
101 views
QBrush texture without tiling
Is there an easy way to get rid of tiling when using a QBrush with texture?
QImage* texture = CreateQImage(); // create texture
QBrush* brush = new QBrush(*texture); // create texture ...
-3
votes
1answer
30 views
Simple form with pixel manipulation in Qt
I'm completely newbie to Qt
i want to create a 800X600 window that just show some circle and be able to manipulate pixels of the form. there is no interaction between user and form(no click, no ...