从Word文档中复制TWebrowser

时间:2016-06-28 02:52:08

标签: delphi mshtml delphi-10-seattle twebbrowser

我有一个处于编辑模式的TWebBrowser,我试图允许用户从word文档(或任何地方)复制和粘贴文本和图像并粘贴到Web浏览器中

我已经能够使用以下代码粘贴文本:

pvaIn := EmptyParam;
HtmlEditor.ExecWB(OLECMDID_PASTE, OLECMDEXECOPT_DODEFAULT, pvaIn);

HtmlEditor是我的TWebBrowser组件

我的问题是,当尝试粘贴图片时,网络浏览器似乎知道我粘贴了图片,但它只显示了一个可编辑的文本框。

Pasting into TWebBrowser

有没有办法将图像粘贴到TWebBrowser中?

1 个答案:

答案 0 :(得分:1)

这里的解决方案是将位图保存到磁盘,然后创建一个图像html图像并将其附加到光标位置的HTML。

if clipboard.hasformat(cf_bitmap) then //only if the clipboard currently has a image
begin
    bmp := TBitMap.Create();
    CreateGuid(uid);
    try
        filename := 'cb(' + System.Copy(guidToString(uid), 2, 8) + ').bmp'; //generate a unique filename
        path := ExtractFilePath(paramstr(0)) + filename;//the location where we will save it
        bmp.LoadFromClipboardFormat(cf_bitmap, clipboard.GetAsHandle(cf_bitmap), 0);
        bmp.SaveToFile(path); //save the clipboard image to disk

        Doc2 := nil;
        Doc2 := self.HtmlEditor.Document as IHTMLDocument2;

        if Doc2 = nil then
            exit;

        if Assigned(Doc2.Body) then
        begin
            Image := Doc2.createElement('img') as IHtmlDOMNode; //create the img element
            (Image as IHTMLImgElement).src := path; //set this to the path of the image we just saved

            if GetcaretPos(cursor) then //get the element at the cursor position
            begin
                ElementAtCursor := Doc2.elementFromPoint(cursor.X, cursor.Y);
                Html := '<img src="' + path + '"></img>'; //insert the image after this element
                ElementAtCursor.insertAdjacentHTML('AfterBegin', Html);
            end
            else
                (Doc2.Body as IHtmlDOMNode).appendChild(Image); //else just append to the body
        end;
        finally
            bmp.free();
        end;
end;

正如您所看到的,第一步是检查并查看剪贴板是否具有CF_BITMAP,如果是,则将其保存到磁盘。然后我们创建一个img HTML元素将该文件名附加到img的src。最后,我们将img添加到光标所在的HTML中,如果我们无法获取光标,那么我们将附加到HTML主体