WebP-wrapper
WebP-wrapper copied to clipboard
nuget package question
Is there a nuget package for it? And how it is compatible with NET CORE?
Not have nuget package. For use:
- Copy the CS file in your program folder.
- Add the CS file to your proyect.
- Add "using WebPWrapper;" in your form code
- Copy the DLL files in the solucion "\bin\release" folder.
You can see the easy demo include in the proyect. Is compatible with all NET cores, in x32 and x64 modes.
IMPORTANT: The last version of DLL is not compatible with Windows95. Is one bug for version of WebP upper than 5.00 If you need one older version, I can compile it for you.
Maybe a bit late, but it's not compatible with .NET Core (at least not 2.2) as System.Drawing.Bitmap
and System.Drawing.Imaging.BitmapData
is not compatible.
Both of those types are in System.Drawing.Common.dll
and they work in .NET Core.
https://www.nuget.org/packages/System.Drawing.Common/4.6.0
As it is GDI+, it is Windows only, so no.
That is a different question and a different answer. You didn't ask if it worked cross platform. It is compatible with .NET Core. I'm using Bitmaps in a production .NET Core 3 app using that library.
Please, test https://github.com/stulzq/dotnetcore-image
+1 for having this in a nuget package, that is the standard way to consume these 3rd party libraries!