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.
36 lines
1.0 KiB
36 lines
1.0 KiB
// <copyright file="ImageFrame.cs" company="James Jackson-South">
|
|
// Copyright (c) James Jackson-South and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
|
|
namespace ImageProcessorCore
|
|
{
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// Represents a single frame in a animation.
|
|
/// </summary>
|
|
public class ImageFrame : ImageBase
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ImageFrame"/> class.
|
|
/// </summary>
|
|
public ImageFrame()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ImageFrame"/> class.
|
|
/// </summary>
|
|
/// <param name="other">
|
|
/// The other <see cref="ImageBase"/> to create this instance from.
|
|
/// </param>
|
|
/// <exception cref="ArgumentNullException">
|
|
/// Thrown if the given <see cref="ImageFrame"/> is null.
|
|
/// </exception>
|
|
public ImageFrame(ImageFrame other)
|
|
: base(other)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|