pdfToPng method

Future<ApiResponse> pdfToPng(
  1. File file, {
  2. ConversionOptions? options,
})

Convert PDF to images (PNG)

file PDF file to convert options Conversion options

Implementation

Future<ApiResponse> pdfToPng(File file, {ConversionOptions? options}) {
  return convertPdfTo(file, ConversionFormat.png, options: options);
}