1,024 Topics

Member Avatar for
Member Avatar for karthikprs

I am trying to extract the number in the string "(c) 2010 Elsevier Ltd" from a PDF document . I found that the textsearch method of PDFtron package would help me find the string as stated in the example code: [CODE]import pdftron.Common.PDFNetException; import pdftron.PDF.*; import pdftron.SDF.SDFDoc; // This sample illustrates …

Member Avatar for karthikprs
0
3K
Member Avatar for himvj1

Hi I am working on Pdf annotation using Itextsharp. I am able to get hyperlink url from pdf using the below code. How to get the annotation (Highlited) text from pdf. [CODE] string[] PdfFiles = Directory.GetFiles("C:\\ABK"); foreach (string fi in PdfFiles) { try { PdfReader reader = new PdfReader(fi); // …

0
59
Member Avatar for imonbayazid

In my website i want to download the current page's content as pdf whenever i press download button on that page.what will be the php code?? please help me..

Member Avatar for chrishea
0
83
Member Avatar for sachintha81

I am trying to extract all the images in a PDF and then convert them into DIB format using an Acrobat plugin. First part is easy. I extract all the contents in the PDF, then iterate through them and whenever I find a PDEImage, I put them in an array. …

Member Avatar for sachintha81
0
603
Member Avatar for chrislucas11

I have a requirement to allow a user to upload a PDF document to my webserver then the webserver should send the PDF documnet to a printer driver which has been installed on the server using the print to file function to generate a new file called (original name).prn and …

Member Avatar for SummiRS
0
105
Member Avatar for Bubbleboy

I have a set of PDF files on our website that the user needs to log in in order to view. The only problem is once they log in and get the URL for them, they can email it to their friends or anyone and they can be viewed by …

Member Avatar for lps
0
104
Member Avatar for asifjavaid

hi guys , hope you are all fine. i want to created MS word doc file to pdf file converter in MS Visual Studio 2005.. can any one help me what will be the procedure to develop such a thing? Waiting for good reply... Asif Javaid Chughtai.

Member Avatar for SummiRS
-1
416
Member Avatar for andsonlhs

Can anyone help me why unable to upload video and pdf file to the folder? <?php $DBConnect = @mysqli_connect("localhost", "root", "") Or die("<p>Unable to connect to the database server.</p>" . "<p>Error code " . mysqli_connect_errno() . ": " . mysqli_connect_error()) . "</p>"; $DBName = "educationtime"; if (!@mysqli_select_db($DBConnect, $DBName)) { $SQLstring …

Member Avatar for pritaeas
-1
238
Member Avatar for martin11ph

I am trying out the sample code on: [url]http://www.php.net/manual/en/pdf.examples-basic.php[/url] I get an error that Class PDFLib is not found. Where can I get this class? There seems to be a lot of resources on the web and they just confuse me.

Member Avatar for pritaeas
0
151
Member Avatar for CaffeineCoder

Hello all; I'm having a heck of a time trying to resolve an issue (and thus far Google has not yielded the answer). I have a web application that invokes a 3rd party application to display a PDF page. Everything runs smoothly on Windows 2003, but now that I am …

Member Avatar for CaffeineCoder
0
226
Member Avatar for vishalrane

All the webpage data will be converted into PDF file, You can also add details such as ur name etc by using Chunk chunk1 = new Chunk("By Vishal RAne, [email]vishalrane50@example.com[/email] \n",FontFactory.GetFont("Verdana", 8)); The pdf will be saved on desktop.... u can change location by using PdfWriter.GetInstance(Doc, new FileStream(Environment.GetFolderPath (Environment.SpecialFolder.Desktop)+ "\\VishalRane.pdf", …

Member Avatar for SummiRS
1
334
Member Avatar for riahc3

Hey I want to use something like Dreamweaver to design a HTML page. (Excluding all the links to pictures and such) how do I get Java to get all that and convert it to a well designed PDF document like I was seeing in Dreamweaver? Thanks

Member Avatar for peter_budo
0
316
Member Avatar for riahc3

Hey I have this following code: [code] try { // Connection props Properties props = new Properties(); props.setProperty("mail.smtp.host", host); props.setProperty("mail.smtp.starttls.enable", "true"); props.setProperty("mail.smtp.port", "25"); props.setProperty("mail.smtp.user", usuario); props.setProperty("mail.smtp.auth", "true"); // Prepare the session Session session = Session.getDefaultInstance(props); // Constuct the message MimeMessage message = new MimeMessage(session); /*Test*/ message.setHeader("Content-Type", "multipart/mixed"); message.setFrom(new InternetAddress(CorreoOrigen)); message.addRecipient(Message.RecipientType.TO,new …

Member Avatar for riahc3
0
206
Member Avatar for mijorog

I can create the CFCHART just fine and also save it to a folder on my server just fine. But when I try to merge it into pdf I get An error occurred during the MERGE operation in the cfpdf tag. Error: Invalid Document C:/inetpub/wwwroot/Clients/visionmanagementservices.net/tempgraphs4/charts.jpg specified for source or directory. …

Member Avatar for mijorog
0
285
Member Avatar for arathy nair

Hi All, I have PDFs that are to be watermarked. I need to know whether there exists the below options 1 Option is : Whether we can rewrite the same file with the logo instead of taking the existing pdf and writing this pdf into watermarked file option2 : Whether …

Member Avatar for peter_budo
0
368
Member Avatar for INF-P

What code do i add in order to let logged in users to download pdf files or any attachments i would like them to download? <?php if (isset($_POST['login'])) { $query = "SELECT * FROM users WHERE uuser='".$_POST['user']."' AND upass='".$_POST['pass']."'"; $result = mysql_query($query) or die(mysql_error()."<br><b>error</b>: failed to execute query <i>$query</i>"); if …

Member Avatar for INF-P
0
205
Member Avatar for uurcnyldrm

Hi everyone, Is there a way to read the text in a pdf file like reading notepad? And after that, I should be able to use it, for example, in a text area or show it to my users without using another program such as adobe reader. That's really important …

Member Avatar for uurcnyldrm
0
246
Member Avatar for tamildinesh

i am used wkhtmltopdf for convert the web page to pdf. but i have a following error [CODE] **WKPDF couldn't determine CPU ("").**[/CODE] how to solve it, does any one know plz tel me how to solve it. Thank you

Member Avatar for diafol
0
107
Member Avatar for mombasageek
Member Avatar for Philippe.Lahaie
0
37
Member Avatar for mombasageek
Member Avatar for mombasageek
0
56
Member Avatar for bhallarahul

Hello everyone i want to convert pdf file in docx file, which contain table, text as well as image can you tell me any any class or method which help to me to extract in the same way as it pdf file have i m using pdfbox api

Member Avatar for peter_budo
0
81
Member Avatar for arathy nair

Hi Friends, I am having a pdf which has to be watermarked.But the code below I use is writing contents of my PDF into another PDf which is being watermarked.Please suggest any ideas which helps me watermark the same pdf without creating a new one. Please find the code below. …

Member Avatar for peter_budo
0
167
Member Avatar for bhallarahul

Is there is any way or method to get the content of pdf row by row/line by line which help to convert pdf to word using itext api??????????

Member Avatar for peter_budo
0
928
Member Avatar for erik216

I have just download the class "MC_TABLE" I put mc_table.php and ex.php into folder there have fpdf.php I can run script to generate pdf file in this folder But I cannot use MC_TABLE class it says Call to undefined method PDF_MC_Table::MultiCell() I don't know what problem?

Member Avatar for erik216
0
296
Member Avatar for newbie14

Dear All, I have a problem where I can query more then 4000 lines the problem I already drill down is here. The problem is during the generation of the lines some how it takes some time then I get a not found page error. What can I do to …

Member Avatar for broj1
0
4K
Member Avatar for nobody2ph

Hello! Have you guys ever encountered something called Flash Paper? I was browsing an old chemistry book CD and it used SWF Files for each page; I've been trying to figure out a way to put it on my tablet (which only reads PDF Files) for about a month now …

0
68
Member Avatar for roottybrian

Hi guys, Have been trying this out for sometime with no success. I want to be able to use pdf printing application like pdfprinter to print my vb reports to and then save the reports to a particular location on my computer. Anyone with an idea how i'd achieve that? …

Member Avatar for Reverend Jim
0
347
Member Avatar for bhallarahul

hello everyone i was writing a program which is used to convert pdf to text.it is work fine when i am convertin a simple paragraph or table into text but it gives error while convert another file which is send by other and contains 1000 's of pages can you …

Member Avatar for bhallarahul
0
542
Member Avatar for bhagawatshinde
Member Avatar for peter_budo
0
274
Member Avatar for sudarshansirsat

Hi, We have Unicode database and I have generated the i-reports and called them from java in my application but it gets opened my regional language fonts i.e (MARATHI) fonts are not shown properly by adobe reader in PDF format can anyone help me how to get Unicode support for …

0
53

The End.