-1
我在包含壓縮的RichText數據的數據表中有一個圖像列。我想這是從Outlook(PR_RTF_COMPRESSED屬性或其他)獲得的。我需要解壓縮它。使用C#,我正在嘗試以下,但我得到一個System.Runtime.InteropServices.COMExceptions,無法弄清楚。解壓縮壓縮富文本字段
我發現了一些舊鏈接問這個問題,沒有解決的答案。這裏是我的代碼使用C#的一個片段。
public Form1()
{
InitializeComponent();
IStream streamOut;
string con = "connection string";
SqlCommand command = new SqlCommand("select top 10 columnInCompressedRichTextFormat FROM tableWithCompressedRichTextData", new SqlConnection(dbConnectionString));
DataTable x = new DataTable();
SqlDataAdapter a = new SqlDataAdapter(command);
a.Fill(x);
a.Dispose();
foreach (DataRow r in dtResults.Rows)
{
byte[] arrayOfBytes = (byte[]) r["columnInCompressedRichTextFormat"];
IStream i = CreateIStreamFromBytes(arrayOfBytes);
WrapCompressedRTFStream(input, 0, out streamOut);
}
}
public IStream CreateIStreamFromBytes(byte[] bytes)
{
IntPtr hglobal = Marshal.AllocHGlobal(bytes.Length);
Marshal.Copy(bytes, 0, hglobal, bytes.Length);
IStream stream = null;
CreateStreamOnHGlobal(hglobal, true, out stream);
return stream;
}
[DllImport("Mapi32.dll", PreserveSig = false)]
private static extern void
WrapCompressedRTFStream(
[MarshalAs(UnmanagedType.Interface)] IStream lpCompressedRTFStream,
uint ulflags,
[MarshalAs(UnmanagedType.Interface)] out IStream lpUncompressedRTFStream
);
[DllImport("ole32.dll", PreserveSig = false)]
static extern int CreateStreamOnHGlobal(IntPtr hGlobal,
[MarshalAs(UnmanagedType.Bool)] bool fDeleteOnRelease,
[MarshalAs(UnmanagedType.Interface)] out IStream ppstm
);
public const uint MAPI_MODIFY = 0x00000001;
public const uint STORE_UNCOMPRESSED_RTF = 0x00008000;
}
WrapCompressedRTFStream拋出錯誤。有任何想法嗎?
很多謝謝。
沒有人可以幫你沒有錯誤。請按照這裏的指導http://idownvotedyoubecause.com/so/ImageOfAnException(掃描到有關獲取異常詳細信息的部分) – Will
您還需要確保您正在加載msmapii32.dll的正確實例,而不是靜態鏈接到mapi32。 DLL。查看MFCMAPI源代碼以瞭解它是如何完成的。 –
有誰知道差別下注WrapCompressedRTFStream和WrapCompressedRTFStreamEx? –