Skip to content

Commit

Permalink
Implement interface in HeifMetadata
Browse files Browse the repository at this point in the history
  • Loading branch information
ynse01 committed Aug 19, 2024
1 parent 2b60337 commit dfff87e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/ImageSharp/Formats/Heif/HeifMetadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,10 @@ public FormatConnectingMetadata ToFormatConnectingMetadata()

/// <inheritdoc/>
public HeifMetadata DeepClone() => new(this);

/// <inheritdoc/>
public void AfterImageApply<TPixel>(Image<TPixel> destination)
where TPixel : unmanaged, IPixel<TPixel>
{
}
}

0 comments on commit dfff87e

Please sign in to comment.