imgix 0.3.0 copy "imgix: ^0.3.0" to clipboard
imgix: ^0.3.0 copied to clipboard

An Imgix library for Dart. Generate Imgix URLs with options easily

example/imgix_example.dart

import 'package:imgix/imgix.dart';

main() {
  final url = getImgixUrl(
    "https://test.imgix.net/test.png",
    ImgixOptions(
      width: 100,
      height: 200,
      format: ImgixFormat.jpg,
      quality: 75,
      auto: [ImgixAuto.compress],
    ),
  );

  print(url);
  // https://test.imgix.net/test.png?fm=jpg&h=200&w=100&auto=compress&q=75
}
4
likes
160
points
43
downloads

Publisher

verified publishercretezy.com

Weekly Downloads

An Imgix library for Dart. Generate Imgix URLs with options easily

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

meta

More

Packages that depend on imgix