作者kslman ()
看板EzHotKey
标题Re: [AHK-] 抓取图档高度和宽度的方法
时间Mon Jun 28 12:16:55 2010
参考了官网的help,写了下面这个东西,可以得到图档的宽跟高:
--------start----------
; Example: A moving progress bar overlayed on a background image.
link = C:\test.png ;图档连结
Gui, Add, Picture, x0 y0 , %link%
Gui, Show
WinGetActiveStats, A, Width, Height, X, Y
WinSet, Transparent, 0, a ;让当前视窗透明度为10
Width := Width -17
Height := Height -38
MsgBox, The active window "%Title%" is %Width% wide`, %Height% tall`, and
positioned at %X%`,%Y%.
ExitApp
return
GuiClose:
ExitApp
---------end-----------
不过缺点是路径不能有中文...图不能超过萤幕大小...
还在尝试克服中。
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 122.147.6.242
※ 编辑: kslman 来自: 122.147.6.242 (06/28 12:21)