image_downloader_web 2.0.2 copy "image_downloader_web: ^2.0.2" to clipboard
image_downloader_web: ^2.0.2 copied to clipboard

A Flutter plugin for downloading images from URL to user's device. This plugin only works for Flutter web.

Image downloader for web #

Download images from URL on Flutter Web

Buy Me A Coffee

Usage example

Download image on webb #


const _url = "https://picsum.photos/200";

Future<void> _downloadImage() async {
  await WebImageDownloader.downloadImageFromWeb(_url);
}

Download image on web from UInt8List #


final uint8List = Uint8List();

Future<void> _downloadImage() async {
  await WebImageDownloader.downloadImageFromUInt8List(uInt8List: uint8List);
}

Download image with reduced quality #


const _url = "https://picsum.photos/200";

Future<void> _downloadImage() async {
  await WebImageDownloader.downloadImageFromWeb(_url, imageQuality: 0.5);
}

Download image with custom headers #


const _url = "https://picsum.photos/200";

Future<void> _downloadImage() async {
  final Map<String, String> headers = {
    'authorization': token,
  };
  await WebImageDownloader.downloadImageFromWeb(_url, headers: headers);
}
38
likes
0
pub points
95%
popularity

Publisher

unverified uploader

A Flutter plugin for downloading images from URL to user's device. This plugin only works for Flutter web.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_web_plugins, http, universal_html

More

Packages that depend on image_downloader_web