粘贴 PNG/JPG 文件时不支持剪贴板格式

发布于 2025-01-16 06:32:33 字数 482 浏览 0 评论 0原文

我正在编写一个单元,可以在其中粘贴剪贴板中的图像并将其保存在数据库中。如果我从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

茶底世界 2025-01-23 06:32:33

如果从 shell 复制文件,剪贴板将不包含文件的内容,而仅包含文件名。

因此,您需要获取此文件名,然后使用它来加载图像。

下面是一个小示例,仅包含一个 TImage 控件:

procedure TForm1.FormClick(Sender: TObject);
begin

  if Clipboard.HasFormat(CF_HDROP) then
  begin

    Clipboard.Open;
    try
      var LDrop := Clipboard.GetAsHandle(CF_HDROP);
      if LDrop <> 0 then
      begin
        var LFileCount := DragQueryFile(LDrop, $FFFFFFFF, nil, 0);
        if LFileCount = 1 then
        begin
          var LSize := DragQueryFile(LDrop, 0, nil, 0);
          if LSize <> 0 then
          begin
            var LFileName: string;
            SetLength(LFileName, LSize);
            if DragQueryFile(LDrop, 0, PChar(LFileName), LFileName.Length + 1) <> 0 then
              Image1.Picture.LoadFromFile(LFileName);
          end;
        end;
      end;
    finally
      Clipboard.Close;
    end;

  end;

end;

注意:ClipboardClipbrd 中声明,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:

procedure TForm1.FormClick(Sender: TObject);
begin

  if Clipboard.HasFormat(CF_HDROP) then
  begin

    Clipboard.Open;
    try
      var LDrop := Clipboard.GetAsHandle(CF_HDROP);
      if LDrop <> 0 then
      begin
        var LFileCount := DragQueryFile(LDrop, $FFFFFFFF, nil, 0);
        if LFileCount = 1 then
        begin
          var LSize := DragQueryFile(LDrop, 0, nil, 0);
          if LSize <> 0 then
          begin
            var LFileName: string;
            SetLength(LFileName, LSize);
            if DragQueryFile(LDrop, 0, PChar(LFileName), LFileName.Length + 1) <> 0 then
              Image1.Picture.LoadFromFile(LFileName);
          end;
        end;
      end;
    finally
      Clipboard.Close;
    end;

  end;

end;

Note: Clipboard is declared in Clipbrd and DragQueryFile in ShellAPI.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文