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

outdated

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

Download image on webb #


final WebImageDownloader _webImageDownloader = WebImageDownloader();
const _url = "https://picsum.photos/200";

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

Download image with reduced quality #


final WebImageDownloader _webImageDownloader = WebImageDownloader();
const _url = "https://picsum.photos/200";

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

Download image with custom headers #


final WebImageDownloader _webImageDownloader = WebImageDownloader();
const _url = "https://picsum.photos/200";

Future<void> _downloadImage() async {
  final Map<String, String> headers = {
    'authorization': token,
  };
  await _webImageDownloader.downloadImageFromWeb(_url, headers: headers);
}
45
likes
0
pub points
94%
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, http, universal_html

More

Packages that depend on image_downloader_web