A PHP class which allows developers to generate PDF files with pure PHP instead of the PDFlib library.
0
votes
1answer
19 views
fpdf newbie help please [closed]
<?php
$factuurnr = $_GET['factuurnr'];
require('fpdf/fpdf.php');
//Connect to your database
include("db_connect.php");
//Create new pdf file
$pdf=new FPDF();
//Open file
$pdf->Open();
...
0
votes
2answers
29 views
To show php variable in pdf file generated using fpdf
I want this php variable to be showed in pdf file . But it gives error :- Pdf file does not begin with '%Pdf-'
A.php it contains my form . By using post i am sending values to other printpdf.php
...
-1
votes
0answers
9 views
how to use embed code in fpdf
here is my code
$codeembed = (views_embed_view('only_chart', $page = 'default');
$pdf->Cell(275,20,$codeembed,1,0,'L',0);
i using normal php string others strings showing ...
4
votes
1answer
43 views
Is it possible to Generate a Pdf Design by using Fpdf
I want to Generate a Pdf in Php Using FDPF. can we draw a table in fpdf. I want to Design a Table In the Image given Using FPDF.Is it Possible. I am new to fpdf Please help me. I want Above table ...
0
votes
0answers
34 views
Installing FPDF on Windows Azure
I've been trying to install FPDF (fpdf.org) on Windows Azure. I have already succeeded with a local server (XAMPP) and everything works.
Now, when I try to install on Windows Azure using WebMatrix, ...
0
votes
0answers
28 views
FPDF error: Can't open image file: http://chart.apis.google.com/char
I am using googlechartphplib to generate my charts. They are generated as images. Heres an example of one image - ...
0
votes
0answers
31 views
How to keep in same line one cell and two multicell in fpdf
This is my code in FPDF
$this->Image('../images/'.$com_logo.'',10,6,80);
$this->MultiCell(70,5,$com_info,1,1,'L',false);
$this->MultiCell(40,5,"Invoice\nQID\nadd",1,0,'L');
I want to keep ...
2
votes
0answers
56 views
How to create pdf like a example using fpdf
This is my PDF code below:
$this->SetFillColor(0);
$this->SetTextColor(255,255,255);
$this->Cell(90,10,$airline_name,'LRBT',0,'L',true);
$this->Cell('10',10,'','',0,'L',false);
...
0
votes
0answers
51 views
Getting data from the DB and converting it to PDF
I've a page which I want to generate a pdf file whenever someone adds data to the database. I have everything done but the pdf script.
I Googled it, and I found a library called "FPDF". Downloaded ...
0
votes
1answer
20 views
Sending dynamically stamped pdf email attachments from postmarkapp
I have a form template, i used fpdi and tcpdf to create a download link on the web application.
http://www.setasign.de/products/pdf-php-solutions/fpdi/demos/tcpdf-demo/
What I now want is to be able ...
0
votes
0answers
37 views
populate pdf fields using php
I am trying to find a sample script that populates a pdf with data using php and none of them work. Would someone have a demo of a working copy? There is no need to post the code of the one scripts ...
1
vote
1answer
52 views
how to insert new line into a cell in fpdf
I have tried using Ln(), MultiCell() or Write(), but I always get weird problems. Like after the 1st row and 6th column, the loops breaks, and the entire layout falls back.
foreach($data as $row)
...
0
votes
2answers
20 views
How can you get array data in the footer of fpdf
I'm trying to get the first and last name from my array into the footer but I'm getting undefined variable error. This would work in the body of the PDF but I cant get them to work in the footer.
$FN ...
0
votes
0answers
18 views
PHP - FPDF Innecesary auto break page
I have an issue with FPDF for PHP.
The thing is that I'm generating a PDF with a header and a footer. And when the page content needs to add a page ($this->SetAutoPageBreak(true, 45);) each new line ...
0
votes
0answers
66 views
Wrapping data in a Pdf cell using fpdf for PHP
I am trying to generate pdf files using fpdf library. I am using mysql_table and Word_wrap scripts directly from the fpdf script page. But when i m trying to integrate them its not helping here is my ...
0
votes
0answers
15 views
I have a FPDF and I want to use money_format
I created have the following and if I echo $CaRate I get the expected value but the pdf isn't generating when I put it in the cell.
setlocale(LC_MONETARY, 'en_US');
$CaRate = money_format('%(#5n', ...
0
votes
1answer
61 views
Text on header not appear in first page (PDF) using FPDF
I have a PHP that creates a PDF from DB data using FPDF library.
I use a header for show a title and logo. The logo shows correct in all pages, but the text not appear in the first page, only on ...
-1
votes
0answers
39 views
Change PDF Version 1.5 or higher to 1.4 [closed]
Currently i want to change my PDF which has 1.5 Version into 1.4 but i don't find any solution can any one help me to solve this problem with example in PHP.
Thanks
0
votes
1answer
34 views
create dynamic FPDF with array
I have an array that I want to loop through to create the output in FPDF and it doesn't run. If I change the value to the row number it works. what am I doing wrong and or what anm I missing. Here is ...
0
votes
2answers
40 views
FPDF skips first row
I wrote a simple FPDF code but I ran into a problem.
For some reason, the for loop skips the first row ( cell 1, cell 2, cell 3 ).
Code:
<?php
require('temp/fpdf.php');
class PDF extends FPDF
{
...
0
votes
0answers
30 views
How to allign text with an image?
I'm using fpdf to create pdf files. Now I have added some images to the pdf an the alligment is now messed up.
How to make the text align to center of the image again?
![$pdf->SetX(15);
// ...
0
votes
1answer
52 views
fpdf line break not working
I have a knockout observable which contains a text that has line breaks in it.
Like this:
var str += item.first_name + " " + item.last_name + "," + item.occupation + "\n\n";
str += "RE :" + ...
-2
votes
3answers
84 views
Generating PDF in php [duplicate]
I am using the following code to generate pdf in php but when I open file it shows corrupted or damaged file error.
$FileName = date("d-m-y") . '.pdf';
$Content = "";
# Titlte of the CSV
...
0
votes
1answer
17 views
Parentheses appearing as ASCII codes in FPDF?
I'm using FPDF to create documents with certain text elements (as Cells) populated from a MySQL query. One such field is $company.
Whenever the company name contains parentheses (ie 'Acme Fixings ...
0
votes
1answer
36 views
WriteHTML doesnt render FPDF addon
I have the latest version of FPDF and I am trying to extend it to use FPDF. Everything works fine until I try to actually use WriteHTML class.
/**
* FPDF functionality to load page as a PDF
**/
...
4
votes
1answer
88 views
FPDF won't center text properly
I am trying to use FPDF to render the cover content of a bachelor's/master thesis.
I need to be able to display czech alphabet including characters with punctuation (such as ř, č, ž, ý, ě). I have ...
0
votes
1answer
31 views
FPDI FPDF - cell formatting
I want to put the next cell unter the upper spacer. The next cell should be under the upper spacer and not added to the right..but I can´t find any solution for this...maybe tables are an option if ...
0
votes
0answers
30 views
FPDF MultiCell() text wrap error
I'm using FPDF to generate PDF file. I'm saving a particular variable from a <textarea> then outputting it through MultiCell().
The <textarea> input looks like this:
But the PDF file ...
0
votes
0answers
20 views
Adding a checkmark to fpdf file
I am retrieving data from the database and I am displaying it using fpdf. I have a data with a value zero or one. If it is one, I want to display a checkmark. Is there a way to output a checkmark ?
...
0
votes
1answer
56 views
FPDF $pdf->Output($directory . $timestamp . '.pdf', 'F'); local or remote? [closed]
Running FPDF with WAMP. Will this output attempt to save the pdf file on the host, or will it try to save on the users workstation?
$pdf->Output($directory . $timestamp . '.pdf', 'F');
1
vote
1answer
64 views
generate pdf with more than 50000 records
Hi I am trying to generate a transaction report of more than 500000 records, I tried mPDF, FPDF, TCPDF.
All of above creates error
<i>Fatal error: Allowed memory size of 134217728 bytes ...
0
votes
1answer
50 views
How to pre-fill a PDF online?
I start with dynamic data, and an empty PDF file to be filled.
How could I fill up the pdf using the dynamic data ?
EDIT :
I found a way to fill up the pdf with FPDF.org and a plugin.
First, add ...
2
votes
1answer
103 views
Printing to PDF in PHP using FPDF
I am trying to make a function on a website whereby any article can be made into a PDF file for download and/or printing. I am using FPDF library but I'm struggling to understand the best way for my ...
0
votes
1answer
71 views
Date Range issue using PHP, FPDF
I'm having an issue with FPDF displaying a date range that I want displayed. It will pull every date from the beginning of the database every time. It doesn't matter what range I put it, it pulls from ...
0
votes
1answer
45 views
Email pdf attachment + attachment from server
I would like to send 2 attachments with one email. The first is from an fpdf class. This works perfectly. Now the second attachment needs to come from a folder on my server. But I can't seem to get it ...
1
vote
1answer
48 views
FPDF Library error [duplicate]
I am using the FPDF Library and when I try to make a PDF I'm getting the following error:
Warning: Cannot modify header information - headers already sent by
(output started at-----) FPDF error: ...
0
votes
0answers
25 views
fpdf pass canvas element as an img
is there a way to pass the canvas element as an image into a server-side php script & print it out as a pdf?
below just asks to save the image.
require('fpdf17/fpdf.php');
# we are a PNG image
...
1
vote
1answer
142 views
FPDF error: Some data has already been output
Whenever I try to create a PDF using FPDF, I get the following error:
FPDF error: Some data has already been output, can't send PDF file (output started at path:15).
When there is nothing but ...
1
vote
1answer
41 views
FPDF watermark doesn't appear
I have this sample code:
<?php
session_start();
define('FPDF_FONTPATH', 'font/');
require('fpdf/rotation.php');
class PDF extends PDF_Rotate
{
function Header()
{
...
0
votes
0answers
26 views
FPDF overlapping issue
I have this code:
foreach($data as $k => $row)
{
foreach($row as $l => $col) #4 pieces
{
$current_y = $this->Fpdf->GetY();
$current_x = $this->Fpdf->GetX();
...
0
votes
0answers
45 views
FPDF cell values dis-aligned or misplaced. Cell values also are forcefully placed on a next page
I have this code:
foreach($data as $k => $row)
{
$height = 6;
$extraLines = 0;
foreach($row as $l => $col)
{
...
0
votes
0answers
67 views
can't send data to fpdf via html form
I can't send data from form to php script which generate pdf via fpdf.
Here's a html code:
<Form action="formularz.php" id="all0" name="all0" method="POST">
<SELECT id="rodzaj_select0" ...
0
votes
0answers
32 views
FPDF: Format one element from an array
I am using the Labels code for FPDF. I am getting the contents of label from an array generated by a sql call to a database. It works fine for me. I would like to format one of the lines ...
0
votes
1answer
156 views
Having an Issue Displaying from Database Using Select, PHP, FPDF
I'm having an issue with displaying information from a database using a select statement in a FPDF file. I've created two files. The first file, the user inputs the DonorID and hits create invoice. ...
0
votes
1answer
116 views
FPDF email attachment and outlook
I am trying to work with FPDF and attach the resulting file to an email. I have seen this post Email PDF Attachment with PHP Using FPDF and the answer given works when sending an email to my self and ...
-1
votes
1answer
65 views
having trouble to align mysql data in the in pdf
i want to align my data properly in pdf file frm mysql database. but the result i get is not wat i want, some last column just come below the other while i wanted to align with the other column.
i ...
0
votes
0answers
201 views
FPDF MySQL table
I have generated a table from MySQL database with FPDF but now i want to include a numbered column as the first column, data on this column is incremental numbers with maximum as total number of ...
0
votes
0answers
61 views
How to convert CGridView into PDF
I tried the extension pdf-grid with FPDF, but cannot support for CSqlDataProvider completely, if i hide the header of the Grid then its works. But i wants to use with header. Is there any idea to get ...
0
votes
2answers
87 views
Should one library call another or is it a task of controller in Codeigniter and in MVC in general
I have to make some design decision in my application using Codeigniter.
I have a method in controller that calls a library for creating PDF.
Also I have some class that takes a number as an ...
1
vote
0answers
77 views
FPDF export to excel, error opening in Microsoft Excel
I have a very long string (about 700 characters) that i need to export to a single cell.
$pdf->Cell(150,$h,$model->data["value"]);
When opening it using Microsoft excel it gives me a "File ...



