Function image::save_buffer [] [src]

pub fn save_buffer<P>(
    path: P,
    buf: &[u8],
    width: u32,
    height: u32,
    color: ColorType
) -> Result<()> where
    P: AsRef<Path>, 

Saves the supplied buffer to a file at the path specified.

The image format is derived from the file extension. The buffer is assumed to have the correct format according to the specified color type. This will lead to corrupted files if the buffer contains malformed data. Currently only jpeg and png files are supported.