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