OS::win xp sp3

Qt::4.6

I am working on the PUZZLE game based on Qt framework and need some help.

In project is included main picture which needs to be disassembled to smaller parts (polygons with images belongig to them). So I make image QImage image = QImage("someImage.jpg") and want to operate with something like croping image on that object.

I checked QImage, QPixmap... docu on nokia site looking for member func. similar to croping but found zero.

Need reference to class I must use ( #include <???> ) to solve this problem and then I will recheck online docu.

link|improve this question
and you'd better use tag qt4 instead of qt4.6 – Raiv Dec 23 '10 at 11:45
feedback

3 Answers

You may use these members of QImage

QImage  copy ( const QRect & rectangle = QRect() ) const
QImage  copy ( int x, int y, int width, int height ) const
link|improve this answer
That is OK for rectangles but I need polygons. – nik_02 Dec 23 '10 at 11:46
hmmm... then you may use QRegion, but it has no methods for extracting images parts. Some ugly code like dot-by-dot checking if qregion contains image coordinate may be written if you find nothing better... – Raiv Dec 23 '10 at 11:58
Yes , it seems that there is no direct method for extracting poly-image from image.It must be done indirectly but i need some guidelines for furher action. – nik_02 Dec 23 '10 at 12:02
Dot by dot is too expensive && unusual , must be easier way. – nik_02 Dec 23 '10 at 12:06
and what format you need on exit? something like rectangle with 100% opaque non-used areas? – Raiv Dec 23 '10 at 12:34
show 2 more comments
feedback

You should use a QPixMap: With it you can copy all or parts of the original image into your puzzle parts. By painting into these parts with a transparent color you can make the outside of your polyongs invisible. Or you use bitBlt (Qt 3 Support Member) with QImage for the same effect.

link|improve this answer
feedback

Supposed the original image is called A. You have a polygon P. You want to create a smaller image B which is basically A "cropped" by P. Here are the steps:

  • Create B. To know the size, just use QPolygonF::boundingRect on P.
  • Fill B with transparent color or whatever background color you want to have.
  • Creates a new QPainter that works on B
  • Sets the painter clip path to P (polygon can be converted path), see QPainter::setClipPath
  • Draws A using the painter

Note that you might translate the painter if the bounding rect of P is not in the origin.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.