我先道歉;我是 c 的新手,我真的不知道自己在做什么。
我正在尝试使用 Windows 7 和 c 捕获和显示屏幕截图。我知道这听起来很愚蠢,最终我会在不同的程序中需要这些功能中的每一个,捕获屏幕的那个会将图像发送到显示它的那个但是现在我只是想让它们都在一个程序中工作.这是我到目前为止整理的代码:
#include <windows.h>
bool ScreenCapture(int x, int y, int width, int height){
// get a DC compat. w/ the screen
HDC hDc = CreateCompatibleDC(0);
// make a bmp in memory to store the capture in
HBITMAP hBmp = CreateCompatibleBitmap(GetDC(0), width, height);
// join em up
SelectObject(hDc, hBmp);
// copy from the screen to my bitmap
BitBlt(hDc, 0, 0, width, height, GetDC(0), x, y, SRCCOPY);
HDC myhDc = GetDC(hBitmap, sizeof(BITMAP), (LPSTR)&Bitmap);
BitBlt(myhDc, 0, 0, width, height, hDc, x, y, SRCCOPY);
//Display bitmap
DrawBitmap(myhDC,0,0,hBmp,SRCCOPY);
//GetDC(hBitmap, sizeof(BITMAP), (LPSTR)&Bitmap);
// free the bitmap memory
DeleteObject(hBmp);
return 0;
}
int main(){
ScreenCapture(500, 200, 300, 300);
system("pause");
}
我只是没能找到显示 HBITMAP 的方法。如何显示 HBITMAP?
更新:我添加了 DrawBitmap 但它不起作用...我得到以下输出但不确定如何处理它:
“win_screenshot.exe”:已加载“C:\Users\mbrooker\Documents\Visual Studio 2010\Projects\win_screenshot\Debug\win_screenshot.exe”,已加载符号。 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\ntdll.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\kernel32.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\KernelBase.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\user32.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\gdi32.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\lpk.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\usp10.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\msvcrt.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\advapi32.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\sechost.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\rpcrt4.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\sspicli.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\cryptbase.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\msvcr100d.dll”,已加载符号。 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\imm32.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\msctf.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“C:\Windows\SysWOW64\apphelp.dll”,无法找到或打开 PDB 文件 “win_screenshot.exe”:已加载“ImageAtBase0x4ab60000”,加载已被包含/排除设置禁用。 “win_screenshot.exe”:卸载“ImageAtBase0x4ab60000” 程序“[1480] win_screenshot.exe: Native”已退出,代码为 0 (0x0)。
最佳答案
显示 HBITMAP 会涉及将其 blitting(例如通过 BitBlt)到另一个 DC。以类似于您已经在做的方式,只是到另一个 DC,例如窗口的 DC,请参见 GetDC。
MSDN 为您提供示例代码:Scaling an Image , 请参见 DrawBitmap 函数。
关于c - 显示 HBITMAP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8197367/
我得到了一个包含嵌套链接的表单。编辑时链接字段为空的问题。这是我的表格:Editingkategori{:action=>'update',:id=>@konkurrancer.id})do|f|%>'Trackingurl',:style=>'width:500;'%>'Editkonkurrence'%>|我的konkurrencer模型:has_one:link我的链接模型:classLink我的konkurrancer编辑操作:defedit@konkurrancer=Konkurrancer.find(params[:id])@konkurrancer.link_attrib
我主要使用Ruby来执行此操作,但到目前为止我的攻击计划如下:使用gemsrdf、rdf-rdfa和rdf-microdata或mida来解析给定任何URI的数据。我认为最好映射到像schema.org这样的统一模式,例如使用这个yaml文件,它试图描述数据词汇表和opengraph到schema.org之间的转换:#SchemaXtoschema.orgconversion#data-vocabularyDV:name:namestreet-address:streetAddressregion:addressRegionlocality:addressLocalityphoto:i
所以我在关注Railscast,我注意到在html.erb文件中,ruby代码有一个微弱的背景高亮效果,以区别于其他代码HTML文档。我知道Ryan使用TextMate。我正在使用SublimeText3。我怎样才能达到同样的效果?谢谢! 最佳答案 为SublimeText安装ERB包。假设您安装了SublimeText包管理器*,只需点击cmd+shift+P即可获得命令菜单,然后键入installpackage并选择PackageControl:InstallPackage获取包管理器菜单。在该菜单中,键入ERB并在看到包时选择
我试图在索引页中创建一个超链接,但它没有显示,也没有给出任何错误。这是我的index.html.erb代码。ListingarticlesTitleTextssss我检查了我的路线,我认为它们也没有问题。PrefixVerbURIPatternController#Actionwelcome_indexGET/welcome/index(.:format)welcome#indexarticlesGET/articles(.:format)articles#indexPOST/articles(.:format)articles#createnew_articleGET/article
我是rails的新手,想在form字段上应用验证。myviewsnew.html.erb.....模拟.rbclassSimulation{:in=>1..25,:message=>'Therowmustbebetween1and25'}end模拟Controller.rbclassSimulationsController我想检查模型类中row字段的整数范围,如果不在范围内则返回错误信息。我可以检查上面代码的范围,但无法返回错误消息提前致谢 最佳答案 关键是您使用的是模型表单,一种显示ActiveRecord模型实例属性的表单。c
目前,Itembelongs_toCompany和has_manyItemVariants。我正在尝试使用嵌套的fields_for通过Item表单添加ItemVariant字段,但是使用:item_variants不显示该表单。只有当我使用单数时才会显示。我检查了我的关联,它们似乎是正确的,这可能与嵌套在公司下的项目有关,还是我遗漏了其他东西?提前致谢。注意:下面的代码片段中省略了不相关的代码。编辑:不知道这是否相关,但我正在使用CanCan进行身份验证。routes.rbresources:companiesdoresources:itemsenditem.rbclassItemi
如果我在模型中设置验证消息validates:name,:presence=>{:message=>'Thenamecantbeblank.'}我如何让该消息显示在闪光警报中,这是我迄今为止尝试过的方法defcreate@message=Message.new(params[:message])if@message.valid?ContactMailer.send_mail(@message).deliverredirect_to(root_path,:notice=>"Thanksforyourmessage,Iwillbeintouchsoon")elseflash[:error]
我刚刚按照thebootsygempage上的安装说明进行操作在我保存并查看帖子内容之前,一切看起来都不错。这是输出在View中的样子:HeaderSubhead:似乎没有呈现任何html格式,因为它被引号或类似的东西转义了-其他人有这个问题吗?我没有在github页面或SO上看到任何问题来指出我正确的方向。除了遵循gem安装说明之外,我还没有做任何事情,但也许我错过了什么或者只是犯了一个愚蠢的错误。如果你还有什么想知道的,请尽管问。干杯 最佳答案 你需要有这样的东西,转义html: 关
我正在写一篇关于在Ruby中几乎一切都是对象的博客文章,我试图通过以下示例来展示这一点:classCoolBeansattr_accessor:beansdefinitialize@bean=[]enddefcount_beans@beans.countendend所以从类中我们可以看出它有4个方法(当然,除非我错了):它可以在创建新实例时初始化一个默认的空bean数组它可以计算它有多少个bean它可以读取它有多少个bean(通过attr_accessor)它可以向空数组写入(或添加)更多bean(也通过attr_accessor)但是,当我询问类本身它有哪些实例方法时,我没有看到默认
关于这个有很多问题,但似乎都没有帮助。是的,我看过thisrailscast.我有一个作者,他有很多书,像这样:作者:classAuthor书:classBook我创建了以下表单以在authors#show中向作者添加一本书:#labelsandbuttons......使用以下authors_controller方法:defshow@author=Author.find(params[:id])@book=@author.books.buildend...以及以下books_controller方法:defcreate@author=Author.find(params[:autho