Skip to content

6.0.0

Choose a tag to compare

@Nacchofer31 Nacchofer31 released this 21 Jan 16:28
· 74 commits to main since this release
28a221f

General

  • BREAKING CHANGE: All methods now use MergeInput instead of String for input parameters, allowing both file paths and raw bytes (Uint8List).
  • BREAKING CHANGE: generatePDFFromDocuments parameter changed from inputPaths: List<String> to inputs: List<MergeInput>.
  • BREAKING CHANGE: mergeMultiplePDFs parameter changed from inputPaths: List<String> to inputs: List<MergeInput>.
  • BREAKING CHANGE: createPDFFromMultipleImages parameter changed from inputPaths: List<String> to inputs: List<MergeInput>.
  • BREAKING CHANGE: createImageFromPDF parameter changed from inputPath: String to input: MergeInput.
  • Added MergeInput class with two factory constructors: MergeInput.path(String) and MergeInput.bytes(Uint8List).
  • Added support for mixing file paths and bytes in the same operation.
  • Added support for .heic file format.