ImageType
ImageData.ImageType property
获取图像的类型。
public ImageType ImageType { get; }
例子
演示如何从文档中提取图像,并将它们作为单独的文件保存到本地文件系统。
Document doc = new Document(MyDir + "Images.docx");
// 从文档中获取形状集合,
// 并将每个形状的图像数据以图像的形式保存到本地文件系统。
NodeCollection shapes = doc.GetChildNodes(NodeType.Shape, true);
Assert.AreEqual(9, shapes.Count(s => ((Shape)s).HasImage));
int imageIndex = 0;
foreach (Shape shape in shapes.OfType<Shape>())
{
if (shape.HasImage)
{
// 形状的图像数据可能包含多种可能的图像格式的图像。
// 我们可以根据每个图像的格式自动确定其文件扩展名。
string imageFileName =
$"File.ExtractImages.{imageIndex}{FileFormatUtil.ImageTypeToExtension(shape.ImageData.ImageType)}";
shape.ImageData.Save(ArtifactsDir + imageFileName);
imageIndex++;
}
}
也可以看看
- enum ImageType
- class ImageData
- 命名空间 Aspose.Words.Drawing
- 部件 Aspose.Words