Code Monkey home page Code Monkey logo

ng-html-to-pdf-save's Introduction

Angularjs save HTML as PDF in your browser

This is an angularjs module to save HTML as PDF DEMO, it basically converts the HTML to HTML5 canvas and captures the same and converts it to PDF and saves it in your browser .


Here are the steps :
1) bower install angular-save-html-to-pdf
OR
npm install angular-save-html-to-pdf
  1. Link the JS files in your HTML file :
   <script src="../bower_components/angular/angular.js"></script>
   <script src="../bower_components/jquery/dist/jquery.min.js"></script>
   <script src="https://cdn.rawgit.com/niklasvh/html2canvas/0.5.0-alpha2/dist/html2canvas.min.js"></script>
   <script src="../bower_components/jsPDF/dist/jspdf.debug.js"></script>
   <script src="../dist/saveHtmlToPdf.min.js"></script>

  1. Add this module to your angular app :
var app = angular.module('app' , ['htmlToPdfSave']) ;
  1. Use the directives in your app , here is a code snippet from a working copy in demo folder :
<button pdf-save-button="idOne" pdf-name="someone.pdf" class="btn">Hello Someone</button>
	<!-- below block will be saved as pdf -->

	<div pdf-save-content="idOne" >
		Hello Someone
	</div>

	<button pdf-save-button="idOneGraph" pdf-name="hello.pdf" class="btn">Hello World</button>

  <!-- below block will be saved as pdf -->

	<div pdf-save-content="idOneGraph" >
		Hello World
	</div>

To allow addition of multiple pdf save button and linking them to the pdf save content block every pdf-save-button and pdf-save-content directive is associated with an ID , the pdf-save-button will match the ID with pdf-save-content block and the matching HTML block will be saved .

Developer instructions:

If you would like to run the project locally, you can download the repo and run :
1)

  > gulp concat
  > gulp compress
  ```
commands to create the bundled file which is then used in the demo/index.html file.

2)  demo/index.html file can be served easily by any static web server to test the project, I use and thus recommend python server which you can start by writing
   ``` python -m SimpleHTTPServer 9090 ```
   9090 can be replaced by your prefered port. <br/>
NOTE : This is a new repository and has been tested with basic HTML and google graphs , please create github issues if you find it is not working with something and consider contributing. Cheers .

ng-html-to-pdf-save's People

Contributors

hearsid avatar vijaydogra avatar

Watchers

James Cloos avatar Gohula Krishnan 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.