Spire.XLS is a professional Excel API that enables developers to create, manage, manipulate, convert and print Excel worksheets. Get free and professional technical support for Spire.XLS for .NET, Java, Android, C++, Python.

Thu Aug 08, 2019 9:45 am

When I deploy my app on Linux .Net Core 2.2, it shows :
---------------------
NOT IMPLEMENTED YET:GdipTransformPoints (GpGraphics *graphics, GpCoordinateSpace destSpace 2, GpCoordinateSpace srcSpace 1, GpPointF *points, int count 1)
----------------------
This error seems like from libgdiplus...
Because I saw the following source code from libgdiplus:

----------------------------------

GdipTransformPoints (GpGraphics *graphics, GpCoordinateSpace destSpace, GpCoordinateSpace srcSpace, GpPointF *points, INT count)
{
static int called = 0;

if (!called) {
printf("NOT IMPLEMENTED YET:GdipTransformPoints (GpGraphics *graphics, GpCoordinateSpace destSpace %d, GpCoordinateSpace srcSpace %d, GpPointF *points, int count %d)\n", destSpace, srcSpace, count);
}
/* return NotImplemented; */
return Ok;
}

-----------------------------------

What should I do ??

---------------------------

But ..... It seems like run successfully?? Just some warning?

ninkun
 
Posts: 6
Joined: Fri Mar 22, 2019 12:48 am

Thu Aug 08, 2019 10:20 am

Hi,

Thanks for your inquiry.
Do you install install Libgdiplus library? If not, please refer to following tutorial to add it:
https://www.e-iceblue.com/Tutorials/Spi ... -Core.html

If you still have the issue, please provide your input file(if any) and the used code for further investigation.

Sincerely,
Betsy
E-iceblue support team
User avatar

Betsy.jiang
 
Posts: 3099
Joined: Tue Sep 06, 2016 8:30 am

Thu Aug 08, 2019 10:29 am

Betsy.jiang wrote:Hi,

Thanks for your inquiry.
Do you install install Libgdiplus library? If not, please refer to following tutorial to add it:
https://www.e-iceblue.com/Tutorials/Spi ... -Core.html

If you still have the issue, please provide your input file(if any) and the used code for further investigation.

Sincerely,
Betsy
E-iceblue support team



I have already installed the Libgdiplus, the error is from Libgdiplus! But it seems just like a warning not an error.
My source code is :
-----------------------
static void Main(string[] args)
{
Workbook book = new Workbook();
Worksheet sheet = book.Worksheets[0];
sheet.Range["A1"].Text = "123123";
book.SaveToFile("1.xlsx", ExcelVersion.Version2007);
}

-------
It happens at the first line "Workbook book = new Workbook();";

ninkun
 
Posts: 6
Joined: Fri Mar 22, 2019 12:48 am

Fri Aug 09, 2019 10:23 am

Hi,

Thanks for your information.
After testing your case on Linux with .Net Core 2.2, I could generate the result file correctly, and indeed see the warning information you mentioned.
Note this warning is threw by Libgdiplus, and it is not issue of our product.
And the warning don't affect the use of our product. There is no need to pay attention to it.

Sincerely,
Betsy
E-iceblue support team
User avatar

Betsy.jiang
 
Posts: 3099
Joined: Tue Sep 06, 2016 8:30 am

Return to Spire.XLS