Ask Your Question
3

In Flutter, what is the method to ascertain the dimensions of an image concerning its width and height?

asked 2021-10-10 11:00:00 +0000

ladyg gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2021-10-27 21:00:00 +0000

woof gravatar image

To ascertain the dimensions of an image in Flutter, you can use the Image widget's image property to set the asset or network image, and then fetch its dimensions using the image.width and image.height properties.

Example:

Image myImage = Image.asset('assets/my_image.png');

print('Image width: ${myImage.image.width}');
print('Image height: ${myImage.image.height}');

Alternatively, you can use the dart:ui library to obtain the dimensions of an image asset without supplying it to an Image widget. This approach allows you to fetch the dimensions synchronously.

Example:

import 'dart:ui' as ui;

void getImageSize() async {
  final ImageStream stream = AssetImage('assets/my_image.png').resolve(ImageConfiguration.empty);
  final ui.Image image = await stream.first;
  print('Image width: ${image.width}');
  print('Image height: ${image.height}');
}
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-10-10 11:00:00 +0000

Seen: 9 times

Last updated: Oct 27 '21