// Copyright (c) Six Labors. // Licensed under the Apache License, Version 2.0. using System; using System.Collections.Concurrent; using System.IO; using SixLabors.ImageSharp.Advanced; using SixLabors.ImageSharp.Formats; using SixLabors.ImageSharp.PixelFormats; namespace SixLabors.ImageSharp.Tests { /// /// A test image file. /// public class TestFile { /// /// The test file cache. /// private static readonly ConcurrentDictionary Cache = new ConcurrentDictionary(); /// /// The "Formats" directory, as lazy value /// // ReSharper disable once InconsistentNaming private static readonly Lazy InputImagesDirectoryValue = new Lazy(() => TestEnvironment.InputImagesDirectoryFullPath); /// /// The image (lazy initialized value) /// private Image image; /// /// The image bytes /// private byte[] bytes; /// /// Initializes a new instance of the class. /// /// The file. private TestFile(string file) { this.FullPath = file; } /// /// Gets the image bytes. /// public byte[] Bytes => this.bytes ?? (this.bytes = File.ReadAllBytes(this.FullPath)); /// /// Gets the full path to file. /// public string FullPath { get; } /// /// Gets the file name. /// public string FileName => Path.GetFileName(this.FullPath); /// /// Gets the file name without extension. /// public string FileNameWithoutExtension => Path.GetFileNameWithoutExtension(this.FullPath); /// /// Gets the image with lazy initialization. /// private Image Image => this.image ?? (this.image = ImageSharp.Image.Load(this.Bytes)); /// /// Gets the input image directory. /// private static string InputImagesDirectory => InputImagesDirectoryValue.Value; /// /// Gets the full qualified path to the input test file. /// /// /// The file path. /// /// /// The . /// public static string GetInputFileFullPath(string file) { return Path.Combine(InputImagesDirectory, file).Replace('\\', Path.DirectorySeparatorChar); } /// /// Creates a new test file or returns one from the cache. /// /// The file path. /// /// The . /// public static TestFile Create(string file) { return Cache.GetOrAdd(file, (string fileName) => new TestFile(GetInputFileFullPath(file))); } /// /// Gets the file name. /// /// The value. /// /// The . /// public string GetFileName(object value) { return $"{this.FileNameWithoutExtension}-{value}{Path.GetExtension(this.FullPath)}"; } /// /// Gets the file name without extension. /// /// The value. /// /// The . /// public string GetFileNameWithoutExtension(object value) { return this.FileNameWithoutExtension + "-" + value; } /// /// Creates a new image. /// /// /// The . /// public Image CreateRgba32Image() { return this.Image.Clone(); } /// /// Creates a new image. /// /// /// The . /// public Image CreateRgba32Image(IImageDecoder decoder) { return ImageSharp.Image.Load(this.Image.GetConfiguration(), this.Bytes, decoder); } } }