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.
39 lines
1.1 KiB
39 lines
1.1 KiB
// Copyright (c) Six Labors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
using System;
|
|
using System.IO;
|
|
using SixLabors.ImageSharp.IO;
|
|
|
|
namespace SixLabors.ImageSharp.Tests.TestUtilities
|
|
{
|
|
internal class EofHitCounter : IDisposable
|
|
{
|
|
private readonly BufferedReadStream stream;
|
|
|
|
public EofHitCounter(BufferedReadStream stream, Image image)
|
|
{
|
|
this.stream = stream;
|
|
this.Image = image;
|
|
}
|
|
|
|
public int EofHitCount => this.stream.EofHitCount;
|
|
|
|
public Image Image { get; private set; }
|
|
|
|
public static EofHitCounter RunDecoder(string testImage) => RunDecoder(TestFile.Create(testImage).Bytes);
|
|
|
|
public static EofHitCounter RunDecoder(byte[] imageData)
|
|
{
|
|
BufferedReadStream stream = new(Configuration.Default, new MemoryStream(imageData));
|
|
Image image = Image.Load(stream);
|
|
return new EofHitCounter(stream, image);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
this.stream.Dispose();
|
|
this.Image.Dispose();
|
|
}
|
|
}
|
|
}
|
|
|