Beispiel #1
0
        /// <summary>
        /// Creates an empty <see cref="TgaImage"/> with the given specification.
        /// </summary>
        /// <param name="width">The width in pixels.</param>
        /// <param name="height">The height in pixels.</param>
        /// <param name="format">The <see cref="TgaFormat"/> to create the image in.</param>
        public TgaImage(int width, int height, TgaFormat format)
        {
            if (width < 0 || width > ushort.MaxValue)
            {
                throw new ArgumentOutOfRangeException(nameof(width));
            }
            if (height < 0 || height > ushort.MaxValue)
            {
                throw new ArgumentOutOfRangeException(nameof(height));
            }

            header = new TgaHeader
            {
                ImageType    = 2,
                ColorMapSpec = new TgaColorMapSpec {
                },
                ImageSpec    = new TgaImageSpec
                {
                    ImageWidth             = (ushort)width,
                    ImageHeight            = (ushort)height,
                    BitsPerPixel           = 16,
                    AlphaWidthAndDirection = (byte)(format == TgaFormat.Argb4 ? 36 : 32),
                }
            };
            data = new TgaImageData
            {
                ColorMapData = new byte[0],
                ImageId      = new byte[0],
                PixelData    = new byte[width * height * 2],
            };
        }
Beispiel #2
0
        /// <summary>
        /// Parses a TGA format image from bytes.
        /// </summary>
        /// <param name="reader">The binary reader to read the bytes from.</param>
        /// <returns>The parsed <see cref="TgaImage">.</returns>
        public static TgaImage FromBytes(BinaryReader reader)
        {
            if (reader == null)
            {
                throw new ArgumentNullException(nameof(reader));
            }

            var header = TgaHeader.Deserialize(reader);
            var img    = TgaImageData.Deserialize(header, reader);

            return(new TgaImage(header, img));
        }
Beispiel #3
0
 private TgaImage(TgaHeader header, TgaImageData data)
 {
     this.header = header;
     this.data   = data;
 }