-
-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linux high memory usage .net 5 #26
Comments
I was able to solve the issue. The issue is not related to NetBarcode, System.Drawing.Common (atleast on windows). On linux environment we use libgdiplus.
This by default creates a bitmap having 32bit depth (RGBA).
I suspect on Linux GDI+ is no properly handling 32bit color images.
The memory leak issue will be fixed. |
Thanks for the contribution. Could you post the memory diagnostics in version 1.4.5? |
Currently on version 1.4.5 the memory usage is at 50ish MB. This can further be increased (a bit only) by disposing Font & FontFamily Barcode.cs:55. Also for future versions of .NET (6 and above) I would recommend switching to SkiaSharp or ImageSharp (SkiaSharp is faster compared to ImageSharp) as Microsoft has restricted System.Drawing.Common to Windows only in .NET 6. |
Is there any way to diagnose Unmanaged memory leak ?
I am using .NET 5.0 Console App with NetCode. The program it self is simple it calls barcode library & creates a base64string from Image 5000 times, I am using 'using blocks' therefore disposing is also being handled.
On windows this program consumes 15-25 MB (doesn't go above that) but on Linux Unmanaged memory constantly increases with each iteration but never goes down at all (goes upto 600MB on 5000 iterations).
Linux dotMemory:
Windows dotMemory:
I have tried the same program after fixing the Font, FontFamily disposing issue but the results are same.
I am using docker with:
Whole demo with dockerfile & dotmemory snapshots can be found here.
The text was updated successfully, but these errors were encountered: