Спасибо за помощь. Я мог бы распаковать файл "wmz" и преобразовать его в файл wmf. Код
public String DeCompressWMZFile(String wmzFile)
{
MemoryStream decompressStream = new MemoryStream(File.ReadAllBytes(wmzFile));
GZipStream gzipStream = new GZipStream(decompressStream, CompressionMode.Decompress);
MemoryStream outStream = new MemoryStream();
int readCount;
byte[] data = new byte[2048];
do
{
readCount = gzipStream.Read(data, 0, data.Length);
outStream.Write(data, 0, readCount);
} while (readCount == 2048);
String imgFile = Path.GetDirectoryName(wmzFile) + "\\" + Path.GetFileNameWithoutExtension(wmzFile) + ".wmf";
File.WriteAllBytes(imgFile, outStream.GetBuffer());
// Then add the code to create a new word document and insert
return imgFile;
}