Questions tagged [pdfclown]

PDF Clown is a free/libre open source implementation of the Portable Document Format (PDF) specification published by Adobe® Systems Inc., written as a class library in multiple languages (Java™ 6 and C#/.NET 4.0).

PDF Clown is a free/libre open source implementation of the Portable Document Format (PDF) specification published by Adobe® Systems Inc., written as a class library in multiple languages (Java™ 6 and C#/.NET 4.0).

Java version represents the reference implementation of PDF Clown.

C# version was developed upon the Mono flavour of the .NET framework, which allows it to run over multiple platforms (BSD and UNIX variants, including OS X and Solaris, and Microsoft® Windows®). As such code adheres to the related ECMA spec, it may also be run upon other .NET implementations, including MS'.

It's hosted here at SourceForge.

95 questions
0
votes
1 answer

PDFClown Find and replace page

Using pdfclown, I was wondering the best practice to find a page in a Existing PDF doc, and replace with a page from another PDF doc. I have the bookmark and pagelabel of both pages.
Ryan
  • 29
  • 8
0
votes
0 answers

Get rectangles of a document with pdfclown

I´m using PDFClown to analyze PDF documents. Some documents have pages with rectangles like : Does pdfclown provide a function to work with these rectangles? For example to get there coordinates, length and width?
Jannik
  • 90
  • 10
0
votes
1 answer

ClassNotFoundException org.odfclown.files.File

I´m using Maven and Spring MVC to create a webapp. When building with Maven the following error occurs: java.lang.ClassNotFoundException: org.pdfclown.files.File at…
Jannik
  • 90
  • 10
0
votes
1 answer

PDFClown: Creating a TextMarkup leads to an inaccurate Box of the TextMarkup

Im working with PDFClown to analyze and work with PDFDocuments. My aim is to highlight all numbers within a table. For all numbers which belong together (For example: All numbers in one column of a table) I will create one TextMarkup with a List of…
Jannik
  • 90
  • 10
0
votes
1 answer

PDF Clown Highlight multiple search word is failing for PDF contains images, color text, Complex Diagrams

I´m using PDFClown to highlight the multiple search word in a PDF Document. In many pdf documents which contains colorful images , Complex diagrams, colored text PDFClown throws exception there and cannot highlight the matching words. The code…
Garima
  • 95
  • 1
  • 9
0
votes
1 answer

PDFClown Different font-size in one line

I´m using PDFClown to analyze a PDF Document. In many documents it seems that some characters in PDFClown have different heights even if they obviously have the same height. Is there a workaround? This is the Code: while(_level.moveNext()) { …
Jannik
  • 90
  • 10
0
votes
0 answers

Want to add content of pdf page to another pdf

I have two pdfs both with limited data i.e. Single page. I want to merge the data of one pdf into another pdf but on the single page (It should not create the other page to append the external data). Is there any way to do this using pdfbox or…
ShreyJo10
  • 27
  • 5
0
votes
1 answer

PDFClown .NET Open a Windows Explorer instead of specifying path

Currently I have this test code File file = new File(); Document document = file.Document; Page page = new Page(document); document.Pages.Add(page); PrimitiveComposer composer = new PrimitiveComposer(page); …
Jon0149
  • 13
  • 1
  • 1
  • 5
0
votes
1 answer

How to remove Objects from PDF File using PDFClown

I have a pdf which contains a lot of invisible paths. Since the amount of path produces problems later on, I would like to remove the ones that have white colors. So far I am trying to do this with a ContentScanner: public class…
Thomas Letsch
  • 930
  • 1
  • 8
  • 15
0
votes
0 answers

Text to PDF using PDFClown

Please tell me how to convert text to PDF using PDF Clown library. I am using first time pdflown library. Is there any way to bind my string to PDF using this library.
John Wick
  • 169
  • 1
  • 13
0
votes
1 answer

List embedded fonts using PDFClown (.net version)

Is there a way to get the list of embedded fonts in a PDF file using the PDFClown library? The aim is to check whether it is a scanned PDF of not, assuming it is a scanned document if it doesn't have embedded fonts. Thanks in advance
0
votes
1 answer

How to determine if text fits in frame?

I have a Frame and use a BlockComposer to write multiple lines of text into the Frame. The text of the lines is determined by user input so I don't know in advance how many characters they will contain. How can I know if all of the lines will fit…
user3346601
  • 1,019
  • 1
  • 11
  • 18
0
votes
0 answers

PDFClown - Compressing PDF

I am trying to compress PDF files using PDFClown 0.1.2, but i am facing issue like when i try to open PDF it says "An Error exists on this page" also tried the approach mentioned in link Stack Below is the my code org.pdfclown.files.File file = new…
RayK
  • 41
  • 2
  • 10
0
votes
1 answer

Build text callout with PDF Clown

the adobe acrobat reader have markup tool called "text callout". It's possible to build with PDF Clown a object of this type?
godani
  • 1
  • 2
0
votes
1 answer

executable jar from eclipse unable to use images within packages... sometimes

I have wrote a swing application and it works fine in eclipse but when I export it as a runnable jar parts of the application fail, when dealing with images, this line for example; logo =…
glend
  • 1,592
  • 1
  • 17
  • 36