php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #58424 Table creation support
Submitted: 2008-11-22 15:01 UTC Modified: 2017-10-24 23:25 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:1 (100.0%)
From: pcdinh at gmail dot com Assigned:
Status: Suspended Package: haru (PECL)
PHP Version: 5_2 CVS-2008-11-22 (dev) OS: Windows XP
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: pcdinh at gmail dot com
New email:
PHP Version: OS:

 

 [2008-11-22 15:01 UTC] pcdinh at gmail dot com
Description:
------------
Haru extension does not support organize data in table which is very important to create reports. This very much demanding feature is well supported in other PDF library such as iText in Java

http://itextdocs.lowagie.com/tutorial/objects/tables/index.php

Reproduce code:
---------------
No code to produce

Expected result:
----------------
It is very good to see something like those below APIs:

$table = new HaruTable(3);
$cell = new HaruTableCell(new HaruParagraph("header with colspan 3"));
$cell->setColspan(3);
$table->addCell(cell);
$table->addCell("1.1");
$table->addCell("2.1");
$table->addCell("3.1");
$table->addCell("1.2");
$table->addCell("2.2");
$table->addCell("3.2");
$page->add($table);


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-11-22 15:08 UTC] tony at daylessday dot org
You're welcome to create a patch, I'd apply it gladly.
 [2017-10-24 23:25 UTC] kalle@php.net
-Status: Open +Status: Suspended
 [2017-10-24 23:25 UTC] kalle@php.net
The haru package have not had a release since 2012 and no development since, its safe to say that this package is no longer maintained, if development picks back up then this report should be re-opened
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat May 11 00:01:31 2024 UTC