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. Taking screenshot in qt application
Qt 6.11 is out! See what's new in the release blog

Taking screenshot in qt application

Scheduled Pinned Locked Moved Unsolved General and Desktop
4 Posts 4 Posters 728 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.
  • F Offline
    F Offline
    firsnur96
    wrote on last edited by
    #1

    I want to create a push button for taking a screenshot.
    In QT, how can i take a screenshot in my app?

    jsulmJ 1 Reply Last reply
    0
    • F firsnur96

      I want to create a push button for taking a screenshot.
      In QT, how can i take a screenshot in my app?

      jsulmJ Offline
      jsulmJ Offline
      jsulm
      Lifetime Qt Champion
      wrote on last edited by
      #2

      @firsnur96 Google says: https://doc.qt.io/qt-5/qtwidgets-desktop-screenshot-example.html

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      7
      • B Offline
        B Offline
        BruceLin
        wrote on last edited by
        #3

        You could take screenshot from classic C++:
        https://stackoverflow.com/questions/50359643/c-screen-capture-how-to-read-the-bitmap

        And use (with HBITMAP, don't delete hBitmap Object before you use this):

        QImage image = QtWin::fromHBITMAP(hBitmap).toImage(); 
        
        1 Reply Last reply
        0
        • Jonas KvingeJ Offline
          Jonas KvingeJ Offline
          Jonas Kvinge
          wrote on last edited by
          #4

          You can try QScreen::grabWindow():
          https://doc.qt.io/qt-6/qscreen.html#grabWindow

          1 Reply Last reply
          1

          • Login

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