forked from parallax/jsPDF
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
426 additions
and
575 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"tagline":"Generating PDF files purely in Javascript","google":"UA-32767308-2","note":"Don't delete this file! It's used internally to help with page regeneration.","body":"#jsPDF - Generate PDF files in client-side JavaScript\r\n\r\nYou can [catch me on twitter](http://twitter.com/MrRio): [@MrRio](http://twitter.com/MrRio) or head over to [my company's website](http://snapshotmedia.co.uk) for consultancy. \r\n\r\n## Creating your first document\r\n\r\nSee examples/basic.html. Make sure you include BlobBuilder.js and FileSaver.js. \r\n\r\n```javascript\r\n\r\nvar doc = new jsPDF();\r\ndoc.text(20, 20, 'Hello world.');\r\ndoc.save('Test.pdf');\r\n```\r\n\r\n## Credits\r\n\r\nBig thanks to Daniel Dotsenko from [Willow Systems Corporation](http://willow-systems.com) for making huge contributions to the codebase. \r\n\r\nThanks to Ajaxian.com for [featuring us back in 2009](http://ajaxian.com/archives/dynamically-generic-pdfs-with-javascript).\r\n\r\nEveryone else that's contributed patches or bug reports. You rock.\r\n\r\n## License\r\n\r\n(MIT License)\r\n\r\nCopyright (c) 2010-2012 James Hall, https://github.com/MrRio/jsPDF\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n\"Software\"), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","name":"jsPDF"} | ||
{"note":"Don't delete this file! It's used internally to help with page regeneration.","name":"jsPDF","tagline":"Generating PDF files purely in Javascript","google":"UA-32767308-2","body":"You can [catch me on twitter](http://twitter.com/MrRio): [@MrRio](http://twitter.com/MrRio) or head over to [my company's website](http://snapshotmedia.co.uk) for consultancy. \r\n\r\n## Creating your first document\r\n\r\nSee examples/basic.html. Make sure you include BlobBuilder.js and FileSaver.js. \r\n\r\n```javascript\r\n\r\nvar doc = new jsPDF();\r\ndoc.text(20, 20, 'Hello world.');\r\ndoc.save('Test.pdf');\r\n```\r\n\r\n## Demo\r\n\r\n### Simple two-page text document\r\n\r\n```javascript\r\nvar doc = new jsPDF();\r\ndoc.text(20, 20, 'Hello world!');\r\ndoc.text(20, 30, 'This is client-side Javascript, creating a PDF.');\r\ndoc.addPage();\r\ndoc.text(20, 20, 'Do you like that?');\r\n\r\ndoc.save('Test.pdf');\r\n```\r\n\r\n[Run code](javascript:demoTwoPageDocument())\r\n\r\n## Credits\r\n\r\nBig thanks to Daniel Dotsenko from [Willow Systems Corporation](http://willow-systems.com) for making huge contributions to the codebase. \r\n\r\nThanks to Ajaxian.com for [featuring us back in 2009](http://ajaxian.com/archives/dynamically-generic-pdfs-with-javascript).\r\n\r\nEveryone else that's contributed patches or bug reports. You rock.\r\n\r\n## License\r\n\r\n(MIT License)\r\n\r\nCopyright (c) 2010-2012 James Hall, https://github.com/MrRio/jsPDF\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n\"Software\"), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.