forked from Spacefish/NeoSolve.ImageSharp.AVIF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAVIFDecoder.cs
More file actions
224 lines (195 loc) · 7.69 KB
/
AVIFDecoder.cs
File metadata and controls
224 lines (195 loc) · 7.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.Metadata;
using SixLabors.ImageSharp.PixelFormats;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace NeoSolve.ImageSharp.AVIF;
public class AVIFDecoder : IImageDecoder
{
public static IImageDecoder Instance = new AVIFDecoder();
public Image<TPixel> Decode<TPixel>(DecoderOptions options, Stream stream)
where TPixel : unmanaged, IPixel<TPixel>
{
return DecodeAsync<TPixel>(options, stream, CancellationToken.None).Result;
}
public Image Decode(DecoderOptions options, Stream stream)
{
return DecodeAsync(options, stream, CancellationToken.None).Result;
}
/// <summary>
/// Decodes an AVIF image from a stream into an ImageSharp image,
/// piping the data through avifdec.
/// </summary>
/// <typeparam name="TPixel">The pixel format.</typeparam>
/// <param name="options">The decoder options.</param>
/// <param name="stream">The input stream containing the AVIF data.</param>
/// <param name="cancellationToken">A cancellation token.</param>
/// <returns>A decoded image.</returns>
public async Task<Image<TPixel>> DecodeAsync<TPixel>(DecoderOptions options, Stream stream, CancellationToken cancellationToken = default)
where TPixel : unmanaged, IPixel<TPixel>
{
string inputFilePath = Path.GetTempFileName();
string outputFilePath = Path.GetTempFileName() + ".png";
try
{
using (var fileStream = new FileStream(inputFilePath, FileMode.Create, FileAccess.Write, FileShare.None, 4096, true))
{
await stream.CopyToAsync(fileStream, cancellationToken);
}
var arguments = new List<string> { inputFilePath, outputFilePath };
var psi = new ProcessStartInfo
{
FileName = Native.CAVIFDEC,
Arguments = string.Join(' ', arguments),
UseShellExecute = false,
CreateNoWindow = true,
RedirectStandardError = true
};
var process = Process.Start(psi) ?? throw new InvalidOperationException("Failed to start avifdec process.");
await process.WaitForExitAsync(cancellationToken);
if (process.ExitCode != 0)
{
string error = await process.StandardError.ReadToEndAsync();
throw new InvalidOperationException($"AVIF decoding failed with exit code {process.ExitCode}. Error: {error}");
}
using (var outputStream = new FileStream(outputFilePath, FileMode.Open, FileAccess.Read, FileShare.None, 4096, true))
{
return await Image.LoadAsync<TPixel>(outputStream, cancellationToken);
}
}
finally
{
File.Delete(inputFilePath);
File.Delete(outputFilePath);
}
}
public async Task<Image> DecodeAsync(DecoderOptions options, Stream stream, CancellationToken cancellationToken = default)
{
return await DecodeAsync<Rgba32>(options, stream, cancellationToken);
}
public ImageInfo Identify(DecoderOptions options, Stream stream)
{
return IdentifyAsync(options, stream, CancellationToken.None).Result;
}
public async Task<ImageInfo> IdentifyAsync(DecoderOptions options, Stream stream, CancellationToken cancellationToken = default)
{
string tempFilePath = Path.GetTempFileName();
try
{
await using (var fileStream = new FileStream(tempFilePath, FileMode.Create, FileAccess.Write, FileShare.None, 4096, true))
{
await stream.CopyToAsync(fileStream, cancellationToken);
}
stream.Position = 0;
var process = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = Native.CAVIFDEC,
Arguments = $"--info \"{tempFilePath}\"",
RedirectStandardOutput = true,
RedirectStandardError = true,
UseShellExecute = false,
CreateNoWindow = true
}
};
process.Start();
await process.WaitForExitAsync(cancellationToken);
if (process.ExitCode == 0)
{
string output = await process.StandardOutput.ReadToEndAsync();
var avifInfo = ParseAVIFInfo(output);
var imageMetadata = new ImageMetadata();
Size size = new(avifInfo.Width, avifInfo.Height);
return new ImageInfo(new PixelTypeInfo(avifInfo.BitDepth), size, imageMetadata);
}
else
{
string error = await process.StandardError.ReadToEndAsync();
return null;
}
}
finally
{
if (File.Exists(tempFilePath))
{
File.Delete(tempFilePath);
}
}
}
public static AVIFInfo ParseAVIFInfo(string text)
{
var avifInfo = new AVIFInfo();
var reader = new StringReader(text);
string line;
while ((line = reader.ReadLine()) != null)
{
if (string.IsNullOrWhiteSpace(line) || !line.Contains(":"))
{
continue;
}
var parts = line.Split(':', 2, StringSplitOptions.TrimEntries);
var key = parts[0].Trim().Replace("*", "").Trim();
var value = parts[1].Trim();
switch (key)
{
case "Resolution":
var resolutionParts = value.Split('x');
if (resolutionParts.Length == 2)
{
avifInfo.Width = int.Parse(resolutionParts[0].Trim());
avifInfo.Height = int.Parse(resolutionParts[1].Trim());
}
break;
case "Bit Depth":
avifInfo.BitDepth = int.Parse(value);
break;
case "Format":
avifInfo.Format = value;
break;
case "Chroma Sam. Pos":
avifInfo.ChromaSamPos = int.Parse(value);
break;
case "Alpha":
avifInfo.Alpha = value;
break;
case "Range":
avifInfo.Range = value;
break;
case "Color Primaries":
avifInfo.ColorPrimaries = int.Parse(value);
break;
case "Transfer Char.":
avifInfo.TransferChar = int.Parse(value);
break;
case "Matrix Coeffs.":
avifInfo.MatrixCoeffs = int.Parse(value);
break;
case "ICC Profile":
avifInfo.IccProfile = value;
break;
case "XMP Metadata":
avifInfo.XmpMetadata = value;
break;
case "Exif Metadata":
avifInfo.ExifMetadata = value;
break;
case "Transformations":
avifInfo.Transformations = value;
break;
case "Progressive":
avifInfo.Progressive = value;
break;
case "Gain map":
avifInfo.GainMap = value;
break;
}
}
return avifInfo;
}
}