C# Class ImageProcessor.Imaging.Formats.PngFormat

Provides the necessary information to support png images.
Inheritance: FormatBase, IQuantizableImageFormat
Afficher le fichier Open project: JimBobSquarePants/ImageProcessor Class Usage Examples

Méthodes publiques

Méthode Description
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.

Private Methods

Méthode Description
WuQuantizer ( ) : System.Drawing

Method Details

Save() public méthode

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. ///
Résultat System.Drawing.Image

Save() public méthode

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. ///
Résultat System.Drawing.Image