将CustomXMLPart中存储的base64数据用作Office中的图像

时间:2012-10-09 08:00:25

标签: vba excel-vba ms-office base64 word-vba

作为this question关于使用功能区中按钮上的Excel文件中存储的图像的后续内容:

是否可以将存储在base64编码字符串中的CustomXMLPart / CustomXMLNode中的图像用作Office文档中的图像,而无需先将其保存到磁盘并将其加载回来?

我想要使用图像的地方将IPictureDisp对象作为参数(如LoadPicture函数返回,但这只会从磁盘加载文件)。

1 个答案:

答案 0 :(得分:1)

首先,您需要将base_64数据转换为字节数组:

Private Function decodeBase64(ByVal strData As String) As Byte()
    Dim objXML As MSXML2.DOMDocument
    Dim objNode As MSXML2.IXMLDOMElement

    Set objXML = New MSXML2.DOMDocument
    Set objNode = objXML.createElement("b64")
    objNode.DataType = "bin.base64"
    objNode.Text = strData
    decodeBase64 = objNode.nodeTypedValue

    Set objNode = Nothing
    Set objXML = Nothing
End Function

来自:http://thydzik.com/vb6vba-functions-to-convert-binary-string-to-base64-string/

然后您可以将其加载到内存中并使用有关此主题的信息创建您的IPictureDisp:http://www.xtremevbtalk.com/showthread.php?t=137857

Type GUID
  Data1 As Long
  Data2 As Integer
  Data3 As Integer
  Data4(7) As Byte
End Type

Private Declare Function CreateStreamOnHGlobal Lib "ole32.dll" (ByRef hGlobal As Any,     ByVal fDeleteOnResume As Long, ByRef ppstr As Any) As Long
Private Declare Function OleLoadPicture Lib "olepro32.dll" (ByVal lpStream As IUnknown, ByVal lSize As Long, ByVal fRunMode As Long, ByRef riid As GUID, ByRef lplpObj As Any) As Long
Private Declare Function CLSIDFromString Lib "ole32.dll" (ByVal lpsz As Long, ByRef pclsid As GUID) As Long

Private Const SIPICTURE As String = "{7BF80980-BF32-101A-8BBB-00AA00300CAB}"

Public Function PictureFromArray(ByRef b() As Byte) As IPicture
  On Error GoTo errorhandler

  Dim istrm As IUnknown
  Dim tGuid As GUID

  If Not CreateStreamOnHGlobal(b(LBound(b)), False, istrm) Then
    CLSIDFromString StrPtr(SIPICTURE), tGuid
    OleLoadPicture istrm, UBound(b) - LBound(b) + 1, False, tGuid, PictureFromArray
  End If

  Set istrm = Nothing
  Exit Function
errorhandler:
  Debug.Print "Could not convert to IPicture!"
End Function