We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8fd2bad + 532609b commit 2468eeeCopy full SHA for 2468eee
articles/imagesharp/gettingstarted.md
@@ -29,6 +29,7 @@ using SixLabors.ImageSharp.Processing;
29
// Open the file automatically detecting the file type to decode it.
30
// Our image is now in an uncompressed, file format agnostic, structure in-memory as
31
// a series of pixels.
32
+// You can also specify the pixel format using a type parameter (e.g. Image<Rgba32> image = Image.Load<Rgba32>("foo.jpg"))
33
using (Image image = Image.Load("foo.jpg"))
34
{
35
// Resize the image in place and return it for chaining.
0 commit comments