粘贴 PNG/JPG 文件时不支持剪贴板格式
我正在编写一个单元,可以在其中粘贴剪贴板中的图像并将其保存在数据库中。如果我从 WhatsApp/Telegram Web 截取屏幕截图或复制图像,该代码实际上可以工作。
但是当我尝试从剪贴板粘贴 PNG 或 JPG 文件时出现问题 - 错误消息是:
不支持的剪贴板格式
为什么此代码适用于屏幕截图,但不适用于 PNG 或 JPG 文件?我该如何修复它?
BMP := TBitmap.Create;
BMP.Assign(Clipboard); //Here is where I got the exception
BMP.PixelFormat := pf32bit;
JPG := TJPEGImage.Create;
JPG.Assign(BMP);
JPG.CompressionQuality := 75;
AdvOfficeImage1.Picture.Assign(JPG);
I'm coding a unit where I can paste an image from the clipboard and save it in a DB. The code actually works if I took screenshots or copy images from WhatsApp/Telegram Web.
But the problems appears when I try to paste a PNG or JPG file from the clipboard - the error message is:
Unsupported clipboard format
Why does this code work with screenshots but not with PNG or JPG files? How can I fix it?
BMP := TBitmap.Create;
BMP.Assign(Clipboard); //Here is where I got the exception
BMP.PixelFormat := pf32bit;
JPG := TJPEGImage.Create;
JPG.Assign(BMP);
JPG.CompressionQuality := 75;
AdvOfficeImage1.Picture.Assign(JPG);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果从 shell 复制文件,剪贴板将不包含文件的内容,而仅包含文件名。
因此,您需要获取此文件名,然后使用它来加载图像。
下面是一个小示例,仅包含一个
TImage
控件:注意:
Clipboard
在Clipbrd
中声明,DragQueryFile
在 <代码>ShellAPI。If you copy a file from the shell, the clipboard will not contain the contents of the file, but merely the file name.
Hence, you need to obtain this file name, and then use it to load your image.
Here's a small example, just containing a
TImage
control:Note:
Clipboard
is declared inClipbrd
andDragQueryFile
inShellAPI
.