C# Class TinyPng.Extensions

Show file Open project: ctolkien/TinyPNG

Public Methods

Method Description
GetImageByteData ( this result ) : Task

Get the image data as a byte array

GetImageStreamData ( this result ) : Task

Gets the image data as a stream

SaveImageToDisk ( this result, string filePath ) : System.Threading.Tasks.Task

Writes the image to disk

Method Details

GetImageByteData() public static method

Get the image data as a byte array
public static GetImageByteData ( this result ) : Task
result this The result from compress
return Task

GetImageStreamData() public static method

Gets the image data as a stream
public static GetImageStreamData ( this result ) : Task
result this The result from compress
return Task

SaveImageToDisk() public static method

Writes the image to disk
public static SaveImageToDisk ( this result, string filePath ) : System.Threading.Tasks.Task
result this The result from compress
filePath string The path to store the file
return System.Threading.Tasks.Task