PDA

View Full Version : QImage extension class



rbp
18th November 2008, 01:17
hello,

The QImage class allows a low level pixel interface to the image.
Has anyone come across extensions to QImage that support higher level operations, such as drawing a line?

In the past with PyQT I've used PIL to do these sort of high level operations.

I looked at Qxt and Qwt but no luck. And I haven't found anything yet in this forum or google.

Richard

aamer4yu
18th November 2008, 06:46
QImage inherits QPaintDevice...
and QPainter draws on QPaintDevice...

get the idea ???

rbp
18th November 2008, 06:55
yep I get it,
Thanks!