473,405 Members | 2,210 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

win32ui screen capture

i,
I have trying to code a small console app that will
allow a user to select a window and then create a
screen capture of the window. I haven't been able to
figure out how to do the screen capture part. The
code is as follows, the commented out lines at the end
are things I have tried, but don't work. Whenever I
try to create a compatibe Bitmap or DC it comes back
with an error as
win32ui: CreateCompatibleDC failed
or
AttributeError: CreateCompatibleDC
Any help would be greatly appreciated.

import win32gui
import win32ui

numWindows = 0
windows = []
winDict = {}
windowsText=[]
inc = 0

def _MyCallback( hwnd, extra ):
extra.append(hwnd)
win32gui.EnumWindows(_MyCallback, windows)
for i in windows:
if win32gui.IsWindowVisible(i):
if win32gui.IsWindowVisible:
windowsText.append(i)
winDict[numWindows] = i
numWindows +=1


print "Please select a window to capture"
for window in windowsText:
windowText = win32gui.GetWindowText(window)
print inc, windowText
inc += 1

selection = input()

print win32gui.GetWindowText(winDict[selection])
myDC = win32ui.CreateDCFromHandle(winDict[selection])
win32gui.SetForegroundWindow(winDict[selection])
win_sz = win32gui.GetClientRect(winDict[selection])
myBitMap = win32ui.CreateBitmap()
#myMemDC = win32ui.CreateCompatibleDC(myDC)
#myBitMap.BitBlt((0,0),(win_sz[2],win_sz[3],myDC,(0,0),0))
#myBitMap.CreateCompatibleBitMap(myDC,win_sz[2], win_sz[3])
#myBitMap.CreateCompatibleDC(myDC)
Thanks,
Rob
----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Jul 18 '05 #1
3 13412
On Fri, 27 Jun 2003 05:11:04 GMT, "Mark S Pryor"
<ma**************@CHENEYverizon.net> wrote:
Hi,
<Me Mine> wrote in message
news:o4********************************@4ax.com.. .
i,
I have trying to code a small console app that will
allow a user to select a window and then create a
screen capture of the window. I haven't been able to
figure out how to do the screen capture part. The
code is as follows, the commented out lines at the end
are things I have tried, but don't work. Whenever I
try to create a compatibe Bitmap or DC it comes back
with an error as
win32ui: CreateCompatibleDC failed
or
AttributeError: CreateCompatibleDC
Any help would be greatly appreciated.

import win32gui
import win32ui

numWindows = 0
windows = []
winDict = {}
windowsText=[]
inc = 0

def _MyCallback( hwnd, extra ):
extra.append(hwnd)
win32gui.EnumWindows(_MyCallback, windows)
for i in windows:
if win32gui.IsWindowVisible(i):
if win32gui.IsWindowVisible:
windowsText.append(i)
winDict[numWindows] = i
numWindows +=1


print "Please select a window to capture"
for window in windowsText:
windowText = win32gui.GetWindowText(window)
print inc, windowText
inc += 1

selection = input()

print win32gui.GetWindowText(winDict[selection])
myDC = win32ui.CreateDCFromHandle(winDict[selection])
win32gui.SetForegroundWindow(winDict[selection])
win_sz = win32gui.GetClientRect(winDict[selection])
myBitMap = win32ui.CreateBitmap()
#myMemDC = win32ui.CreateCompatibleDC(myDC)
#myBitMap.BitBlt((0,0),(win_sz[2],win_sz[3],myDC,(0,0),0))
#myBitMap.CreateCompatibleBitMap(myDC,win_sz[2], win_sz[3])
#myBitMap.CreateCompatibleDC(myDC)
Thanks,
Rob


You may be able to make this work ... eventually. However,
circulating in the Python community you will find the C file
_grabscreen.c with all the same API calls you are trying to use
in standard C.

see this post
http://groups.google.com/groups?selm...ython-list%40p
ython.org

It explains how to compile the module _grabscreen.pyd with MS Visual C.
I was able to get a screen shot script in 10 minutes after I read this
post. If you don't have a grabscreen module already, see this ZIP file
for the relevant files. Use the file ImageGrab1.py to make a screen
capture of the desktop and save the results as PNG.

(for ActivePython 2.2 only)
http://mysite.verizon.net/res1ur2j/GrabScreen.zip

