pdfToJpg method
Convert PDF to images (JPG)
file
PDF file to convert
options
Conversion options
Implementation
Future<ApiResponse> pdfToJpg(File file, {ConversionOptions? options}) {
return convertPdfTo(file, ConversionFormat.jpg, options: options);
}