chrmorandi / yii2-jasper
Create Reports in PHP with JasperReports
Installs: 10 288
Dependents: 1
Suggesters: 0
Security: 0
Stars: 11
Watchers: 4
Forks: 7
Open Issues: 0
Language:HTML
Type:yii2-extension
Requires
- php: >=5.4.0
- yiisoft/yii2: *
Requires (Dev)
README
Package to generate reports with JasperReports 6 library through JasperStarter v3 command-line tool.
##Install
composer require chrmorandi/jasper
##Introduction
This package aims to be a solution to compile and process JasperReports (.jrxml & .jasper files).
###Why?
JasperReports is the best open source solution for reporting.
Generating HTML + CSS to make a PDF. Never think about it, that doesn't make any sense! :p
###What can I do with this?
Well, everything. JasperReports is a powerful tool for reporting and BI.
From their website:
The JasperReports Library is the world's most popular open source reporting engine. It is entirely written in Java and it is able to use data coming from any kind of data source and produce pixel-perfect documents that can be viewed, printed or exported in a variety of document formats including HTML, PDF, Excel, OpenOffice and Word.
I recommend using Jaspersoft Studio to build your reports, connect it to your datasource (ex: MySQL), loop thru the results and output it to PDF, XLS, DOC, RTF, ODF, etc.
What you can do with Jaspersoft:
- Graphical design environment
- Pixel-perfect report generation
- Output to PDF, HTML, CSV, XLS, TXT, RTF and more
##Examples
###The Hello World example.
Go to the examples directory in the root of the repository (vendor/chrmorandi/yii2-jasper/examples
).
Open the hello_world.jrxml
file with iReport or with your favorite text editor and take a look at the source code.
##Requirements
- Java JDK 8 or higher
- PHP exec() function
- [optional] Mysql Connector (if you want to use Mysql database)
- [optional] PostgreSQL Connector (if you want to use PostgreSQL database)
- [optional] Jaspersoft Studio (to draw and compile your reports)
##Installation
###Java
Check if you already have Java installed:
$ java -version
java version "1.8.0_91"
Java(TM) SE Runtime Environment (build 1.8.0_91-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.91-b14, mixed mode)
If you get:
command not found: java
Then install it with: (Ubuntu/Debian)
$ sudo apt-get install default-jdk
Now run the java -version
again and check if the output is ok.
###Composer
Install Composer if you don't have it.
composer require chrmorandi/yii2-jasper
Or in your composer.json
file add:
{ "require": { "chrmorandi/yii2-jasper": "*" } }
And the just run:
composer update
and thats it.
###Add the component to the configuration
Use Data Source Name (DSN) for connection information with the database in format like Driver invocation. See http://php.net/manual/pt_BR/pdo.construct.php
return [ ... 'components' => [ 'jasper' => [ 'class' => 'chrmorandi\jasper\Jasper::className()', 'redirect_output' => false, //optional 'resource_directory' => false, //optional 'locale' => 'pt_BR', //optional 'db' => [ 'dsn' =>'psql:host=localhost;port=5432;dbname=myDatabase', 'username' => 'username', 'password' => 'password', //'jdbcDir' => './jdbc', **Defaults to ./jdbc //'jdbcUrl' => 'jdbc:postgresql://"+host+":"+port+"/"+dbname', ] ] ... ], ... ];
###Using
use chrmorandi\jasper\Jasper; public function actionIndex() { // Set alias for sample directory Yii::setAlias('example', '@vendor/chrmorandi/yii2-jasper/examples'); /* @var $jasper Jasper */ $jasper = Yii::$app->jasper; // Compile a JRXML to Jasper $jasper->compile(Yii::getAlias('@example') . '/hello_world.jrxml')->execute(); // Process a Jasper file to PDF and RTF (you can use directly the .jrxml) $jasper->process( Yii::getAlias('@example') . '/hello_world.jasper', ['php_version' => 'xxx'], ['pdf', 'rtf'], false, false )->execute(); // List the parameters from a Jasper file. $array = $jasper->listParameters(Yii::getAlias('@example') . '/hello_world.jasper')->execute(); // return pdf file Yii::$app->response->sendFile(Yii::getAlias('@example') . '/hello_world.pdf'); }
###MySQL
We ship the MySQL connector (v5.1.39) in the /src/JasperStarter/jdbc/
directory.
###PostgreSQL
We ship the PostgreSQL (v9.4-1208) in the /src/JasperStarter/jdbc/
directory.
##Performance
Depends on the complexity, amount of data and the resources of your machine.
Is possible generate reports in the background.
##License
MIT