├── .gitattributes ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── ImageSharp ├── ApplyEffectInsideShape │ ├── ApplyEffectInsideShape.csproj │ ├── Program.cs │ └── fb.jpg ├── AvatarWithRoundedCorner │ ├── AvatarWithRoundedCorner.csproj │ ├── Program.cs │ └── fb.jpg ├── BlurMultiplePartsOfImage │ ├── BlurMultiplePartsOfImage.csproj │ ├── Program.cs │ └── fb.jpg ├── ChangeDefaultEncoderOptions │ ├── ChangeDefaultEncoderOptions.csproj │ └── Program.cs ├── DrawWaterMarkOnImage │ ├── DrawWaterMarkOnImage.csproj │ ├── Program.cs │ └── fb.jpg ├── DrawingTextAlongAPath │ ├── DrawingTextAlongAPath.csproj │ ├── Program.cs │ ├── Roboto-Regular.ttf │ └── Twemoji Mozilla.ttf ├── README.md ├── RenderQRCode │ ├── Program.cs │ └── RenderQRCode.csproj ├── ResizeImage │ ├── Program.cs │ ├── ResizeImage.csproj │ └── fb.jpg └── ResizeImageVB │ ├── Program.vb │ ├── ResizeImageVB.vbproj │ └── fb.jpg ├── NuGet.config ├── README.md └── Samples.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /ImageSharp/ApplyEffectInsideShape/ApplyEffectInsideShape.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/ApplyEffectInsideShape/ApplyEffectInsideShape.csproj -------------------------------------------------------------------------------- /ImageSharp/ApplyEffectInsideShape/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/ApplyEffectInsideShape/Program.cs -------------------------------------------------------------------------------- /ImageSharp/ApplyEffectInsideShape/fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/ApplyEffectInsideShape/fb.jpg -------------------------------------------------------------------------------- /ImageSharp/AvatarWithRoundedCorner/AvatarWithRoundedCorner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/AvatarWithRoundedCorner/AvatarWithRoundedCorner.csproj -------------------------------------------------------------------------------- /ImageSharp/AvatarWithRoundedCorner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/AvatarWithRoundedCorner/Program.cs -------------------------------------------------------------------------------- /ImageSharp/AvatarWithRoundedCorner/fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/AvatarWithRoundedCorner/fb.jpg -------------------------------------------------------------------------------- /ImageSharp/BlurMultiplePartsOfImage/BlurMultiplePartsOfImage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/BlurMultiplePartsOfImage/BlurMultiplePartsOfImage.csproj -------------------------------------------------------------------------------- /ImageSharp/BlurMultiplePartsOfImage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/BlurMultiplePartsOfImage/Program.cs -------------------------------------------------------------------------------- /ImageSharp/BlurMultiplePartsOfImage/fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/BlurMultiplePartsOfImage/fb.jpg -------------------------------------------------------------------------------- /ImageSharp/ChangeDefaultEncoderOptions/ChangeDefaultEncoderOptions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/ChangeDefaultEncoderOptions/ChangeDefaultEncoderOptions.csproj -------------------------------------------------------------------------------- /ImageSharp/ChangeDefaultEncoderOptions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/ChangeDefaultEncoderOptions/Program.cs -------------------------------------------------------------------------------- /ImageSharp/DrawWaterMarkOnImage/DrawWaterMarkOnImage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/DrawWaterMarkOnImage/DrawWaterMarkOnImage.csproj -------------------------------------------------------------------------------- /ImageSharp/DrawWaterMarkOnImage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/DrawWaterMarkOnImage/Program.cs -------------------------------------------------------------------------------- /ImageSharp/DrawWaterMarkOnImage/fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/DrawWaterMarkOnImage/fb.jpg -------------------------------------------------------------------------------- /ImageSharp/DrawingTextAlongAPath/DrawingTextAlongAPath.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/DrawingTextAlongAPath/DrawingTextAlongAPath.csproj -------------------------------------------------------------------------------- /ImageSharp/DrawingTextAlongAPath/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/DrawingTextAlongAPath/Program.cs -------------------------------------------------------------------------------- /ImageSharp/DrawingTextAlongAPath/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/DrawingTextAlongAPath/Roboto-Regular.ttf -------------------------------------------------------------------------------- /ImageSharp/DrawingTextAlongAPath/Twemoji Mozilla.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/DrawingTextAlongAPath/Twemoji Mozilla.ttf -------------------------------------------------------------------------------- /ImageSharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/README.md -------------------------------------------------------------------------------- /ImageSharp/RenderQRCode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/RenderQRCode/Program.cs -------------------------------------------------------------------------------- /ImageSharp/RenderQRCode/RenderQRCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/RenderQRCode/RenderQRCode.csproj -------------------------------------------------------------------------------- /ImageSharp/ResizeImage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/ResizeImage/Program.cs -------------------------------------------------------------------------------- /ImageSharp/ResizeImage/ResizeImage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/ResizeImage/ResizeImage.csproj -------------------------------------------------------------------------------- /ImageSharp/ResizeImage/fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/ResizeImage/fb.jpg -------------------------------------------------------------------------------- /ImageSharp/ResizeImageVB/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/ResizeImageVB/Program.vb -------------------------------------------------------------------------------- /ImageSharp/ResizeImageVB/ResizeImageVB.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/ResizeImageVB/ResizeImageVB.vbproj -------------------------------------------------------------------------------- /ImageSharp/ResizeImageVB/fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/ImageSharp/ResizeImageVB/fb.jpg -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/README.md -------------------------------------------------------------------------------- /Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SixLabors/Samples/HEAD/Samples.sln --------------------------------------------------------------------------------