WHen I insert a Image into a existing PDF whis CFPDF or directely whis iText, the size of my image is increased by 1.5.
How to control the image size ?
my code are inspired from :
http://stackoverflow.com/questions/697122/adding-a-dynamic-image-to-a-pdf-using-coldfusion-and-itext
...
How do I extract an image from a pdf file, using c#? Thanks!
...
The continuing saga of PDF form manipulation: I now have a form that allows the user to insert new rows in a table, with associated fields in each row. I cannot find a library (free, commercial, I do not care at the moment) that will extract the contents of all fields, inclding the dynamically added ones.
Has anyone any experience wit...
I'm trying to print pages pragmatically with a PHP script, to an office printer.
Here's what I've got so far:
I have a printer installed on the server, and I can send jobs to it with PHP via the command line's print command. I can also write plain text files with my PHP script, and then add them to the print cue. So printing PHP genera...
How do I retrieve the file path of a pdf file that has been opened by adobe reader?
...
Hi,
I use sphinx python documentation generator. Creating pdf documents are very easy and simple but.... i have one problem.
All generated pdf documents have english words like "chapter", "release", "part".
Is it possible change it? How set another words or remove it?
...
Hi,
I'm working on a project which takes some images from user and then creates a PDF file which contains all of these images.
Is there any way or any tool to do this in Python? E.g. to create a PDF file (or eps, ps) from image1 + image 2 + image 3 -> PDF file?
...
Hi everyone, I need to know if there is any way to detect in a client PC (Windows) there any PDF reader (Adobe Reader, Foxit Reader, ...), using VB6 and. NET (C #).
I can not do by reading the Windows registry, because the user may not have permissions to read it.
Thank you.
...
we are generating a pdf file on the fly, and displaying it using asp.net
Response.ContentType = "application/pdf";
Response.BinaryWrite(pdfMemoryStream);
but if pdf is not installed, then we get an ugly error message. How can we change what we're doing so that when the user does not have pdf installed, we instead show a friendly mess...
I'm trying to draw the pages of a PDF using the code below. Some PDF's render correctly, but others simply show as a completely black image, or have partial portions rendered and the rest black. In comparing what's going on, the ones that show OK seem to have always have "regular" text in them along with some graphics (diagrams, etc.),...
The question is descriptive, but further details:
what are the steps in developping a light software that can show all the pdf files on my hard drive and tell me which one are corrupted, can fix pdf (if this is possible), and ask me if i want to put a pdf in a particular folder?
my challenge is to use elegant code:) I need a starter to...
Hi, am trying to insert images into a PDF using TCPDF, but am just getting blank pages. Here is my code:
if ((($_FILES["file"]["type"][0] == "image/gif")
|| ($_FILES["file"]["type"][0] == "image/jpeg")
|| ($_FILES["file"]["type"][0] == "image/pjpeg"))
&& ($_FILES["file"]["size"][0] < 1000001))
{
if ($_FILES["file"]["error"][0] > 0)
...
I've got some information I would like to output to a printer, but also as a PDF. I would be great if the PDF and the printing output would look the same. As what I understand, PDF reading and creating is not supported in C#.
I can create PDF's easily with external librarys like iTextSharp, but I don't know how to print them without usi...
I want to automatically generate booking confirmation PDF files in Python. Most of the content will be static (i.e. logos, booking terms, phone numbers), with a few dynamic bits (dates, costs, etc).
From the user side, the simplest way to do this would be to start with a PDF file with the static content, and then using python to just a...
hi friend,
when i am showing some text it is going in 1 line only thats why
whole text is not visible in pdf.
if txt are more it should take automatically next line.
please see code below
<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
layout="horizontal" >
<mx:Script>
...
I have tried in all ways to get wkhtmltopdf installed on our web server but unfortunately it is not getting installed. I cannot access user/bin folder as stated in a tutorial on installation.
On the server in public_html folder there is a sub folder _vti_bin, I copied the file wkhtmltopdf-i386 from wkhtmltopdf-0.9.1-static-i386, but I a...
Does anyone know how to do this?
...
I am trying to attach an image and a pdf to an email using the MessageUI framework. I followed the MailComposer example in the Apple documentation.
On the iPhone it seems to work perfectly, the image and the pdf both show up in the body of the send mail window as expected.
However, when I receive the email on my MacBook there are two ...
I am having trouble saving a dotplot to pdf when this command is done inside a function.
It works fine when called normally:
df <- data.frame(a = runif(10), b = runif(10), c = runif(10), x = 1:10)
pdf("test.pdf")
dotplot(a + b + c ~ x, data = df, type = "l", auto.key=TRUE)
dev.off()
But if this code is inside a function, it wil...
Hi anyone have idea of how to play the video in PDF in an iPhone Application. I have a PDF reader application done which i have used UIWebview to show the PDF, but how can i interact with the Video/Audio embedded in it.
Any guess welcome.
Thanks
...