Foren

PDF display..

thumbnail
Muzakir Khan, geändert vor 11 Jahren.

PDF display..

Regular Member Beiträge: 112 Beitrittsdatum: 15.03.12 Neueste Beiträge
Hi!..
My requirement is to open a pdf using iframe in a portlet. I have a simple Java class that successfully opens a pdf file, but it opens in new window..
My question is, how to integrate this concept in liferay such that the pdf should open in iframe. My java class code is as below.


package com.pdfreader;
import java.awt.Desktop;
import java.io.File;

//Cross platform solution to view a PDF file
public class AnyPlatformAppPDF {

public static void main(String[] args) {

try {

File pdfFile = new File("/home/sourceone/Documents/imppdf/TagLibraries.pdf");
if (pdfFile.exists()) {

if (Desktop.isDesktopSupported()) {
Desktop.getDesktop().open(pdfFile);
} else {
System.out.println("Awt Desktop is not supported!");
}

} else {
System.out.println("File does not exists!");
}

System.out.println("Done");

} catch (Exception ex) {
ex.printStackTrace();
}

}
}

Any help will be greatly appreciated.

Kind Regards
Khan
thumbnail
David H Nebinger, geändert vor 11 Jahren.

RE: PDF display..

Liferay Legend Beiträge: 14914 Beitrittsdatum: 02.09.06 Neueste Beiträge
If you search for it, I think you'll find the answer.

This has come up before and there has been lots of info on it.
realiste realiste, geändert vor 11 Jahren.

RE: PDF display..

Junior Member Beiträge: 31 Beitrittsdatum: 20.07.12 Neueste Beiträge
hi Muzakir Khan
I have the same problem as you.
did  you have a solution?
thumbnail
Victor Zorin, geändert vor 11 Jahren.

RE: PDF display..

Liferay Legend Beiträge: 1228 Beitrittsdatum: 14.04.08 Neueste Beiträge
Displaying pdf in iframe/browser is always going to be problematic for a generic user that does not sit within the Standard Operating Environment.
Display of PDF is heavily dependent on browser and Adobe installations on a specific computer.

From our experience we found that a fairly client environment - independent approach is to provide image-based previews of pages while providing download links. This is one of the examples. You can also have a look how Liferay document library delivers PDF images.
thumbnail
Hitoshi Ozawa, geändert vor 11 Jahren.

RE: PDF display..

Liferay Legend Beiträge: 7942 Beitrittsdatum: 24.03.10 Neueste Beiträge
Displaying pdf in iframe/browser is always going to be problematic for a generic user that does not sit within the Standard Operating Environment.
Display of PDF is heavily dependent on browser and Adobe installations on a specific computer.

From our experience we found that a fairly client environment - independent approach is to provide image-based previews of pages while providing download links. This is one of the examples. You can also have a look how Liferay document library delivers PDF images.


Agree on using image instead of pdf. PDF is Adobe proprietary format and there's some difference between how it's displayed on different web browsers and on tools used to create pdf files.