Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. How to get DC from QPainter in windows?

How to get DC from QPainter in windows?

Scheduled Pinned Locked Moved General and Desktop
1 Posts 1 Posters 901 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Q Offline
    Q Offline
    qingyun
    wrote on last edited by
    #1

    I have a very very strange question, it is very urgent, hope anybody can help me!

    I want to get a native DC from QPainter. I tried like this:
    QPaintEngine* pe = painter.paintEngine();
    HDC dc = pe->getDC();

    This works fine if this painter is from a widget, like:
    QPainter painter(this); //"this" is widget
    But my painter is from a QPixmap:
    QPixmap pix(w, h);
    QPainter painter(&pix);

    This always fails!!! The DC in paintEngine() is always 0!

    Can anybody help me?

    Thanks!

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved