Genera immagini di formattazione condizionale DataBars
Contents
[
Hide
]
A volte è necessario generare immagini delle barre di dati formattate condizionalmente. È possibile utilizzare il DataBar.ToImage() metodo di Aspose.Cells per generare queste immagini. Questo articolo mostra come generare un’immagine di DataBar utilizzando Aspose.Cells.
Il seguente codice di esempio genera l’immagine DataBar della cella C1. Prima, accede all’oggetto della condizione di formato della cella, e poi da quell’oggetto, accede all’oggetto DataBar e utilizza il suo metodo ToImage() per generare l’immagine della cella. Infine, salva l’immagine sul disco.
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-.NET | |
//Source directory | |
string sourceDir = RunExamples.Get_SourceDirectory(); | |
//Output directory | |
string outputDir = RunExamples.Get_OutputDirectory(); | |
// Create workbook object from source excel file | |
Workbook workbook = new Workbook(sourceDir + "sampleGenerateDatabarImage.xlsx"); | |
// Access first worksheet | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Access the cell which contains conditional formatting databar | |
Cell cell = worksheet.Cells["C1"]; | |
// Create and get the conditional formatting of the worksheet | |
int idx = worksheet.ConditionalFormattings.Add(); | |
FormatConditionCollection fcc = worksheet.ConditionalFormattings[idx]; | |
fcc.AddCondition(FormatConditionType.DataBar); | |
fcc.AddArea(CellArea.CreateCellArea("C1", "C4")); | |
// Access the conditional formatting databar | |
DataBar dbar = fcc[0].DataBar; | |
// Create image or print options | |
ImageOrPrintOptions opts = new ImageOrPrintOptions(); | |
opts.ImageType = Drawing.ImageType.Png; | |
// Get the image bytes of the databar | |
byte[] imgBytes = dbar.ToImage(cell, opts); | |
// Write image bytes on the disk | |
File.WriteAllBytes(outputDir + "outputGenerateDatabarImage.png", imgBytes); |