Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9bbd505
Add Async APIs to IImageEncoder and IImageDecoder
tocsoft May 3, 2020
4d95e2e
Save async tests
tocsoft May 3, 2020
dff8ab6
implement Load Async apis
tocsoft May 6, 2020
c69683e
IdentifyAsync
tocsoft May 6, 2020
2599275
Update src/ImageSharp/Formats/Jpeg/JpegDecoder.cs
JimBobSquarePants May 17, 2020
ef3b71f
Update src/ImageSharp/Formats/Png/PngEncoder.cs
JimBobSquarePants May 17, 2020
e643553
Update src/ImageSharp/Image.Decode.cs
JimBobSquarePants May 17, 2020
a27eb49
Update src/ImageSharp/Image.Decode.cs
JimBobSquarePants May 17, 2020
f7beaa1
Update src/ImageSharp/Image.cs
JimBobSquarePants May 17, 2020
2fc3058
Update src/ImageSharp/Image.FromStream.cs
JimBobSquarePants May 17, 2020
740d133
Update src/ImageSharp/Image.FromStream.cs
JimBobSquarePants May 17, 2020
6c18639
Update src/ImageSharp/Image.FromStream.cs
JimBobSquarePants May 17, 2020
b505771
Update src/ImageSharp/Image.FromStream.cs
JimBobSquarePants May 17, 2020
1969165
Update src/ImageSharp/Image.FromStream.cs
JimBobSquarePants May 17, 2020
43b0d5e
Update src/ImageSharp/Image.FromStream.cs
JimBobSquarePants May 17, 2020
84c7958
Merge branch 'master' into sw/fake-async-codecs
JimBobSquarePants May 17, 2020
9bbf05d
async await where required
JimBobSquarePants May 17, 2020
1f74e31
implement IEquatable<T>
JimBobSquarePants May 17, 2020
6361a22
Rename extension
JimBobSquarePants May 17, 2020
5a8f78a
Revert unrequired async/await additions
JimBobSquarePants May 17, 2020
b8232e4
Update Image.FromStream.cs
JimBobSquarePants May 17, 2020
c8c561b
Merge branch 'master' into sw/fake-async-codecs
JimBobSquarePants May 19, 2020
72257ba
Merge branch 'master' into sw/fake-async-codecs
JimBobSquarePants May 27, 2020
5d4a18f
Merge branch 'master' into sw/fake-async-codecs
JimBobSquarePants Jun 9, 2020
73cc796
Use named tuple
JimBobSquarePants Jun 9, 2020
73fed79
Use pooled stream for async decode/identify
JimBobSquarePants Jun 9, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/ImageSharp/Image.FromStream.cs
Co-authored-by: Brian Popow <[email protected]>
  • Loading branch information
JimBobSquarePants and brianpopow authored May 17, 2020
commit 196916594313a3d8e38bc66ea06d238bb577efb3
2 changes: 1 addition & 1 deletion src/ImageSharp/Image.FromStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ private static async Task<T> WithSeekableStreamAsync<T>(Configuration configurat
await stream.CopyToAsync(memoryStream);
memoryStream.Position = 0;

return await action(memoryStream);
return await action(memoryStream).ConfigureAwait(false);
}
}
}
Expand Down