473,383 Members | 1,843 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,383 software developers and data experts.

Want screen capture of server desktop

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. One thing that I would like to be able to do is display a screen
capture of our product running. I have the code to get the screen capture of the
desktop and I also know how to send the image back to the client to be displayed.
The problem is that the code to grab the desktop image doesn't work when running
in my asp.net code on the server.

From what I have read on the subject, I suspect the problem is that the web server
is running under its own virtual desktop. If so can someone tell me if what I am
trying to do is even possible and if so how. The code I am using is as follows:
(I believe gr1.GetHdc() is where things start to fail).

System.Drawing.Image myImage = new Bitmap(1600, 1200);
Graphics gr1 = Graphics.FromImage(myImage);
IntPtr dc1 = gr1.GetHdc();
IntPtr dc2 = GetWindowDC(GetDesktopWindow());
BitBlt(dc1, 0, 0, 1600, 1200, dc2, 0, 0, 13369376);

Response.BufferOutput=true;
Response.Clear();
Response.ContentType="image/gif";
myImage.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Gif);
Response.End();

Thanks,

Terry

Nov 18 '05 #1
5 1041
I think that you can't get a printscreen on server because the server is
logged off.
You can try changing IIS service property. You can try to check Allow
Interact with desktop flag.

Brun

"Te*********@tech.com" <an*******@discussions.microsoft.com> wrote in
message news:07**********************************@microsof t.com...
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. One thing that I would like to be able to do is display a screen capture of our product running. I have the code to get the screen capture of the desktop and I also know how to send the image back to the client to be displayed. The problem is that the code to grab the desktop image doesn't work when running in my asp.net code on the server.

From what I have read on the subject, I suspect the problem is that the web server is running under its own virtual desktop. If so can someone tell me if what I am trying to do is even possible and if so how. The code I am using is as follows: (I believe gr1.GetHdc() is where things start to fail).

System.Drawing.Image myImage = new Bitmap(1600, 1200);
Graphics gr1 = Graphics.FromImage(myImage);
IntPtr dc1 = gr1.GetHdc();
IntPtr dc2 = GetWindowDC(GetDesktopWindow());
BitBlt(dc1, 0, 0, 1600, 1200, dc2, 0, 0, 13369376);

Response.BufferOutput=true;
Response.Clear();
Response.ContentType="image/gif";
myImage.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Gif); Response.End();

Thanks,

Terry

Nov 18 '05 #2
one
You will probably find more expert at this newsgroup

microsoft.public.dotnet.framework.drawing
Nov 18 '05 #3
I am not sure what you mean by "the server is logged off". In this case,
our product will be running on the server at the time I wish to do the screen
capture, so it will have been logged onto by someone.

I did try checking "Allow Interact with desktop flag" for the WWW Publishing
service but that didn't seem to help ... is there another service I should also
be checking that flag for?

Terry

----- Bruno Sirianni wrote: -----

I think that you can't get a printscreen on server because the server is
logged off.
You can try changing IIS service property. You can try to check Allow
Interact with desktop flag.

Brun

"Te*********@tech.com" <an*******@discussions.microsoft.com> wrote in
message news:07**********************************@microsof t.com...
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. One thing that I would like to be able to do is display a screen capture of our product running. I have the code to get the screen capture of the desktop and I also know how to send the image back to the client to be displayed. The problem is that the code to grab the desktop image doesn't work when running in my asp.net code on the server.
From what I have read on the subject, I suspect the problem is that the
web server is running under its own virtual desktop. If so can someone tell me if what I am trying to do is even possible and if so how. The code I am using is as follows: (I believe gr1.GetHdc() is where things start to fail).
System.Drawing.Image myImage = new Bitmap(1600, 1200); Graphics gr1 = Graphics.FromImage(myImage);
IntPtr dc1 = gr1.GetHdc();
IntPtr dc2 = GetWindowDC(GetDesktopWindow());
BitBlt(dc1, 0, 0, 1600, 1200, dc2, 0, 0, 13369376);
Response.BufferOutput=true;

Response.Clear();
Response.ContentType="image/gif";
myImage.Save(Response.OutputStream,

System.Drawing.Imaging.ImageFormat.Gif); Response.End();
Thanks,
Terry

Nov 18 '05 #4
I have tryed yuor code and read MSDN documentation.

gr1.GetHdc() return the device context for a Windows GDI-based structure.
ASP.NET is not in a windows form!!

You can try making a simple form application that do this.
You can run this exe and then get the image...

Brun

"Te*********@tech.com" <an*******@discussions.microsoft.com> wrote in
message news:CE**********************************@microsof t.com...
I am not sure what you mean by "the server is logged off". In this case,
our product will be running on the server at the time I wish to do the screen capture, so it will have been logged onto by someone.

I did try checking "Allow Interact with desktop flag" for the WWW Publishing service but that didn't seem to help ... is there another service I should also be checking that flag for?

Terry

----- Bruno Sirianni wrote: -----

I think that you can't get a printscreen on server because the server is logged off.
You can try changing IIS service property. You can try to check Allow
Interact with desktop flag.

Brun

"Te*********@tech.com" <an*******@discussions.microsoft.com> wrote in
message news:07**********************************@microsof t.com...
> 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. One thing that I would like to be able to do
is display a screen
> capture of our product running. I have the code to get the screen
capture of the
> desktop and I also know how to send the image back to the client to
be displayed.
> The problem is that the code to grab the desktop image doesn't work
when running
> in my asp.net code on the server.
>> From what I have read on the subject, I suspect the problem is
that the web server
> is running under its own virtual desktop. If so can someone tell
me if what I am
> trying to do is even possible and if so how. The code I am using
is as follows:
> (I believe gr1.GetHdc() is where things start to fail).
>> System.Drawing.Image myImage = new Bitmap(1600, 1200);

