Hi,
Normally, the fix takes 2~3 working days. If it is a difficult to resolve, it can take a week or two.
Please post your other problems with images, so that we could also look into them and fix them.
Hi,
Hi,
Hi ,
Hi,
Thanks for your files.
Please highlight the problems with red circles in a screenshot.
Hi,
Please try the latest version:
Aspose.Cells for .NET v7.0.3.6
There is extra space left in the right because the text in the cell U3 exceeds the column.
Please let us know how did you generate a file and also we do not know your last requirement. Can you please elaborate it?
Hi Faiz,
Hi,
Thanks for your files.
As I mentioned earlier, there is extra space left in the right because the text in the cell U3 exceeds the column. Therefore it needs more space when you will take its image.
If you do not want this extra column, please set CellU3 style to wraptext.
Hi Faiz,
Hi,
In our internal code, if text exceeds its own column, the text needs extra right column or columns to show all text. You can adjust right column width to see it.
Hi Faiz,
Hi,
I will update you soon after some testing.
Hi Nikul,
Please read our replies at the following posts: 349460 and 349497 we think our results are correct.
Please remove the text in U3 and see the difference.
Hi Faiz,
Hi,
We output the dashed line the same as Excel print preview.
We do not understand your second question.
Please create screenshots and highlight problems with red circles.
Hi Faiz,
Hi,
Thanks for highlighting the differences. We will look into them and fix them if possible and update you asap.
Hi,
The font issue is because Aspose.Cells generate font using .NET framework API(s) so the font weight cannot be controlled.
There is a way to control font weight by unmanaged API(s) by Win32 GDI, but we cannot use unmanaged code in our product.
Thanks for your understanding.
Hi Faiz,
Hi,
The image looks fine to me. Please see the sample code below and the output emf image.
Please use the latest version:
Aspose.Cells
for .NET v7.0.4.4
C#
string path = @“F:\Shak-Data-RW\Downloads\test\v7030\ooxmlPackage2.xlsx”;
Workbook workbook = new Workbook(path);
Worksheet worksheet = workbook.Worksheets[0];
//Apply different Image / Print options.
Aspose.Cells.Rendering.ImageOrPrintOptions options = new Aspose.Cells.Rendering.ImageOrPrintOptions();
options.OnePagePerSheet = true;
options.ImageFormat = ImageFormat.Emf;
SheetRender sr = new SheetRender(worksheet, options);
Bitmap bitmap = sr.ToImage(0);
bitmap.Save(path + “.out.emf”, ImageFormat.Emf);