Parse PDF file, and read specific sections with PHP [closed] - php

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking for a library through which I can read my pdf file (which contain both images & text), and read the speicific information (customer information).
I have created the pdf file though html2pdf class. Now since I have not keep track of all the changes, I need to read the pdf file for some information.
My pdf structure is
Header
customer information
Order details.
footer
I want to read the Order details which are in a table with products & their prices.
Any help will be really appreciated.
Thanks in advance.
:)

You can start from reading php pdf functions:
http://www.php.net/manual/en/ref.pdf.php#53628
Or use some external library available out there:
http://www.pdfparser.org

Related

PHP - Custom QRCodes? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I saw some online qr code generators such as https://dashboard.unitag.io/ and I was wondering how they do it.
Is it possible to do that in PHP? If so, how would I manage to do that? (I know there are some APIs to create colored QR codes and insert images into it, but I never found any that could change the 'shape' of the QR code...)
I would look into a library called PHP QR Code. It's open source and is pretty simple to use,
QRcode::png('code data text', 'filename.png'); // creates file
QRcode::png('some othertext 1234'); // creates code image and outputs it directly into browser
If you're looking for a library with a little more functionality, check out Advanced Custom QR Code Generator. It costs $35 but gives you the ability to work with shapes, colors, and even embed logos.

import PDF file and insert some values to particular place in PHP [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
i have design a template blank PDF file and i get some data witch is generated by using PHP mysql retrieved data i need to merge them into one PDF file and to take print.
Witch PDF plugin is good for generate PDF ?.
Use FPDF class in your project.
and tcpdf

How to export an html table as a PDF or image? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am working on creating a website which will allow users to update a table using Javascript.
What I am looking for is a way to allow the user to export the table as an image (jpg, png etc.) or a PDF once it has been modified.
If there is a similar thread or topic please let me know, I don't really know where to start here. If you can recommend background reading that would be great too.
This is not something that can really be done client side (without installing software on the clients, of course). You will need to generate this PDF server-side.
How you do that depends on the language and platform you are using.
There are a couple open source PDF librarys you can use;
SharPDF, PDFClown, iTextSharp just to name a few...

How to convert PDF to SWF using PHP [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Is there a way to convert PDF to SWF using PHP.
Basically I need to show PDF documents inline the browser using FlexPaper and something of that kind, but NOT Adobe reader plugin.
I need to show PDF docs so that users won't be able to download them.
Regards,
Levon
Check out pdf2swf from http://www.swftools.org/. It's not a PHP module but you can call it with the exec-Function.

Looking for a php library to generate vector graphics as pdf or svg files [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Basically i want a library for PHP that i can use to generate vector based graphic files like svg or pdf. it need to be able to output path and not pixel based results.
for example i want it to use like
generate_circle($radius)
etc
PHP bindings for cairo
It's not that hard to generate svg from php, here are some examples.
If you really want a library, there are probably many different options, SVGGraph and the ones pointed out here for example.
Google will help you find others I'm sure :)

Categories