استخراج الصور من ورق العمل
Contents
[
Hide
]
يمكن لمستخدمي Microsoft Excel إضافة صور إلى جداول البيانات. باستخدام Aspose.Cells, يمكن قراءة الصور من ملفات Microsoft Excel وحفظها على القرص المحلي. يوضح هذا المقال كيفية تحقيق ذلك باستخدام Aspose.Cells for Java API.
يوضح الكود العيني أدناه كيفية استخراج الصور من ملف Excel وحفظها.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(ExtractImagesfromWorksheets.class) + "TechnicalArticles/"; | |
// Open a template Excel file | |
Workbook workbook = new Workbook(dataDir + "book3.xlsx"); | |
// Get the first worksheet | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Get the first Picture in the first worksheet | |
Picture pic = worksheet.getPictures().get(0); | |
// Set the output image file path | |
String fileName = "aspose-logo.jpg"; | |
// Note: you may evaluate the image format before specifying the image path | |
// Define ImageOrPrintOptions | |
ImageOrPrintOptions printoption = new ImageOrPrintOptions(); | |
// Specify the image format | |
printoption.setImageType(ImageType.JPEG); | |
// Save the image | |
pic.toImage(dataDir + fileName, printoption); |