SixLabors.ImageSharp.Image.Load<Rgba32>(path) #2574
Replies: 1 comment 1 reply
-
You’ve provided nothing by which we can help you. You’re also using stopwatch to benchmark the application with no warmup which is worse than useless. You should be using BenchmarkDotnet You’re using an old major version on an old target framework (not even the most recent of the legacy types) that lacks proper SIMD intrinsic support. You want to go faster. Move to .NET 6+ and use v3+. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I used the Load function to read an image with width = 4656, height= 3496, size = 1.4Mb, the problem I encountered is that the Load function executes very slowly. SixLabors.ImageSharp version 2.1.6 and Net Framework 4.7.2.
The code is as shown above, and the execution time is as shown below. Please show me how to load images faster. thank you.
Beta Was this translation helpful? Give feedback.
All reactions