fschultz / NetImageLibrary

Library to help with image handling such as resizing, cropping, applying filters (brightess, contrast, unsharpen mask, chroma key etc), watermarking, thumbnail creation, opening/saving files or streams and more.
http://kaliko.com/image-library/
Other
90 stars 27 forks source link

NetImageLibrary and Xamarin #12

Open ktngoykalolo opened 7 years ago

ktngoykalolo commented 7 years ago

Hello, is this library compatible with xamarin android or iOS ?

fschultz commented 7 years ago

Unfortunately I suspect that the use of System.Drawing prevents it from running on other platforms (since - as far as I know - there isn't any portable version of that library).

ktngoykalolo commented 5 years ago

hi, perhaps now with net standard x-platform will be easier

fschultz commented 5 years ago

Hi! Yes, I'm planning to replace the GDI+ parts in order to make the library .NET Standard compatible and more portable. Unfortunately I haven't had the time to do the job yet, but it's in my plans.

fschultz commented 5 years ago

I'm currently working on a new version that is .NET Core compatible. The GDI+ requirement has been decoupled by using the System.Drawing.Common package, which also supports Xamarin. So the current work-in-progress should be possible to target to Xamarin as well. The code base can be found under the 'develop' branch: https://github.com/fschultz/NetImageLibrary/tree/develop

ktngoykalolo commented 4 years ago

Hi, great news.