Home
About
Contact
Photo Gallery
Links
Articles
Personal
Forum
Home
Forum
Thread
Search
Язык сайта:
ENGLISH
RUSSIAN
Username:
*
Password:
*
Remember me
Register
Lost password
Thread:
C# основной форум
/C# Process large images
Post Reply
15 January 2021
08:00:25
sergey
Posts: 0
C# Process large images
.NET does not handle large images well.
One of the way is to fix this issue is to load an image as a stream:
using (var memoryStream = new MemoryStream(File.ReadAllBytes(path)))
{
using (var image = Image.FromStream(memoryStream))
{
Quote Post
Post Reply
Requesting information...