Giter Site home page Giter Site logo

phpjasper's Introduction

JasperReports for PHP and Laravel Framework

Latest Stable Version Latest Unstable Version License Total Downloads

Is using Linux servers?

Do not forget to grant permission 777 for the directory /vendor/lavela/phpjasper/src/JasperStarter/bin and the file binary jasperstarter

##Introduction

This package aims to be a solution to compile and process JasperReports (.jrxml & .jasper files).

###Why?

Did you ever had to create a good looking Invoice with a lot of fields for your great web app?

I had to, and the solutions out there were not perfect. Generating HTML + CSS to make a PDF? WTF? That doesn't make any sense! :)

Then I found JasperReports the best open source solution for reporting.

###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, POSTGRES), loop thru the results and output it to PDF, XLS, DOC, RTF, ODF, etc.

Some examples of what you can do:

  • Invoices
  • Reports
  • Listings

Package to generate reports with JasperReports 6 library through JasperStarter v3 command-line tool.

##Requirements

##Installation

###Java

Check if you already have Java installed:

$ java -version
java version "1.8.0_65"
Java(TM) SE Runtime Environment (build 1.8.0_65-b17)
Java HotSpot(TM)  Client VM (build 25.65-b01, mixed mode, sharing)

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.

##Install

Install Composer if you don't have it.

composer require lavela/phpjasper

Or in your 'composer.json' file add:

{
    "require": {
		"lavela/phpjasper": "1.*"
    }
}

And the just run:

composer install

and thats it.

##Examples

###The Hello World example.

Go to the examples directory in the root of the repository (vendor/lavela/phpjasper/examples). Open the hello_world.jrxml file with iReport or with your favorite text editor and take a look at the source code.

Compiling

First we need to compile our JRXML file into a JASPER binary file. We just have to do this one time.

Note: You don't need to do this step if you are using Jaspersoft Studio. You can compile directly within the program.

require __DIR__ . '/vendor/autoload.php';

use JasperPHP\JasperPHP;

$input = __DIR__ . '/vendor/lavela/phpjasper/examples/hello_world.jrxml';	

$jasper = new JasperPHP;
$jasper->compile($input)->execute();

This commando will compile the hello_world.jrxml source file to a hello_world.jasper file.

####Processing

Now lets process the report that we compile before:

require __DIR__ . '/vendor/autoload.php';

use JasperPHP\JasperPHP;

$input = __DIR__ . '/vendor/lavela/phpjasper/examples/hello_world.jasper';	
$output = __DIR__;	

$jasper = new JasperPHP;

$jasper->process(
	$input,
	$output,
	array("pdf", "rtf")
)->execute();

Now check the examples folder! :) Great right? You now have 2 files, hello_world.pdf and hello_world.rtf.

Check the API of the compile and process functions in the file src/JasperPHP/JasperPHP.php file.

####Listing Parameters

Querying the jasper file to examine parameters available in the given jasper report file:

require __DIR__ . '/vendor/autoload.php';

use JasperPHP\JasperPHP;

$input = __DIR__ . '/vendor/lavela/phpjasper/examples/hello_world_params.jrxml';

$jasper = new JasperPHP;
$output = $jasper->list_parameters($input)->execute();

foreach($output as $parameter_description)
    print $parameter_description . '<pre>';

###Advanced example - using a database

We can also specify parameters for connecting to database:

require __DIR__ . '/vendor/autoload.php';

use JasperPHP\JasperPHP;	

$input = __DIR__ . '/vendor/lavela/phpjasper/examples/hello_world.jrxml';	
$output = __DIR__;	

$jasper = new JasperPHP;
$jasper->process(
	$input,
	$output,
	array("pdf", "rtf"),
	array("php_version" => phpversion()),
	array(
		'driver' => 'postgres',
		'username' => 'vagrant',
		'host' => 'localhost',
		'database' => 'samples',
		'port' => '5432',
	)						
)->execute();

###Using JasperPHP with Laravel 5.2!

  1. Install Composer if you don't have it.
composer require lavela/phpjasper

Or in your 'composer.json' file add:

{
    "require": {
		"lavela/phpjasper": "1.*"
    }
}
  1. And the just run:

    composer update

  2. Add to your config/app.php providers array:

    JasperPHP\JasperPHPServiceProvider::class,

  3. Create a folder /report on /public directory

  4. Copy the file hello_world.jrxml in /vendor/lavela/phpjasper/examples from directory: /public/report

  5. Run php artisan serve

  6. Access localhost:8000/reports

  7. Check the directory /public/report. You now have 3 files, hello_world.pdf, hello_world.rtf and hello_world.xml.

Below the code you will use in your route.php

use JasperPHP\JasperPHP;

Route::get('/reports', function () {
	
    $output = public_path() . '/report/'.time().'_hello_world';
    $report = new JasperPHP;
    $report->process(
    	public_path() . '/report/hello_world.jrxml', 
        $output, 
        array('pdf', 'rtf', 'xml'),
        array(),
        array()  
        )->execute();
});

In this example we generate reports pdf, rtf and xml.

###Additional Information - Reports from a xml in Laravel 5.2

See how easy it is to generate a report with a source an xml file:

use JasperPHP\JasperPHP;

public function xmlToPdf()
    {
        $output = public_path() . '/report/'.time().'_CancelAck';
        $output = public_path() . '/report/'.time().'_CancelAck';
        $ext = "pdf";
        $data_file = public_path() . '/report/CancelAck.xml';
        $driver = 'xml';
        $xml_xpath = '/CancelResponse/CancelResult/ID';
          
        \JasperPHP::process(
            public_path() . '/report/CancelAck.jrxml', 
            $output, 
            array($ext),
            array(),
            array('data_file' => $data_file, 'driver' => $driver, 'xml_xpath' => $xml_xpath),                   
            false,
            false
        )->execute();
        
        header('Content-Description: File Transfer');
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename='.time().'_CancelAck.'.$ext);
        header('Content-Transfer-Encoding: binary');
        header('Expires: 0');
        header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
        header('Content-Length: ' . filesize($output.'.'.$ext));
        flush();
        readfile($output.'.'.$ext);
        unlink($output.'.'.$ext);

    }

Note:

To use the example above you must copy the sample files located at:

\vendor\lavela\phpjasper\src\JasperStarter\examples\CancelAck.jrxml and \vendor\lavela\phpjasper\src\JasperStarter\examples\CancelAck.xml to folder: \public\report

###MySQL

We ship the MySQL connector (v5.1.34) in the /src/JasperStarter/jdbc/ directory.

###PostgreSQL

We ship the PostgreSQL (v9.4-1203) in the /src/JasperStarter/jdbc/ directory.

##Performance

Depends on the complexity, amount of data and the resources of your machine (let me know your use case).

I have a report that generates a Invoice with a DB connection, images and multiple pages and it takes about 3/4 seconds to process. I suggest that you use a worker to generate the reports in the background.

##Thanks

Thanks to Cenote GmbH for the JasperStarter tool.

##Questions?

Drop me a line on Skype [leandro.bittencourt16] or E-Mail [[email protected]]

Drop me a line on Skype [danielrodrigueslima] or E-Mail [[email protected]]

Drop me a line on E-Mail [[email protected]]

##License

MIT

phpjasper's People

Contributors

lavela avatar leandrocopam avatar geekcom avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.