Resize and ZipArchive the images in the Zip.
(Zip -> Image -> ResizeImage -> Zip )
Resize the images in the zip file to the specified size and compress them into a zip file ```rust fn main() -> Result<(), io::Error> { let testpath = String::from("C:\test\original.zip"); let testoutpath = String::from("C:\test\conv.zip"); let testpixels: [u32; 2] = [750, 1334]; let testquality: u8 = 90;
let _ = unziptomemory(testpath, PrintMode::Print)? .convertsize(testpixels[0], testpixels[1], ConvMode::Height)? .createzip(testoutpath, SaveFormat::Ref, test_quality)?; }
return OK(()); ```
Jpeg/Jpg/Png
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.