mirror of https://github.com/SixLabors/ImageSharp
Browse Source
Former-commit-id: f6d222bdb990035f155162523ac8d2eaab7e57e9 Former-commit-id: 2cc168df666dc13196df282de960242e2db5785aaf/merge-core
6 changed files with 173 additions and 103 deletions
@ -0,0 +1,38 @@ |
|||||
|
// --------------------------------------------------------------------------------------------------------------------
|
||||
|
// <copyright file="RgbaComponent.cs" company="James South">
|
||||
|
// Copyright (c) James South.
|
||||
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
// </copyright>
|
||||
|
// <summary>
|
||||
|
// Enumerates the RGBA (red, green, blue, alpha) color components.
|
||||
|
// </summary>
|
||||
|
// --------------------------------------------------------------------------------------------------------------------
|
||||
|
|
||||
|
namespace ImageProcessor.Imaging.Colors |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// Enumerates the RGBA (red, green, blue, alpha) color components.
|
||||
|
/// </summary>
|
||||
|
public enum RgbaComponent |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// The blue component.
|
||||
|
/// </summary>
|
||||
|
B = 0, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// The green component.
|
||||
|
/// </summary>
|
||||
|
G = 1, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// The red component.
|
||||
|
/// </summary>
|
||||
|
R = 2, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// The alpha component.
|
||||
|
/// </summary>
|
||||
|
A = 3 |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue