'How to use BitBlt in Python
How would I go about using BitBlt in python? I know how to use PatBlt, but I was wondering how you use BitBlt. How would I put a image on the GDI?
Solution 1:[1]
Hey Everyone!
I figured it out, and you can find the answer here:
for i in range(100):
BitBlt(desk, 1, 1, sw, sh, desk, 0, 0, SRCCOPY)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Brycen Weeks |
