剪贴板数据上使用的 GlobalSize 函数导致错误
GlobalSize function used on Clipboard Data cause error
首先我想说的是我的英语很糟糕,所以如果我的描述变成一堆废话请发表评论,这样我就可以试着澄清我的问题。
情况
我正在尝试访问剪贴板并存储所有可能格式的所有数据。我听 WM_CLIPBOARDUPDATE
message then loop through all the format available, get the data for each of the format, get the size then allocate a new memory for them. My googling tell me to use the GlobalSize()
功能来做到这一点。问题就出现了。
环境
我正在 Visual C++ 2017 版本 4.7.02556 上使用 C++ 开发 Win32 桌面应用程序。如果重要的话,我正在使用 Windows 10 64 位。
重现错误
这是我用来处理 Windows 消息的函数,我删除了 WM_CREATE 或 WM_DESTROY 等其他消息,因为它们与问题无关。 consoleOutput()
函数用于调试,它们工作正常。
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam){
switch (message){
case WM_CLIPBOARDUPDATE: {
try {
if (OpenClipboard(hWnd)){
UINT uFormat = EnumClipboardFormats(0); // Get the first clipboard format available
HANDLE hContent;
while (uFormat) { //Iterate through all formats
hContent = GetClipboardData(uFormat); // Get the clipboard data of that format
if (hContent) {
SIZE_T size = GlobalSize(hContent); // Get the size of the data I just got
//ERROR
}
uFormat = EnumClipboardFormats(uFormat); // Get the next format
}
}
CloseClipboard();
}
catch (int error) {
CloseClipboard(); // Attempt to close clipboard if thing went wrong
consoleOutput(GetLastError());
throw;
}
}
break;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
}
return 0;
}
该代码适用于我尝试从文本复制到随机 files/directories 的所有内容。但是当我试图复制图像时,我的程序给了我一个错误,例如:
- 使用 MS Paint 打开图像,select图像的任何部分并复制它,然后出现错误。
- 用Picasa打开图片,右击select复制出现错误
- 按 PrntScr 按钮,出现错误。
错误在 SIZE_T size = GlobalSize(hContent);
行抛出,它是:
Critical error detected c0000374 YClipboard.exe has triggered a breakpoint.
或
Exception thrown at 0x77E17ECC (ntdll.dll) in YClipboard.exe: 0xC0000005: Access violation reading location 0xDD46116F.
错误不是持续性的,大多数时候它出现在第一个副本中,有时我可以复制图像,但是用同一张图像复制多次会导致错误。最重要的是,仅尝试复制 "image" 数据会导致问题。
到目前为止我尝试了什么
我是开发桌面应用程序的新手,我的搜索没有在其他任何地方发现问题。当我使用第三方应用程序查看剪贴板数据时,我发现只有当我的程序遇到 CF_BITMAP
或 CF_METAFILEPICT
格式时才会出现错误,而且(并非如此)巧合的是这两种格式都有大小为 0 的内存。我仍然无法解决我的问题。
我需要的
有人请告诉我这个问题:问题是什么,它的原因,如何解决它或者只是关于另一种方法的建议,帮助我读取剪贴板数据的大小以替换 GlobalSize()
功能。
提前致谢。
并非所有剪贴板格式都提供 HGLOBAL
,您可以将其与 GlobalSize()
.
等函数一起使用
例如,CF_BITMAP
表示位图的句柄;可以与 GetObject()
.
等函数一起使用的 HBITMAP
您需要专门处理这些格式。有关详细信息,请参阅 MSDN 上的 Standard Clipboard Formats 列表。
首先我想说的是我的英语很糟糕,所以如果我的描述变成一堆废话请发表评论,这样我就可以试着澄清我的问题。
情况
我正在尝试访问剪贴板并存储所有可能格式的所有数据。我听 WM_CLIPBOARDUPDATE
message then loop through all the format available, get the data for each of the format, get the size then allocate a new memory for them. My googling tell me to use the GlobalSize()
功能来做到这一点。问题就出现了。
环境
我正在 Visual C++ 2017 版本 4.7.02556 上使用 C++ 开发 Win32 桌面应用程序。如果重要的话,我正在使用 Windows 10 64 位。
重现错误
这是我用来处理 Windows 消息的函数,我删除了 WM_CREATE 或 WM_DESTROY 等其他消息,因为它们与问题无关。 consoleOutput()
函数用于调试,它们工作正常。
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam){
switch (message){
case WM_CLIPBOARDUPDATE: {
try {
if (OpenClipboard(hWnd)){
UINT uFormat = EnumClipboardFormats(0); // Get the first clipboard format available
HANDLE hContent;
while (uFormat) { //Iterate through all formats
hContent = GetClipboardData(uFormat); // Get the clipboard data of that format
if (hContent) {
SIZE_T size = GlobalSize(hContent); // Get the size of the data I just got
//ERROR
}
uFormat = EnumClipboardFormats(uFormat); // Get the next format
}
}
CloseClipboard();
}
catch (int error) {
CloseClipboard(); // Attempt to close clipboard if thing went wrong
consoleOutput(GetLastError());
throw;
}
}
break;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
}
return 0;
}
该代码适用于我尝试从文本复制到随机 files/directories 的所有内容。但是当我试图复制图像时,我的程序给了我一个错误,例如:
- 使用 MS Paint 打开图像,select图像的任何部分并复制它,然后出现错误。
- 用Picasa打开图片,右击select复制出现错误
- 按 PrntScr 按钮,出现错误。
错误在 SIZE_T size = GlobalSize(hContent);
行抛出,它是:
Critical error detected c0000374 YClipboard.exe has triggered a breakpoint.
或
Exception thrown at 0x77E17ECC (ntdll.dll) in YClipboard.exe: 0xC0000005: Access violation reading location 0xDD46116F.
错误不是持续性的,大多数时候它出现在第一个副本中,有时我可以复制图像,但是用同一张图像复制多次会导致错误。最重要的是,仅尝试复制 "image" 数据会导致问题。
到目前为止我尝试了什么
我是开发桌面应用程序的新手,我的搜索没有在其他任何地方发现问题。当我使用第三方应用程序查看剪贴板数据时,我发现只有当我的程序遇到 CF_BITMAP
或 CF_METAFILEPICT
格式时才会出现错误,而且(并非如此)巧合的是这两种格式都有大小为 0 的内存。我仍然无法解决我的问题。
我需要的
有人请告诉我这个问题:问题是什么,它的原因,如何解决它或者只是关于另一种方法的建议,帮助我读取剪贴板数据的大小以替换 GlobalSize()
功能。
提前致谢。
并非所有剪贴板格式都提供 HGLOBAL
,您可以将其与 GlobalSize()
.
例如,CF_BITMAP
表示位图的句柄;可以与 GetObject()
.
HBITMAP
您需要专门处理这些格式。有关详细信息,请参阅 MSDN 上的 Standard Clipboard Formats 列表。