CSV file conversion to tiff

Hi Team,
Please find the attached CSV file which is having some formula column and when i try to convert it to Tiff image , the image is also having the same junk character in the formula field.

Is there any way to fix that before converting to tiff from CSV file

Regards
Anish

Hi,


Thanks for the sample XLS file.

I have tested your scenario/case using the latest version/fix : Aspose.Cells for .NET (Latest Version) it works fine.

I could not spot any issue in the output Tiff images. Here is my code and find attached the output tiff images in the zipped archive.

Sample code:

Workbook workbook = new Workbook(“e:\test2\201309308001453.000.xls”);

Worksheet sheet = workbook.Worksheets[0];

ImageOrPrintOptions imgOptions = new ImageOrPrintOptions();
imgOptions.ImageFormat = System.Drawing.Imaging.ImageFormat.Tiff;
SheetRender sr = new SheetRender(sheet, imgOptions);

for (int j = 0; j < sr.PageCount; j++)
{
sr.ToTiff(“e:\test2\outtiffimage” + j.ToString()+ “.tiff”);

}

If you still find the issue with the latest version/fix, kindly give us your source code and also provide some screen shots to highlight the problematic areas (in red circles) to show the issue, we will check your issue soon.


Thank you.