Login Register


[Request] Screen capture filter_list
Author
Message
RE: [Request] Screen capture #12
That's about 6 lines of code. (Even less if you don't waste time disposing because it's the termination of the program, by the time this is done.):
Code:
Using bmp As New Bitmap(My.Computer.Screen.Bounds.Width, My.Computer.Screen.Bounds.Height) Using g As Graphics = Graphics.FromImage(bmp) g.CopyFromScreen(Point.Empty, Point.Empty, bmp.Size) bmp.Save("SAVE LOCATION", ImageFormat.Png) End Using End Using

And the rest is manipulation to make sure that the application never shows any windows to interfere, which is even more simple.

You could change "SAVE LOCATION" to a command line argument and that way you could pin a shortcut with whatever command line output path you want, to your taskbar for a customizable save location without much hassle.
-- cxS

[ Haskell/.NET/C/C++ - Software Engineer ]

Reply





Messages In This Thread
[Request] Screen capture - by shizelkid - 04-18-2013, 12:30 PM
RE: [Request] Screen capture - by i0xIllusi0n - 04-22-2013, 03:21 PM
RE: [Request] Screen capture - by cxS - 04-23-2013, 11:22 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-23-2013, 03:14 PM
RE: [Request] Screen capture - by cxS - 04-24-2013, 12:30 AM
RE: [Request] Screen capture - by 3SidedSquare - 04-24-2013, 02:43 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-24-2013, 03:50 AM
RE: [Request] Screen capture - by cxS - 04-24-2013, 04:19 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-24-2013, 04:50 AM
RE: [Request] Screen capture - by cxS - 04-24-2013, 04:56 AM
RE: [Request] Screen capture - by Nefarious - 04-24-2013, 05:55 AM
RE: [Request] Screen capture - by cxS - 04-24-2013, 07:42 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-25-2013, 03:11 PM
RE: [Request] Screen capture - by cxS - 04-25-2013, 04:54 PM
RE: [Request] Screen capture - by Katakitsu - 04-25-2013, 06:53 PM
Re: RE: [Request] Screen capture - by Oni - 04-25-2013, 09:53 PM
RE: [Request] Screen capture - by cxS - 04-26-2013, 12:03 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-26-2013, 07:01 AM
RE: [Request] Screen capture - by cxS - 04-26-2013, 07:11 AM
RE: [Request] Screen capture - by shizelkid - 04-26-2013, 07:55 AM
RE: [Request] Screen capture - by cxS - 04-26-2013, 08:05 AM
Re: RE: [Request] Screen capture - by Oni - 04-26-2013, 12:56 PM
RE: [Request] Screen capture - by i0xIllusi0n - 04-26-2013, 03:32 PM
RE: [Request] Screen capture - by cxS - 04-26-2013, 10:56 PM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 02:03 AM
RE: [Request] Screen capture - by shizelkid - 04-27-2013, 02:19 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 05:06 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 05:54 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 06:01 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 06:09 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 06:17 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 06:25 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 06:30 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 06:33 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 06:40 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 06:43 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 06:53 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 06:55 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 07:03 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 07:08 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 07:15 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 07:20 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 07:28 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 07:43 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 07:52 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 07:54 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 07:59 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 08:08 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 08:17 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 08:27 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 08:36 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 08:54 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 09:16 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 09:34 AM
RE: [Request] Screen capture - by cxS - 04-27-2013, 10:03 AM
RE: [Request] Screen capture - by i0xIllusi0n - 04-27-2013, 07:26 PM
RE: [Request] Screen capture - by cxS - 04-28-2013, 03:45 AM
RE: [Request] Screen capture - by shizelkid - 04-28-2013, 04:37 AM
RE: [Request] Screen capture - by cxS - 04-28-2013, 04:38 AM
Re: RE: [Request] Screen capture - by Oni - 04-29-2013, 01:02 PM
RE: [Request] Screen capture - by cxS - 04-29-2013, 01:12 PM



Users browsing this thread: 1 Guest(s)