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.
94 lines
3.1 KiB
94 lines
3.1 KiB
// Copyright (c) Six Labors and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SixLabors.ImageSharp.PixelFormats;
|
|
using SixLabors.ImageSharp.Processing;
|
|
using SixLabors.Primitives;
|
|
|
|
namespace SixLabors.ImageSharp.Tests
|
|
{
|
|
internal class FakeImageOperationsProvider : IImageProcessingContextFactory
|
|
{
|
|
private List<object> ImageOperators = new List<object>();
|
|
|
|
public bool HasCreated<TPixel>(Image<TPixel> source)
|
|
where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
return Created(source).Any();
|
|
}
|
|
public IEnumerable<FakeImageOperations<TPixel>> Created<TPixel>(Image<TPixel> source) where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
return this.ImageOperators.OfType<FakeImageOperations<TPixel>>()
|
|
.Where(x => x.source == source);
|
|
}
|
|
|
|
public IEnumerable<FakeImageOperations<TPixel>.AppliedOpperation> AppliedOperations<TPixel>(Image<TPixel> source) where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
return Created(source)
|
|
.SelectMany(x => x.applied);
|
|
}
|
|
|
|
public IInternalImageProcessingContext<TPixel> CreateImageProcessingContext<TPixel>(Image<TPixel> source, bool mutate) where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
var op = new FakeImageOperations<TPixel>(source, mutate);
|
|
this.ImageOperators.Add(op);
|
|
return op;
|
|
}
|
|
|
|
|
|
public class FakeImageOperations<TPixel> : IInternalImageProcessingContext<TPixel>
|
|
where TPixel : struct, IPixel<TPixel>
|
|
{
|
|
public Image<TPixel> source;
|
|
|
|
public List<AppliedOpperation> applied = new List<AppliedOpperation>();
|
|
public bool mutate;
|
|
|
|
public FakeImageOperations(Image<TPixel> source, bool mutate)
|
|
{
|
|
this.mutate = mutate;
|
|
if (mutate)
|
|
{
|
|
this.source = source;
|
|
}
|
|
else
|
|
{
|
|
this.source = source?.Clone();
|
|
}
|
|
}
|
|
|
|
public Image<TPixel> Apply()
|
|
{
|
|
return source;
|
|
}
|
|
|
|
public IImageProcessingContext<TPixel> ApplyProcessor(IImageProcessor<TPixel> processor, Rectangle rectangle)
|
|
{
|
|
applied.Add(new AppliedOpperation
|
|
{
|
|
Processor = processor,
|
|
Rectangle = rectangle
|
|
});
|
|
return this;
|
|
}
|
|
|
|
public IImageProcessingContext<TPixel> ApplyProcessor(IImageProcessor<TPixel> processor)
|
|
{
|
|
applied.Add(new AppliedOpperation
|
|
{
|
|
Processor = processor
|
|
});
|
|
return this;
|
|
}
|
|
public struct AppliedOpperation
|
|
{
|
|
public Rectangle? Rectangle { get; set; }
|
|
public IImageProcessor<TPixel> Processor { get; set; }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|