Coder Social home page Coder Social logo

Comments (6)

Fdawgs avatar Fdawgs commented on May 28, 2024

Hi @Srimathi-kec, poppler.pdfToCairo() only accepts a String containing the PDF file path, or Buffer in the file param, see the API documentation here.

Adding support for those additional input types sounds interesting though!

from node-poppler.

Srimathi-kec avatar Srimathi-kec commented on May 28, 2024

Hi @Fdawgs , Can you please explain how the input buffer structure should be?
I am using buffer format like below, but it is not accepted by the library.
image

from node-poppler.

Srimathi-kec avatar Srimathi-kec commented on May 28, 2024

Hi @Fdawgs , Also when I directly give the buffer object without using stringify, I am getting below error.
Please let me know what format of buffer is expected by pdfToCairo.
image

from node-poppler.

Fdawgs avatar Fdawgs commented on May 28, 2024

As an example:

const poppler = new Poppler();
const file = './path/example.pdf';

// attachmentFile will be a Buffer
const attachmentFile = await fs.readFile(file);
const options = {
    jpegFile: true,
};
const outputPathPattern = `./path/example-jpg-`;

const res = await poppler.pdfToCairo(
    attachmentFile,
    outputPathPattern,
    options
);

from node-poppler.

Srimathi-kec avatar Srimathi-kec commented on May 28, 2024

Hi @Fdawgs , Here what I have is blob object of the file and not the actual pdf file. Is there anything that could convert the blob object to buffer readable by the library? Below code is not working
console.log("fileobj", req.body);
var fileObj = req.body;
var filepath = fileObj['data'];
console.log("filepat",filepath)
const buffer=new Buffer(JSON.stringify(filepath));
console.log("buffer:",buffer)
const pdfBuffer = await fs.promises.readFile(buffer)
console.log(pdfBuffer)
resp = await poppler.pdfToCairo(pdfBuffer, outputFile, options);

from node-poppler.

Fdawgs avatar Fdawgs commented on May 28, 2024

This is out of scope of this package, sorry. You will probably need something like Axios to read it, then transform into a Buffer, then pass to this.

from node-poppler.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.