Giter Site home page Giter Site logo

rjanicek / hpdf.js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from manuels/hpdf.js

0.0 3.0 0.0 3.58 MB

Create PDFs in your browser or nodejs (javascript port of libharu)

Home Page: http://manuels.github.com/hpdf.js/

License: zlib License

Shell 0.01% JavaScript 99.82% C 0.01% CoffeeScript 0.18%

hpdf.js's Introduction

hpdf.js

Create PDFs in your browser (port of libharu) See the demo page

Why?

Because other projects with the same goal lack a lot of features (e.g. custom fonts).

Features

  • Custom Fonts (Type1 and TTF)
  • PNG, JPG and RAW images
  • Password encryption
  • Text and Link Annotations
  • Outlines
  • Drawing function (lines, cycles etc.)
  • Encoding support

How to use

Include hpdf.js or hpdf.min.js in your HTML file and see examples or libharu API reference

API naming convention

  • Function names are like their libharu API pendants but object-oriented and their first letter is lowercase.
    // javascript code                           // C code
    var pdf = new HPDF();                        HPDF_Doc pdf = HPDF_New (error_handler, NULL);
    var page = pdf.addPage();                    HPDF_Page page = HPDF_AddPage(pdf);
    pdf.free();                                  HPDF_Free(pdf);
  • Get in the function name is ommitted and Set is kept
    // javascript code                           // C code
    var width = page.width();                    HPDF_REAL width = HPDF_Page_GetWidth(page);
    page.setLineWidth(5);                        HPDF_Page_SetLineWidth(page, 5);
  • Use undefined in Javascript where you would use NULL in C
    // javascript code                           // C code
    var root = pdf.createOutline(undefined,      root = HPDF_CreateOutline (pdf, NULL, "OutlineRoot", NULL);
       "OutlineRoot", undefined);
  • Use strings (case irrelevant) in Javascript where you would use constants in C
    // javascript code                           // C code
    page.setSize('B5', 'landscape');             HPDF_Page_SetSize(page, HPDF_PAGE_SIZE_B5, HPDF_PAGE_LANDSCAPE);
  • Tailing NULL/undefined can be ommitted
    // javascript code                           // C code
    var font = pdf.font('Helvetica');            HPDF_Font font = HPDF_PDF_GetFont(pdf, 'Helvetica', NULL);
  • Instead of calling a error handler in C, an Exception is thrown in Javascript

Dependencies

None. You just need emscripten and CoffeeScript if you want to help developing hpdf.js

How to compile (for devs only)

  1. Configure libhaku cmake ./libharu

  2. Configure libpng cd ./libpng; cmake .; cd ..

  3. Compile hpdf.js ./compile.sh (You might want to change some paths in this bash script!)

hpdf.js's People

Contributors

manuels avatar

Watchers

Richard Janicek avatar James Cloos avatar  avatar

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.