Hi :)
First of all, thanks for the amazing package ❤
I cannot find information about this anywhere -- I'm getting unexpected results for the following code:
final originalImage = AssetImage(silhouette['path']); // w100 h200
final image = ResizeImage(
originalImage,
height: 100, // set the height to 100
);
return ImagePixels(
imageProvider: image,
builder: (context, img) {
if (!img.hasImage) {
return SizedBox();
}
print('${img.width}'); // 100
print('${img.height}'); // 200
Is there a way to make ResizeImage work with ImagePixels?
Hi :)
First of all, thanks for the amazing package ❤
I cannot find information about this anywhere -- I'm getting unexpected results for the following code:
Is there a way to make ResizeImage work with ImagePixels?