|
|
|
@ -1,19 +1,14 @@ |
|
|
|
// Copyright (c) Six Labors.
|
|
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
|
|
|
|
using System.Collections.Generic; |
|
|
|
using SixLabors.ImageSharp.Formats.Tiff; |
|
|
|
using SixLabors.ImageSharp.PixelFormats; |
|
|
|
using Xunit; |
|
|
|
|
|
|
|
namespace SixLabors.ImageSharp.Tests |
|
|
|
namespace SixLabors.ImageSharp.Tests.Formats.Tiff |
|
|
|
{ |
|
|
|
using Xunit; |
|
|
|
|
|
|
|
using ImageSharp.Formats; |
|
|
|
using ImageSharp.Formats.Tiff; |
|
|
|
using System.Collections.Generic; |
|
|
|
|
|
|
|
using SixLabors.ImageSharp.Metadata; |
|
|
|
using SixLabors.ImageSharp.Metadata.Profiles.Exif; |
|
|
|
|
|
|
|
[Trait("Category", "Tiff")] |
|
|
|
public class TiffEncoderMetadataTests |
|
|
|
{ |
|
|
|
public static object[][] BaselineMetadataValues = new[] { new object[] { TiffTags.Artist, TiffMetadataNames.Artist, "My Artist Name" }, |
|
|
|
|