├── .gitignore ├── LICENSE ├── Mono ├── MonoImageProcessing.sln └── MonoImageProcessing │ ├── LoadResizeSave.cs │ ├── MonoImageProcessing.csproj │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Resize.cs │ ├── app.config │ └── packages.config ├── NetCore.sln ├── NetCore ├── LoadResizeSave.cs ├── LoadResizeSaveParallel.cs ├── NetCore.csproj ├── NuGet.config ├── Program.cs └── Resize.cs ├── README.md ├── global.json └── images ├── DSCN0533.JPG ├── IMG_2301.jpg ├── IMG_2317.jpg ├── IMG_2325.jpg ├── IMG_2351.jpg ├── IMG_2443.jpg ├── IMG_2445.jpg ├── IMG_2446.jpg ├── IMG_2525.jpg ├── IMG_2565.jpg ├── IMG_2734.jpg └── sample.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /Mono/MonoImageProcessing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/Mono/MonoImageProcessing.sln -------------------------------------------------------------------------------- /Mono/MonoImageProcessing/LoadResizeSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/Mono/MonoImageProcessing/LoadResizeSave.cs -------------------------------------------------------------------------------- /Mono/MonoImageProcessing/MonoImageProcessing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/Mono/MonoImageProcessing/MonoImageProcessing.csproj -------------------------------------------------------------------------------- /Mono/MonoImageProcessing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/Mono/MonoImageProcessing/Program.cs -------------------------------------------------------------------------------- /Mono/MonoImageProcessing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/Mono/MonoImageProcessing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Mono/MonoImageProcessing/Resize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/Mono/MonoImageProcessing/Resize.cs -------------------------------------------------------------------------------- /Mono/MonoImageProcessing/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/Mono/MonoImageProcessing/app.config -------------------------------------------------------------------------------- /Mono/MonoImageProcessing/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/Mono/MonoImageProcessing/packages.config -------------------------------------------------------------------------------- /NetCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/NetCore.sln -------------------------------------------------------------------------------- /NetCore/LoadResizeSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/NetCore/LoadResizeSave.cs -------------------------------------------------------------------------------- /NetCore/LoadResizeSaveParallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/NetCore/LoadResizeSaveParallel.cs -------------------------------------------------------------------------------- /NetCore/NetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/NetCore/NetCore.csproj -------------------------------------------------------------------------------- /NetCore/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/NetCore/NuGet.config -------------------------------------------------------------------------------- /NetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/NetCore/Program.cs -------------------------------------------------------------------------------- /NetCore/Resize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/NetCore/Resize.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/global.json -------------------------------------------------------------------------------- /images/DSCN0533.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/images/DSCN0533.JPG -------------------------------------------------------------------------------- /images/IMG_2301.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/images/IMG_2301.jpg -------------------------------------------------------------------------------- /images/IMG_2317.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/images/IMG_2317.jpg -------------------------------------------------------------------------------- /images/IMG_2325.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/images/IMG_2325.jpg -------------------------------------------------------------------------------- /images/IMG_2351.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/images/IMG_2351.jpg -------------------------------------------------------------------------------- /images/IMG_2443.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/images/IMG_2443.jpg -------------------------------------------------------------------------------- /images/IMG_2445.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/images/IMG_2445.jpg -------------------------------------------------------------------------------- /images/IMG_2446.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/images/IMG_2446.jpg -------------------------------------------------------------------------------- /images/IMG_2525.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/images/IMG_2525.jpg -------------------------------------------------------------------------------- /images/IMG_2565.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/images/IMG_2565.jpg -------------------------------------------------------------------------------- /images/IMG_2734.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/images/IMG_2734.jpg -------------------------------------------------------------------------------- /images/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bleroy/core-imaging-playground/HEAD/images/sample.jpg --------------------------------------------------------------------------------