Notifications
Clear all

[Closed] dotNet Screen Capture?

 PEN

Can any one see what I’m doing wrong here. This is just capturing black so I’m guessing I’m missing something, can any one see what it is?


		newBmp=dotNetObject "system.drawing.bitMap" 100 100 ((dotNetClass "system.Drawing.Imaging.PixelFormat").Format32bppArgb)
		g=(dotNetClass "System.Drawing.graphics").FromImage newBmp
		g.CopyFromScreen 0 0 100 100 (dotNetObject "system.drawing.size" 100 100) (dotNetClass "System.Drawing.CopyPixelOperation").SourceCopy
		newBmp.Save (maxFilePath+"viewportGrab.png") (dotNetClass "system.Drawing.Imaging.ImageFormat").png


5 Replies

The script is capturing black because newBmp is pasted on g at position [100,100].

Try this:

g.CopyFromScreen 100 100 0 0 (dotNetObject "system.drawing.size" 100 100)

More Infos on CopyFromScreen :
http://msdn.microsoft.com/en-us/library/cdcw1c3b.aspx


Fn ScreenCapture PosX PosY ImgW ImgH ImgFileName =
(
	try
	(
		local DotNetBmp,DotNetGraphics,DotNetPoint
		local tempBmp,tempGraphic
		DotNetBmp = DotNetClass "System.Drawing.Bitmap"
		DotNetGraphics = DotNetClass "System.Drawing.Graphics"
		DotNetPoint = DotNetClass "System.Drawing.Point"		
		tempBmp = DotNetObject "System.Drawing.Bitmap" ImgW ImgH 
		tempGraphic = DotNetGraphics.FromImage tempBmp 
		tempGraphic.CopyFromScreen (DotNetObject DotNetPoint PosX  PosY) \
									(DotNetObject DotNetPoint 0 0) tempBmp.Size 
		tempBmp.Save ImgFileName
		tempGraphic.Dispose()
		true
	)
	catch (false)
)

ScreenCapture  0 0 200 200 "c:\	estScreenCapture.png"

it is my code

 PEN

Sigmao: I see what that does now. I wasn’t really sure of what the third and forth number were doing and didn’t really play with those. Thanks for the help.

CGGD: Thanks as well.

very cool!

J.

 PEN