> Graphics gr1 = Graphics.FromImage(myImage);
> IntPtr dc1 = gr1.GetHdc();
> IntPtr dc2 = GetWindowDC(GetDesktopWindow());
> BitBlt(dc1, 0, 0, 1600, 1200, dc2, 0, 0, 13369376);
>> Response.BufferOutput=true;

> Response.Clear();
> Response.ContentType="image/gif";
> myImage.Save(Response.OutputStream,

System.Drawing.Imaging.ImageFormat.Gif);
> Response.End();
>> Thanks,
>> Terry

>

Nov 18 '05 #5
I have a service (look like IIS) that can execute applicacation.
1 of this application is used for make graphics (Pie, etc...). The component
I use for render this must have the desktop because if not graph is blank!
I have set interact with desktop property of my service and there is not
problem!

When Application run I can see this!!!!

Brun!
"TerryWilson" <an*******@discussions.microsoft.com> wrote in message
news:F9**********************************@microsof t.com...
OK, I tried spawning a simple application that simply grabs the
desktop and writes the image out to a file. If I run the application directly, it works as expected, however, when I spawn it from my aspx page
on the server I simply get a blank image written out to the file.

I still think the key (as I read in another post in this group) is that the web server is running as a service in some virtual desktop that is different from the visible desktop. So how do you get the window handle to the
currently visible desktop???

Terry

----- Bruno Sirianni wrote: -----

I have tryed yuor code and read MSDN documentation.

gr1.GetHdc() return the device context for a Windows GDI-based structure. ASP.NET is not in a windows form!!

You can try making a simple form application that do this.
You can run this exe and then get the image...

Brun

"Te*********@tech.com" <an*******@discussions.microsoft.com> wrote in
message news:CE**********************************@microsof t.com...
> I am not sure what you mean by "the server is logged off". In this case, > our product will be running on the server at the time I wish to do the
screen
> capture, so it will have been logged onto by someone.
>> I did try checking "Allow Interact with desktop flag" for the WWW
Publishing
> service but that didn't seem to help ... is there another service I

should also
> be checking that flag for?
>> Terry
>> ----- Bruno Sirianni wrote: -----
>> I think that you can't get a printscreen on server because the server
is
> logged off.
> You can try changing IIS service property. You can try to
check Allow > Interact with desktop flag.
>> Brun
>> "Te*********@tech.com" <an*******@discussions.microsoft.com>
wrote in > message news:07**********************************@microsof t.com... >> 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. One thing that I would like to be able to do

is
> display a screen
>> capture of our product running. I have the code to get the screen

capture
> of the
>> desktop and I also know how to send the image back to the client

to be
> displayed.
>> The problem is that the code to grab the desktop image doesn't
work when
> running
>> in my asp.net code on the server.
>>> From what I have read on the subject, I suspect the problem is

that the
> web server
>> is running under its own virtual desktop. If so can someone tell

me if
> what I am
>> trying to do is even possible and if so how. The code I am using

is as
> follows:
>> (I believe gr1.GetHdc() is where things start to fail).
>>> System.Drawing.Image myImage = new Bitmap(1600, 1200);
>> Graphics gr1 = Graphics.FromImage(myImage);
>> IntPtr dc1 = gr1.GetHdc();
>> IntPtr dc2 = GetWindowDC(GetDesktopWindow());
>> BitBlt(dc1, 0, 0, 1600, 1200, dc2, 0, 0, 13369376);
>>> Response.BufferOutput=true;
>> Response.Clear();
>> Response.ContentType="image/gif";
>> myImage.Save(Response.OutputStream,

> System.Drawing.Imaging.ImageFormat.Gif);
>> Response.End();
>>> Thanks,
>>> Terry
>>

Nov 18 '05 #6

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

Similar topics

3
by: Me Mine | last post by:
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...
4
by: Madestro | last post by:
Hi guys, I have a little problem. I have a class that uses Windows API to capture a snapshot of the screen. I have this class in a library that I include in my projects. When I try to use...
0
by: hellokitty | last post by:
GetDC/GetWindowDC can only capture on screen,visually, stuff and not for screen in background If I execute an exe in other desktop, by CreateDesktop/SwitchDesktop, it requires to actually...
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. ...
3
by: Marcob | last post by:
Is there any component out there to capture screen text from a specific region on any active external application form. Thanks Marco
2
by: Juan Romero | last post by:
Guys, I am trying to capture the desktop screen (everything). I am having a problem with the "CreateCompatibleBitmap" API call. For some reason the function is creating a 1x1 pixels bitmap...
4
by: gwhite1 | last post by:
I use this code to capture a screen in a regular VB 2005 windows app. It works great! I found the code in google. But when I create a windows service it does not capture the screen. It only...
2
by: Rune Strand | last post by:
Is it possible by use of pyWin32 or ctypes to make a screen capture of an inactive, or a hidden window if the hwnd/WindowName/ClassName is known? I've seen dedicated screen capture software do...
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...
1
by: hemant | last post by:
I am trying to Caputre the screen in windows service with the GDI Api of Win32 in vb.net 1. CreateDc 2. CreateCompatibleDC 3. CreateCompatibleBitmapDc 4. Bitblt 5. SelectObject 6. ...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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...

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.