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.
Related
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 4 years ago.
Improve this question
I'm looking for a clean way to generate a Word document from my PHP project. I want to make a Web application with Laravel and I'm trying to print out (or better said: generate) a Word document with the data in my database.
Is there a Laravel extension or a supportive way how to execute this in a clean way?
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
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
Is there a simple way to embed an Excel file into a web page?
For example, say I want to import a table of 100 values into an HTML or PHP document.
take a look at this:
http://devzone.zend.com/27/reading-and-writing-spreadsheets-with-php/
if you want only embed it:
upload the file to google docs
file> publish
select embed
copy the link
paste to your webpage
Example: http://jsfiddle.net/fupqx/1/
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 need to draw pdf using fpdf. My pdf content includes html tags. For example if there is image I need to export image in pdf.
Is there any plugin for exporting pdf with html tag accepting functionality.
I tried this: Calling FPDF with tablephp plugin. Works well.
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 :)