mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
853 B
28 lines
853 B
// Copyright (c) Six Labors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
using System.Drawing;
|
|
using BenchmarkDotNet.Attributes;
|
|
using SixLabors.ImageSharp.PixelFormats;
|
|
|
|
namespace SixLabors.ImageSharp.Benchmarks
|
|
{
|
|
public class GetSetPixel
|
|
{
|
|
[Benchmark(Baseline = true, Description = "System.Drawing GetSet pixel")]
|
|
public System.Drawing.Color GetSetSystemDrawing()
|
|
{
|
|
using var source = new Bitmap(400, 400);
|
|
source.SetPixel(200, 200, System.Drawing.Color.White);
|
|
return source.GetPixel(200, 200);
|
|
}
|
|
|
|
[Benchmark(Description = "ImageSharp GetSet pixel")]
|
|
public Rgba32 GetSetImageSharp()
|
|
{
|
|
using var image = new Image<Rgba32>(400, 400);
|
|
image[200, 200] = Color.White;
|
|
return image[200, 200];
|
|
}
|
|
}
|
|
}
|
|
|