تقديم ورقة العمل إلى سياق رسومي
Contents
[
Hide
]
Aspose.Cells يمكنه الآن عرض ورقة العمل لسياق بياني. يمكن أن يكون سياق الرسوم أي شيء مثل ملف الصورة أو الشاشة أو الطابعة وما إلى ذلك. يرجى اتباع الطريقة التالية لتقديم ورقة العمل إلى سياق رسومي.
- SheetRender.toImage (int pageIndex ، Graphics2D Graphic)
تقديم ورقة العمل إلى سياق رسومي
يوضح الكود التالي كيفية استخدام Aspose.Cells لتقديم ورقة العمل إلى سياق رسومي. بمجرد تنفيذ التعليمات البرمجية ، ستقوم بطباعة ورقة العمل بأكملها وملء المساحة الفارغة المتبقية باللون الأزرق في سياق الرسومات وحفظ الصورة باسمtest.png ملف. يمكنك استخدام أي ملف اكسل المصدر لتجربة هذا الكود. يرجى أيضًا قراءة التعليقات الموجودة داخل الكود لفهم أفضل.
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.getDataDir(ReleaseUnmanagedResources.class); | |
// Create workbook object from source file | |
Workbook workbook = new Workbook(dataDir + "source.xlsx"); | |
// Access first worksheet | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Create empty image and fill it with blue color | |
int width = 800; | |
int height = 800; | |
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB); | |
Graphics2D g = image.createGraphics(); | |
g.setColor(java.awt.Color.blue); | |
g.fillRect(0, 0, width, height); | |
// Set one page per sheet to true in image or print options | |
ImageOrPrintOptions opts = new ImageOrPrintOptions(); | |
opts.setOnePagePerSheet(true); | |
// Render worksheet to graphics context | |
SheetRender sr = new SheetRender(worksheet, opts); | |
sr.toImage(0, g); | |
// Save the graphics context image in Png format | |
File outputfile = new File(dataDir + "test.png"); | |
ImageIO.write(image, "png", outputfile); |