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

Access your proprietary railway subscriptions in pure Dart.

railway_subscriptions #

Access proprietary railway subscription APIs.

Supported #

  • Deutsche Bahn:
    • Picture Layout
    • no regular tickets, only tickets showing up as pixilated image in your DB app

A note on Aztec decoding #

Some tickets only contain the ticket barcode as image data - often an Aztec. This package provides basic parsing for it using package:zxing_lib. It turned out to be pretty unreliable. It's hence recommended to rather provide a custom Aztec parser - the zxing-cpp implementation via FFI (Dart bindings) turned out to be the only one functional yet. All others, especially the original zxing Java implementation, turned out to decode invalid binary data from the ticket images.

Use to following snippet to provide a custom Aztec decoder :

import 'dart:typed_data';

import 'package:image/image.dart';
import 'package:railway_subscriptions/railway_subscriptions.dart';

void main() {
  // a callback of type [AztecImageDecoder] => Uint8List? Function(Image image);
  AztecImageDecoder myCustomDecoder=(Image image) {
    /// ...
  };

  setCustomAztecDecoder(myCustomDecoder);
}

Additional information #

Available under the terms and conditions of EUPL-1.2. Copy left ! Use in open source applications only !

0
likes
120
pub points
0%
popularity

Publisher

verified publisherwith-the-braid.cf

Access your proprietary railway subscriptions in pure Dart.

Homepage
Repository (GitLab)
View/report issues

Documentation

API reference

License

EUPL-1.2 (LICENSE)

Dependencies

barcode, http, image, intl, pkpass, zxing_lib

More

Packages that depend on railway_subscriptions