C# Класс ImageProcessor.Imaging.Formats.PngFormat

Provides the necessary information to support png images.
Наследование: FormatBase, IQuantizableImageFormat
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Save ( Stream stream, Image image, long bitDepth ) : Image

Saves the current image to the specified output stream.

Save ( string path, Image image, long bitDepth ) : Image

Saves the current image to the specified file path.

Приватные методы

Метод Описание
WuQuantizer ( ) : System.Drawing

Описание методов

Save() публичный Метод

Saves the current image to the specified output stream.
public Save ( Stream stream, Image image, long bitDepth ) : Image
stream System.IO.Stream /// The to save the image information to. ///
image System.Drawing.Image /// The to save. ///
bitDepth long /// The color depth in number of bits per pixel to save the image with. ///
Результат System.Drawing.Image

Save() публичный Метод

Saves the current image to the specified file path.
public Save ( string path, Image image, long bitDepth ) : Image
path string The path to save the image to.
image System.Drawing.Image /// The to save. ///
bitDepth long /// The color depth in number of bits per pixel to save the image with. ///
Результат System.Drawing.Image