Code Monkey home page Code Monkey logo

Comments (6)

galkahana avatar galkahana commented on May 31, 2024

you might want to limit the loop to a valid number of pages. see if this helps. i'm not sure that the method prepares for a case where i is irrelevant.

from hummusjs.

and2048 avatar and2048 commented on May 31, 2024

How can I get number of pages?

from hummusjs.

galkahana avatar galkahana commented on May 31, 2024

well, hummus does not currently provide this info.
it shouldn't, however, be overly complex to provide it. after all libtiff is part of the underlying C++ code.

let me know if you have alternates on how to get the number of pages, otherwise we'll figure out how to expose this info.

from hummusjs.

and2048 avatar and2048 commented on May 31, 2024

something like

for (var numberOfPages=0; true; numberOfPages++) {
    var page = pdfWriter.createPage(0,0,595,842);
    var cxt = pdfWriter.startPageContentContext(page);
    cxt.drawImage(0,0,'multipage.tiff',{index:numberOfPages,transformation:{width:595, height:842, proportional:true}});
    try {
      pdfWriter.writePage(page);
    } catch(e) {
      break;
    }   
}

from hummusjs.

galkahana avatar galkahana commented on May 31, 2024

Thanks. this method should leave some unwanted objects in the page. i still prefer that you'll be able to predict the number of pages and avoid writing anything unwanted.

Checked in/published new version now. to get the number of pages for any image (this includes pdf) use the following new method getImagePagesCount:

var pageCount = pdfWriter.getImagePagesCount('./TestMaterials/images/tiff/multipage.tif');

good luck,
Gal.

from hummusjs.

and2048 avatar and2048 commented on May 31, 2024

then segfault doesn't matter
Thanks a lot.

from hummusjs.

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.