文檔首頁(yè)>>Aspose中文文檔>>調(diào)整 Word 文檔中的圖像大小
調(diào)整 Word 文檔中的圖像大小
Aspose.Words是一種高級(jí)Word文檔處理API,用于執(zhí)行各種文檔管理和操作任務(wù)。API支持生成,修改,轉(zhuǎn)換,呈現(xiàn)和打印文檔,而無(wú)需在跨平臺(tái)應(yīng)用程序中直接使用Microsoft Word。
Aspose API支持流行文件格式處理,并允許將各類文檔導(dǎo)出或轉(zhuǎn)換為固定布局文件格式和最常用的圖像/多媒體格式。
DocumentBuilder提供了方法的多個(gè)重載,允許您插入內(nèi)聯(lián)或浮動(dòng)圖像。例如,InsertImage方法用于將文件或 URL 中的圖像插入到文檔中。
使用Shape類,您可以在 Microsoft Word 文檔中創(chuàng)建或修改形狀。
如何調(diào)整圖像大小代碼
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");
點(diǎn)擊復(fù)制
代碼示例
運(yùn)行代碼
如需下載產(chǎn)品Aspose.Words ,請(qǐng)點(diǎn)擊產(chǎn)品名進(jìn)入下載頁(yè)面