you will need PIL from
http://www.pythonware.com/products/pil/

hth,
Mark Pryor

Thanks for reponding Mark. I have looked at the grab function in
ImagrGrab from PIL. And it does do exactly what I want it to do,
which is great, but I was hoping to do the program using win32ui and
win32gui so that I could get a better understanding over how Windows
(the OS) operates. The part that bothers me (and the reason why I'm
pursueing this) is because in MS C++ the BitBlt function can take the
Window DC directly as opposed to the BitBlt function in python, which
cannot. Python's BitBlt function (for PyCDC objects in win32ui), can
only take other PyCDC objects for the source of the copy.
Unfortunatley, once I have the window handle I can call the
GetWindowDC method, but it returns HDC Yet, I unable to use this
object to call BitBlt on. When I uncomment the the BitBlt line of
code I get a n error of

TypeError: The 'O' param must be a PyCDC object

So, it appears that I need to do something with the HDC, so I can do a
bitblt transer to the memory DC, but I don't know how to get a PyCDC
object from a HDC.

Thanks,

Rob
----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Jul 18 '05 #2

<Me Mine> wrote in message
news:bn********************************@4ax.com...
Hi again,

ok, so now I'm closer. I can create a compatible memory dc and a new
bitmap, which is always black is created. But I can't figure out how
to BitBlt to the memory DC from the window DC. The line is commented


I tried for 30 minutes, but no joy. I too get a black BMP result.

One suggestion. Add this
import win32con as con

In bltbit( , , , 204) use
con.SRCCOPY) instead

hth,
Mark Pryor
Jul 18 '05 #3
Mark S Pryor wrote:
You may be able to make this work ... eventually. However,
circulating in the Python community you will find the C file
_grabscreen.c with all the same API calls you are trying to use
in standard C.

see this post
http://groups.google.com/groups?selm...ython-list%40p
ython.org

It explains how to compile the module _grabscreen.pyd with MS Visual C.
I was able to get a screen shot script in 10 minutes after I read this
post. If you don't have a grabscreen module already, see this ZIP file
for the relevant files. Use the file ImageGrab1.py to make a screen
capture of the desktop and save the results as PNG.

(for ActivePython 2.2 only)
http://mysite.verizon.net/res1ur2j/GrabScreen.zip

you will need PIL from
http://www.pythonware.com/products/pil/


note that PIL 1.1.3 and later includes screen grabbing facilities;
for details, see:

http://www.effbot.org/zone/pil-imagegrab.htm

</F>


Jul 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: TerryWilson | last post by:
I am developing a web based service tool using asp.net that we will distribute with our product. This service tool will be used for remotely configuring the product, problem determination, etc. ...
0
by: D Sheldon | last post by:
Has anyone ever created a screen capture method for ASP.Net? What I have in mind is adding a method to my custom error logging class that will take a screen capture of the user's browser and then...
4
by: gregory_may | last post by:
http://www.geocities.com/krishnapg/screencap.html This article gives a pretty good background on various ways to capture the screen. I have some code to do it the GDI way below, but I cant...
2
by: Eddie Dunn | last post by:
I have one here that I cannot find anything on in my searching. I am implementing a screen capture functionality into my Visual Basic ..NET application. The code I am using calls the bitblt...
2
by: py | last post by:
I need to take a screen shot of the computer screen. I am trying to use PIL and I saw there is ImageGrab...however it only works on Windows. Is there a platform-independent ability to work...
2
by: dumbledad | last post by:
Hi All, I'm using ASP.Net web services to provide the logic required for a Flash based prototype. The Flash and the ASP .Net run together on the client machine. One of the functions I'd like to...
1
by: JP2006 | last post by:
I'm trying to write a control that will take a screen capture of a particular website when a user submits a form in a web application; one of the form fields is for a URL - the control needs to get...
0
by: Jim McGivney | last post by:
I have goggled "Asp.net Screen Capture" and looked at many articles, but have never succeeded in a screen capture. Has anyone been able to accomplish Screen Capture in 2005 VWD C# ? Let me know...
2
by: raylopez99 | last post by:
Beware newbies: I spent a day before I figured this out: copying a bitmap (image) file to file is not quite like copying a text file--you have to do some tricks (see below), like using a...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.