psd_reader

Creator: coderz1093

Last updated:

0 purchases

psd_reader Image
psd_reader Images
Add to Cart

Description:

psd reader

A Dart libraries for convert psd files into image data.
Getting started #
dart pub add psd_reader
copied to clipboard
Usage #
import 'dart:io';
import 'dart:typed_data';

import 'package:psd_reader/psd_reader.dart';

void main() {
final psdPath = '/xxx.psd';

final File file = File(psdPath);
final Uint8List fileData = file.readAsBytesSync();
var imageData=readPsdImageData(data:fileData);
print(imageData?.length);
}

copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.