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

outdated

A starting point for Dart libraries or applications.

Imgix Dart #

A Imgix library for Dart.

Usage #

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
}

Features and bugs #

Some options are missing. They will be added on request, or open a pull request!

Please file feature requests and bugs at the [issue tracker][https://github.com/Cretezy/imgix.dart].

4
likes
0
pub points
50%
popularity

Publisher

verified publishercretezy.com

A starting point for Dart libraries or applications.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on imgix