文档彩票走势图>>Aspose中文文档>>调整 Word 文档中的图像大小
调整 Word 文档中的图像大小
Aspose.Words是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。
Aspose API支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。
DocumentBuilder提供了方法的多个重载,允许您插入内联或浮动图像。例如,InsertImage方法用于将文件或 URL 中的图像插入到文档中。
使用Shape类,您可以在 Microsoft Word 文档中创建或修改形状。
如何调整图像大小代码
Document doc = new Document(); // Create New Document. DocumentBuilder builder = new DocumentBuilder(doc); builder.Write("Image Before Resize"); //insert image from disk Shape shape = builder.InsertImage(@"../../data/aspose_Words-for-net.jpg"); // Write text in document. builder.Write("ReSize image "); shape = builder.InsertImage(@"../../data/aspose_Words-for-net.jpg"); // Chaging image size. ConvertUtil Provides helper functions to convert between various measurement units. like Converts inches to points. shape.Width = ConvertUtil.InchToPoint(0.5); shape.Height = ConvertUtil.InchToPoint(0.5); // Save document on file location. builder.Document.Save("ImageReSize.doc");
点击复制
代码示例
运行代码
如需下载产品Aspose.Words ,请点击产品名进入下载页面