How to draw an image inside Rounded Rectangle or inside a shape like circle?

Koks_rs

I am new to QT and I want to draw some image inside a shape and image should be croped by a shape. I use the following code to draw a rectangle for example. How to draw image only inside shape?

   QPen pen(Qt::black,penWidth);
   pen.setStyle(Qt::DashLine);

   QPicture picture;
   picture.load("drawing.pic"); 


   painter->setPen(pen);
   painter->drawPicture(0,0, picture);

   painter->drawRoundedRect( (QRectF(x, y, height, width),radius,radius);

PS. Can I load an image to brush?

user4516901

Just set a QBrush for painter.

 QBrush brush(QPixmap("file.png"));
 painter->setBrush(brush);

It will draw the rounded rect filled with file.png image.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to create a 'transparent circle inside rectangle' shape in XML in Android?

From Dev

Android how to draw Rounded Rectangle shape programmatically

From Dev

Android how to draw Rounded Rectangle shape programmatically

From Dev

How to create a rounded rectangle with thickness and an image inside it in canvas

From Dev

Draw a rectangle inside a circle with respect to its center

From Dev

How do I add an image inside a rectangle or a circle in JavaFX?

From Dev

How to draw a rectangle inside a tableviewcell

From Dev

How to make an image inside a diamond shape morph to circle

From Dev

How to draw stroke inside a circle?

From Dev

how to draw rectangle inside a gray binary image in matlab

From Dev

how to draw rectangle inside a gray binary image in matlab

From Dev

How to draw a rectangle inside a rectangle using svg?

From Dev

How to create Rectangle Shape with inside round corners

From Dev

How to draw a rectangle and put a text inside it

From Dev

MFC - How to draw pixel waves inside a rectangle

From Dev

Draw text inside a circle

From Dev

How can I draw an image on to a rounded rectangle? (Java)

From Dev

How to draw a circle inside a path on canvas in Android

From Dev

How to draw circle in rectangle using Java awt image

From Dev

Draw a rectangle on a image inside a canvas using mousemove event in javascript

From Dev

How to get rid of circle inside rectangle when switching between objects

From Dev

Draw a filled circle with number inside

From Dev

Centering text inside rounded rectangle vertically and horizontally

From Dev

SVG image inside circle

From Dev

How to crop image inside the circle in UIImageView in iOS

From Dev

how stretch inside a circle image with nine patch

From Dev

How to create a rounded rectangle shape Css?

From Dev

microsoft excel - how to fit image inside shape?

From Dev

How to draw a rectangle with rounded corners using XML?

Related Related

  1. 1

    How to create a 'transparent circle inside rectangle' shape in XML in Android?

  2. 2

    Android how to draw Rounded Rectangle shape programmatically

  3. 3

    Android how to draw Rounded Rectangle shape programmatically

  4. 4

    How to create a rounded rectangle with thickness and an image inside it in canvas

  5. 5

    Draw a rectangle inside a circle with respect to its center

  6. 6

    How do I add an image inside a rectangle or a circle in JavaFX?

  7. 7

    How to draw a rectangle inside a tableviewcell

  8. 8

    How to make an image inside a diamond shape morph to circle

  9. 9

    How to draw stroke inside a circle?

  10. 10

    how to draw rectangle inside a gray binary image in matlab

  11. 11

    how to draw rectangle inside a gray binary image in matlab

  12. 12

    How to draw a rectangle inside a rectangle using svg?

  13. 13

    How to create Rectangle Shape with inside round corners

  14. 14

    How to draw a rectangle and put a text inside it

  15. 15

    MFC - How to draw pixel waves inside a rectangle

  16. 16

    Draw text inside a circle

  17. 17

    How can I draw an image on to a rounded rectangle? (Java)

  18. 18

    How to draw a circle inside a path on canvas in Android

  19. 19

    How to draw circle in rectangle using Java awt image

  20. 20

    Draw a rectangle on a image inside a canvas using mousemove event in javascript

  21. 21

    How to get rid of circle inside rectangle when switching between objects

  22. 22

    Draw a filled circle with number inside

  23. 23

    Centering text inside rounded rectangle vertically and horizontally

  24. 24

    SVG image inside circle

  25. 25

    How to crop image inside the circle in UIImageView in iOS

  26. 26

    how stretch inside a circle image with nine patch

  27. 27

    How to create a rounded rectangle shape Css?

  28. 28

    microsoft excel - how to fit image inside shape?

  29. 29

    How to draw a rectangle with rounded corners using XML?

HotTag

Archive