mikepsinn / php-highcharts-exporter
Export highcharts from PHP without running the NodeJS export server
Installs: 6 865
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 2
Language:JavaScript
Requires
- ext-json: *
Requires (Dev)
- phpunit/phpunit: ^8
- squizlabs/php_codesniffer: ^3.0
This package is auto-updated.
Last update: 2025-03-26 15:31:21 UTC
README
Generate Charts on Server Side using Highcharts without NodeJS
Install
Via Composer
$ composer require mikepsinn/php-highcharts-exporter
Add the following post-install-cmd to your composer.json
file so that phantomjs is executable
"scripts": {
"post-install-cmd": [
"chmod +x vendor/mikepsinn/php-highcharts-exporter/phantomjs"
]
}
Usage
$export = new HighchartsExport(HighchartsExport::getConfigContents('test-basic-line')); $export->setOutputFileName("test-chart.png"); // optional $export->setImageType("png"); // optional $path = $export->getFilePath(); // Absolute output file path on server $data = $export->getImageData(); // Raw image data can be saved to file $html = $export->getHtml(); // Inline this in any html file
Testing
$ composer test
Security
If you discover any security related issues, please email m@thinkbynumbers.org instead of using the issue tracker.
Credits
- Mike P. Sinn
- All Contributors
- PhantomJS (phantomjs.org) is a headless WebKit scriptable with JavaScript.
- Highcharts JS (highcharts.com) is a JavaScript charting library based on SVG, with fallbacks to VML and canvas for old browsers.
License
The MIT License (MIT). Please see License File for more information.
Development Notes
Test to Make Sure it Works With Known Good Options File
- cd && ./phantomjs highcharts-convert.js -infile test-options.json -constr Chart -outfile images/test.png
Basic Command Line Test
- ./phantomjs highcharts-convert.js -infile test-basic-line.json -constr Chart -outfile images/basic-line.png
Command Line Usage
- Save your highchart config to images/options.json
- cd && ./phantomjs highcharts-convert.js -infile images/options.json -constr Chart -outfile images/test.png