Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/runlevel5/formbuilder
An attempt to clone Adobe Acrobat X for web platform
https://github.com/runlevel5/formbuilder
Last synced: about 2 months ago
JSON representation
An attempt to clone Adobe Acrobat X for web platform
- Host: GitHub
- URL: https://github.com/runlevel5/formbuilder
- Owner: runlevel5
- Created: 2012-02-24T05:46:30.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-03-02T05:21:31.000Z (almost 13 years ago)
- Last Synced: 2024-10-13T17:51:44.039Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 2.08 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Form Builder
------------The application takes in a PDF, split PDF pages to many PNGs then you could overlay
template box on images which later can be converted to PDF form with data filled in.Installation
------------The application uses RGhost which in turn utilise ghostscript. Make sure you
install binary of ghostscript.On OSX:
$ brew install ghostscriptOn Windows, please download from http://www.ghostscript.com/
Additionally, ImageMagick is required for paperclip gem.
On OSX:
$ brew install imagemagickOn Windows, please download from http://www.imagemagick.org/
All gems can be installed with bundler:
$ bundle install
Bootstrapping
-------------$ bundle exec rake db:migrate
$ bundle exec rake db:seedConfiguration
-------------If you place ghostscript binary in non-default path, please make sure you
set `RGhost::Config::GS[:path]` in initializers/rghost.rbRunning the application
-----------------------Start the server:
$ rails server