pdf_to_image_converter 0.0.1 copy "pdf_to_image_converter: ^0.0.1" to clipboard
pdf_to_image_converter: ^0.0.1 copied to clipboard

A new Flutter package for pdf to image converter.

pdf_to_image_converter #

A Flutter package to convert PDF pages to images and save them to the gallery.

Features #

  • Select a PDF file from the device.
  • Render PDF pages as images.
  • Save rendered images to the device's gallery.

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  pdf_to_image_converter: ^0.0.1
  1. Import the package and use it in your Flutter App.
import 'package:pdf_to_image_converter/pdf_to_image_converter.dart';

Example #

The pdf_to_image_converter package allows you to select a PDF file, render its pages as images, and save them to the gallery.


import 'package:flutter/material.dart';
import 'package:pdf_to_image_converter/pdf_to_image_converter.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: const PdfToImageConverter(),
    );
  }
}

Next Goals #

  • Add support for more PDF functionalities like text extraction

  • Add more containers to the package.

16
likes
0
points
237
downloads

Publisher

unverified uploader

Weekly Downloads

A new Flutter package for pdf to image converter.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

file_picker, flutter, image_gallery_saver, pdf_image_renderer

More

Packages that depend on pdf_to_image_converter