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.
23 lines
639 B
23 lines
639 B
// Copyright (c) Six Labors.
|
|
// Licensed under the Six Labors Split License.
|
|
|
|
namespace SixLabors.ImageSharp
|
|
{
|
|
/// <summary>
|
|
/// The byte order of the data stream.
|
|
/// </summary>
|
|
public enum ByteOrder
|
|
{
|
|
/// <summary>
|
|
/// The big-endian byte order (Motorola).
|
|
/// Most-significant byte comes first, and ends with the least-significant byte.
|
|
/// </summary>
|
|
BigEndian,
|
|
|
|
/// <summary>
|
|
/// The little-endian byte order (Intel).
|
|
/// Least-significant byte comes first and ends with the most-significant byte.
|
|
/// </summary>
|
|
LittleEndian
|
|
}
|
|
}
|
|
|