AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Search found 341 matches
AutoHotkey Community Forum Index
Author Message
  Topic: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
holomind

Replies: 82
Views: 31974

PostForum: Scripts & Functions   Posted: Sun Jan 08, 2012 9:56 pm   Subject: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
seems to be a problem related to windows 7, as it works on windows xp.
in general in vista and i think also in windows 7 the rendering is not directly on the screen anymore but handled as buffers an ...
  Topic: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
holomind

Replies: 82
Views: 31974

PostForum: Scripts & Functions   Posted: Sun Jan 08, 2012 6:58 pm   Subject: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
seems to be a problem related to windows 7, as it works on windows xp.
in general in vista and i think also in windows 7 the rendering is not directly on the screen anymore but handled as buffers an ...
  Topic: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
holomind

Replies: 82
Views: 31974

PostForum: Scripts & Functions   Posted: Tue Jan 03, 2012 11:34 am   Subject: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
@cholya89: maybe the ahk version is not compatible anymore with the script. this would explain that the exe version is working. also the exe might be an other version than the latest .ahk script. whic ...
  Topic: ScreenMagnifier
holomind

Replies: 99
Views: 76659

PostForum: Scripts & Functions   Posted: Sat Sep 03, 2011 7:52 pm   Subject: ScreenMagnifier
Is there a way to modify this so that the mouse cursor isn't hidden in the magnifier window??
I noticed a couple people have asked but couldn't find a response.

thanks, great script!!

Ben

th ...
  Topic: ScreenMagnifier
holomind

Replies: 99
Views: 76659

PostForum: Scripts & Functions   Posted: Sat Sep 03, 2011 7:37 pm   Subject: ScreenMagnifier
also looking for a method to rotate the cloned windows by 90/180 degress... feasible?

it's possible with the image-transform functions. but it will be more complicated than just doing a bitblt. als ...
  Topic: ScreenMagnifier
holomind

Replies: 99
Views: 76659

PostForum: Scripts & Functions   Posted: Sat Sep 03, 2011 7:27 pm   Subject: ScreenMagnifier
Is there a way to display the crosslines without having to redraw everything every 15 ms or whatever you use in settimer?
I am thinking of layers, like one layer get updated for the zoom and get upda ...
  Topic: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
holomind

Replies: 82
Views: 31974

PostForum: Scripts & Functions   Posted: Tue Jul 19, 2011 1:09 pm   Subject: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
if you want to send the screenshot to a "real printer" here is the theoretical part in the MSDN-Library , explaining the GDIP-Functions.


get printername:
// Get the printer n ...
  Topic: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
holomind

Replies: 82
Views: 31974

PostForum: Scripts & Functions   Posted: Tue Jul 19, 2011 12:49 pm   Subject: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
#Include, Gdip.ahk ;Thanks to Tic http://www.autohotkey.com/forum/topic32238.html

Gdip_Startup_with_Token()
SetTitleMatchMode, 2
WinGet, hwnd, ID, Dispositivo(IP_Camera) ...
  Topic: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
holomind

Replies: 82
Views: 31974

PostForum: Scripts & Functions   Posted: Tue Jul 19, 2011 12:42 pm   Subject: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
If !pToken := Gdip_Startup()
{
MsgBox, 48, gdiplus error!, Gdiplus failed to start. Please ensure you have gdiplus on your system
ExitApp
}

this looks messy to me, w ...
  Topic: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
holomind

Replies: 82
Views: 31974

PostForum: Scripts & Functions   Posted: Tue Jul 19, 2011 12:29 pm   Subject: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
If you want to minimize to get it out of the way when using the pc ,you could instead just move it offscreen using winmove.

yes i can confirm that, printwindow does not work with minimized windows. ...
  Topic: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
holomind

Replies: 82
Views: 31974

PostForum: Scripts & Functions   Posted: Sun Jul 17, 2011 11:09 pm   Subject: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
hi guest, there is an example to print a file with ahk. here they create a full document by drawing, i think this can be simplified to just put the captured bitmap (hbm) onto the document and then use ...
  Topic: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
holomind

Replies: 82
Views: 31974

PostForum: Scripts & Functions   Posted: Tue Jul 12, 2011 3:00 pm   Subject: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
if you use printwindow or gdip_getBmpfromwind(hdc), then the zindex of a window will not be changed. its the easiest method. it will make screenshot of window even if it is invisibe behind others. its ...
  Topic: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
holomind

Replies: 82
Views: 31974

PostForum: Scripts & Functions   Posted: Tue Jul 12, 2011 2:21 pm   Subject: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
yes its probably much easier with the library, which i think, evolved out of the experiments with this bmp saving-script. but as i understand the "inactive" windows should be captured, which ...
  Topic: Save Screen (HDC) as BMP or PNG w/o external tools, GDIPlus
holomind

Replies: 82
Views: 31974

PostForum: Scripts & Functions   Posted: Mon Jul 04, 2011 7:47 pm   Subject: Re: capture inactive window
Hi!
I'm looking for a way to capture an inactive window to the clipboard.

I saw the code below from holomind but I don't really know how to use it. Could somebody give me a hand? Thanks a lot,
...
  Topic: HiRes Screen Splitter - Split your sreen like dual monitors
holomind

Replies: 23
Views: 26492

PostForum: Scripts & Functions   Posted: Fri Oct 29, 2010 6:02 pm   Subject: HiRes Screen Splitter - Split your sreen like dual monitors
I hate scripts that use the numpad, a lot of us have laptops Evil or Very Mad

Not so quick my friend, this script was developed on a laptop without numpad !!!! if you read the key-definitions you will noti ...
 
Page 1 of 23 Goto page 1, 2, 3 ... 21, 22, 23  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group