Word Art rendering problem

Hello.

I use Aspose.Cell for xlsx to tiff conversion. Everything looks fine except WordArt item that looks like usual text (without visual effects). Is it possible to make WordArt item looks like in MS Word ?

Thanks in advance, Maksim Sterekhov

Hi,

Thanks for reporting.

I tested your issue using the latest version:
Aspose.Cells for .NET v7.0.1.1


I was able to reproduce the problem using the following code and word art text does not appear correct as shown in the image.

This issue has been logged as CELLSNET-30764.

C#


string path = @“F:\Shak-Data-RW\Downloads\XLSX_test.xlsx”;

Workbook wb = new Workbook(path);


Worksheet worksheet = wb.Worksheets[0];


//Apply different Image / Print options.

Aspose.Cells.Rendering.ImageOrPrintOptions options = new Aspose.Cells.Rendering.ImageOrPrintOptions();

options.ImageFormat = ImageFormat.Emf;

options.OnePagePerSheet = true;


SheetRender sr = new SheetRender(worksheet, options);


Bitmap bitmap = sr.ToImage(0);


bitmap.Save(path + “.out.jpg”, ImageFormat.Jpeg);



Output Image:

Hello.
I tested latest version of Aspose.Cells (7.3.1) but WordArt effects are still unavailable.
Do you plane support these features in new releases?

Hi,


I am afraid the feature (Support for Text Effects (Word Art) formatting in the rendered image) is still not supported. I have re-scheduled your feature request and logged it as CELLSNET-41084 into our new Issue tracking system. Our concerned developer will soon look into it if he could share an eta for it. Once we have any update on it, we will let you know here.

Thank you.