如何使用Visual Studio Tools for Office将Microsoft Word中的图片导出到TIFF文件?我可以获得对InlineShape对象集合的图片引用,现在困难的部分是如何将它们保存为TIFF图像。
答案 0 :(得分:2)
private void SaveToImage(Word.InlineShape picShape, string filePath)
{
picShape.Select();
theApp.Selection.CopyAsPicture();
IDataObject data = Clipboard.GetDataObject();
if (data.GetDataPresent(typeof(Bitmap)))
{
Bitmap image = (Bitmap)data.GetData(typeof(Bitmap));
image.Save(filePath);
}
}
希望有所帮助:)
答案 1 :(得分:0)
好。不确定这是否有用,但如果你对jpeg没问题,那么从Word 2007文件中提取图像的一种非常酷的技术如下:
干杯。