Questions tagged [icepdf]

Questions related to ICEpdf, an open source Java PDF engine for viewing, printing, and manipulating PDF documents. The ICEpdf API is 100% Java-based, lightweight, fast, efficient, and very easy to use.

ICEpdf is an open source Java PDF engine for viewing, printing, and manipulating PDF documents. The ICEpdf API is 100% Java-based, lightweight, fast, efficient, and very easy to use.

More details at http://www.icesoft.org/projects/ICEpdf/overview.jsf

63 questions
13
votes
3 answers

Fonts displaying incorrectly under Java 6

I'm using IcePDF library to display PDFs in the web application. Under Java 6 (jdk1.6.0_37 32bits), fonts are displayed incorrectly (are substituted with some default font) while under Java 7 it looks ok. I need to use Java 6 in my app, have you…
Odarpi
  • 131
  • 4
10
votes
1 answer

SwingController get page coordinate

Using IcePdf (ver 1.8) i integrate a SwingController into my JPanel to use it in my application. Since the page displayed into the SwingController is in a specific position into the controller. How can i obtain the coordinate of the page (top left…
Razlo3p
  • 455
  • 2
  • 7
  • 28
6
votes
2 answers

icepdf-core maven install in Eclipse not working

I need to use PDFviewer in Vaadin which has a dependency of IcePdf... so I was trying to install it but it gives me DependencyResolutionException. I tried different versions like 4.1.1, 4.2.2 and others as well but nothing works... Iam not very…
user1170364
  • 349
  • 2
  • 5
  • 11
3
votes
1 answer

PDF annotations in Java

Actually, still now I have not got the exact way to add different types of annotation/lines/boxes/highlights using the mouse directly on PDF. I have tried different API (pdfbox, icepdf, iText, aspose) and successfully able to add text, text…
2
votes
1 answer

WARNING: PDF write support was not found on the class path

Please friends I am encountering this difficulty viewing a pdf file, it is given the error below org.icepdf.core.pobjects.Document WARNING: PDF write support was not found on the class path Jun 09, 2017 8:32:10 AM org.icepdf.core.pobjects.Catalog…
2
votes
1 answer

Icepdf special character rendering issue

I use itext library for creating PDF file because has very detailed rendering functions for PDF creation. When user click the button i write a template and fill the blank cells from DB everytime. Than i use Icepdf library for show to user and taking…
Black White
  • 700
  • 3
  • 11
  • 31
2
votes
0 answers

Javax.print monochrome doesn't work

I'm developing an application that uses javax.print and icepdf. When I try to print a colored PDF in black and white, my printer always prints it in color... I have used theses properties:…
Khalil_B
  • 59
  • 7
2
votes
2 answers

Disabling toolbar from icePDF viewer

I am trying a sample with icePDF . Everything is working fine but i need to disable the toolbar which appears at the top. i tried few things but its not working. Can some body please help me out with it. Below is my code. //package…
Vishal Thakur
  • 141
  • 4
  • 16
1
vote
2 answers

Java lib for displaying pdf files

I'm looking for a Java library to display pdf files and annotations contained in these pdf files. I tried pdfrenderer and icepdf, but none of the two display annotations (icepdf manages to display highlighted text at least). Any hint is…
Max
  • 157
  • 2
  • 11
1
vote
0 answers

problem font in ICEpdf viewer when i m transform pdf document in image

When i do this in java BufferedImage image = (BufferedImage) _document.getPageImage( 0, GraphicsRenderingHints.SCREEN, Page.BOUNDARY_CROPBOX, _rotation, _scale ); The ' (apostrophe) in the pdf document become a seven white in a black circle I'm in…
1
vote
2 answers

Extracting text in a specific region of PDF page using ICEpdf

Is there any way to extract the text of a specific region using ICEpdf? I was able to extract whole pages, but that's not what I want to do. (I know PDFBox nicely extracts the text in a specific rectangular area of a page. However, since the image…
fabiangebert
  • 2,623
  • 2
  • 22
  • 25
1
vote
0 answers

Navigate into PDF document with ICEpdf without a page number

Here is my code to open the myFile.pdf file to the page 4 : public static void main(String[] args) { final String filePath = "myFile.pdf"; // build a component controller SwingController controller = new SwingController(); …
Azrix
  • 99
  • 1
  • 10
1
vote
1 answer

ICEPDF Printing Problem

I am using ICEPDF to show and print a PDF doc within my Java Application. I get the following exception: org.icepdf.core.pobjects.Catalog INFO: ICEsoft ICEpdf Core 4.1.4 Exception in thread "Thread-4"…
user1265230
  • 61
  • 1
  • 5
1
vote
1 answer

ICEPDF Applet | Disable "Save-As" button from toolbar

I am using ICEPDF(open source java applet) Applet viewer for my pdf to view in my web without the use of adobe reader. Now i want to disable "Save-As" button from the toolbar available at top. I have extracted jar files and dont know which file to…
hjaffer2001
  • 933
  • 6
  • 18
  • 38
1
vote
0 answers

ICEPDF produces a 1 DPI TIFF image?

I am trying to convert PDF to TIFF file using java (following an example). I used the PDF to Tiff for Fax (ICEPDF Apache Example) but the converted tiff file has only 1 dpi (I can hardly see it in produced TIFF file). What I am trying to do is use…
Yohan
  • 75
  • 8
1
2 3 4 5