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.
21 lines
763 B
21 lines
763 B
// Copyright (c) Six Labors and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
using SixLabors.ImageSharp.Formats.Jpeg;
|
|
using SixLabors.ImageSharp.Metadata;
|
|
|
|
namespace SixLabors.ImageSharp
|
|
{
|
|
/// <summary>
|
|
/// Extension methods for the <see cref="ImageMetadata"/> type.
|
|
/// </summary>
|
|
public static partial class MetadataExtensions
|
|
{
|
|
/// <summary>
|
|
/// Gets the jpeg format specific metadata for the image.
|
|
/// </summary>
|
|
/// <param name="metadata">The metadata this method extends.</param>
|
|
/// <returns>The <see cref="JpegMetadata"/>.</returns>
|
|
public static JpegMetadata GetJpegMetadata(this ImageMetadata metadata) => metadata.GetFormatMetadata(JpegFormat.Instance);
|
|
}
|
|
}
|
|
|