All Projects → hearsid → ng-html-to-pdf-save

hearsid / ng-html-to-pdf-save

Licence: other
Save HTML as pdf file on the browser with angularjs .

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to ng-html-to-pdf-save

Picture-To-Ascii
Converts a picture to Ascii.
Stars: ✭ 18 (-37.93%)
Mutual labels:  converts
colors-convert
🦚 A simple colors library
Stars: ✭ 15 (-48.28%)
Mutual labels:  converts
SwiftyIllustrator
A tool for quickly converting Adobe Illustrator shapes into SwiftUI code.
Stars: ✭ 26 (-10.34%)
Mutual labels:  converts
gedcom
👪 A Go library and CLI tools for encoding, decoding, traversing, merging, comparing, querying and publishing GEDCOM files.
Stars: ✭ 55 (+89.66%)
Mutual labels:  converts
color
A library of well-tested helper methods for working with colors.
Stars: ✭ 13 (-55.17%)
Mutual labels:  converts
md2gemini
File converter from Markdown to Gemini.
Stars: ✭ 128 (+341.38%)
Mutual labels:  converts
srcset.sh
A command line script that generates multiple responsive versions of an image at width breakpoints -- 320,480,640,768,960,1024,1280,1440 pixels wide -- that match common Mobile and widescreen desktop/laptop viewports using Imagemagick's convert utility and outputs the needed <img/> tag
Stars: ✭ 20 (-31.03%)
Mutual labels:  converts
FileConvert
Converts between file formats such as CSV and Parquet
Stars: ✭ 14 (-51.72%)
Mutual labels:  converts
alfred-string-operations
Perform string operations to clipboard content
Stars: ✭ 70 (+141.38%)
Mutual labels:  converts
EscherConverter
A standalone program that reads files created with the graphical network editor Escher and converts them to files in community standard formats.
Stars: ✭ 14 (-51.72%)
Mutual labels:  converts
lambda2js
Converts a C# expression tree (from Linq namespace) to a syntatically correct javascript code.
Stars: ✭ 51 (+75.86%)
Mutual labels:  converts
php2python
No description or website provided.
Stars: ✭ 19 (-34.48%)
Mutual labels:  converts
mathconverter
Converts from AsciiMath, LaTeX, MathML to LaTeX, MathML
Stars: ✭ 35 (+20.69%)
Mutual labels:  converts

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 .
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].