fc_native_image_resize 0.1.0
fc_native_image_resize: ^0.1.0 copied to clipboard
A Flutter plugin for image resizing via native APIs.
fc_native_image_resize #
A Flutter plugin for image resizing via native APIs.
iOS | Android | macOS | Windows |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
Supported image types:
- Read
- JPEG, PNG, WEBP
- Platform native image types. e.g. HEIC on iOS/macOS
- Write
- JPEG, PNG
Usage #
final plugin = FcNativeImageResize();
/// Resizes the [srcFile] with the given options and saves the results to [destFile].
/// [srcFile] source image path.
/// [destFile] destination image path.
/// [keepAspectRatio] if true, keeps aspect ratio.
/// [type] destination file type. 'png' or 'jpeg'.
/// [quality] only applies to 'jpeg' type, 1-100 (100 best quality).
await plugin.resizeFile(
srcFile: srcFile,
destFile: destFile,
width: 300,
height: 300,
keepAspectRatio: true,
type: 'jpeg',
quality: 90)