3 references to FromStream
System.Drawing.Common (1)
System\Drawing\Image.cs (1)
124public static Image FromStream(Stream stream) => FromStream(stream, useEmbeddedColorManagement: false);
System.Drawing.Common.Tests (2)
System\Drawing\ImageTests.cs (2)
557AssertExtensions.Throws<ArgumentException>(null, () => Image.FromStream(stream, useEmbeddedColorManagement: true)); 566AssertExtensions.Throws<ArgumentNullException, ArgumentException>("stream", null, () => Image.FromStream(null, useEmbeddedColorManagement: true));