Project1

标题: 如何获取整个画面和图片文件中的像素? [打印本页]

作者: David_Exmachina    时间: 2019-10-5 15:49
标题: 如何获取整个画面和图片文件中的像素?
bitmap类中有一个函数叫get_pixel,
它能获取位图里坐标对应的像素颜色值。
但是这个函数获得的是仅限在位图中的像素,
而我希望获得的是整个画面中某个像素的颜色。

此外,我也想要获得图片文件中某个像素的颜色。
如何可以实现这些功能呢?

作者: 张咚咚    时间: 2019-10-5 17:53
画面的话用截图脚本截图后得到bitmap,在获取。
文件那个先加载在获取。Bitmap.new(文件路径).get_pixel
作者: KB.Driver    时间: 2019-10-6 01:58

RUBY 代码复制
  1. FindWindow = Win32API.new "user32.dll", "FindWindow", %w{L P}, "L"
  2. GetDC = Win32API.new "user32.dll", "GetDC", 'L', "L"
  3. GetPixel = Win32API.new "gdi32.dll", "GetPixel", %w{L L L}, "L"
  4.  
  5. TitleName = File.read("Game.ini").match(/Title=(\S+)$/)[1]
  6. GameHwnd = FindWindow.call(0, TitleName)
  7. GameDC = GetDC.call(GameHwnd)
  8.  
  9. p "TitleName=#{TitleName}"
  10. p "GameHwnd=#{GameHwnd}"
  11. p "GameDC=#{GameDC}"
  12.  
  13. def get_game_pixel(x, y)
  14.   color_ref = GetPixel.call(GameDC, x, y)
  15.   b = (color_ref & 0xFF0000) >> 8 * 2
  16.   g = (color_ref & 0x00FF00) >> 8 * 1
  17.   r =  color_ref & 0x0000FF
  18.   color = Color.new(r,g,b)
  19. end



作者: David_Exmachina    时间: 2019-10-6 12:26
KB.Driver 发表于 2019-10-6 01:58
FindWindow = Win32API.new "user32.dll", "FindWindow", %w{L P}, "L"
GetDC = Win32API.new "user32.dl ...

太给力了,真是太感谢了。(*^▽^*)




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1