TgaOptions

TgaOptions constructor (1 of 2)

Initializes a new instance of the TgaOptions class.

public TgaOptions()

Examples

Saving of the JPG image as a TGA image.

[C#]

using (RasterImage image = (JpegImage)Image.Load("test.jpg"))
{
    image.Save("test.tga"", new TgaOptions());
}

See Also


TgaOptions constructor (2 of 2)

Initializes a new instance of the TgaOptions class.

public TgaOptions(TgaOptions tgaOptions)
ParameterTypeDescription
tgaOptionsTgaOptionsThe TGA options.

See Also