📄 image.java
字号:
/* $Id: image.java,v 1.13.2.1 2003/09/02 15:53:59 rp Exp $
*
* PDFlib client: image example in Java
*/
import java.io.*;
import com.pdflib.pdflib;
import com.pdflib.PDFlibException;
public class image
{
public static void main (String argv[])
{
int image;
float width, height;
pdflib p = null;
String imagefile = "nesrin.jpg";
/* This is where font/image/PDF input files live. Adjust as necessary.*/
String searchpath = "../data";
try{
p = new pdflib();
/* open new PDF file */
if (p.open_file("image.pdf") == -1) {
throw new Exception("Error: " + p.get_errmsg());
}
p.set_parameter("SearchPath", searchpath);
p.set_info("Creator", "image.java");
p.set_info("Author", "Thomas Merz");
p.set_info("Title", "image sample (Java)");
image = p.load_image("auto", imagefile, "");
if (image == -1) {
throw new Exception("Error: " + p.get_errmsg());
}
/* dummy page size, will be adjusted by PDF_fit_image() */
p.begin_page(10, 10);
p.fit_image(image, (float) 0.0, (float) 0.0, "adjustpage");
p.close_image(image);
p.end_page(); /* close page */
p.close(); /* close PDF document */
} catch (PDFlibException e) {
System.err.print("PDFlib exception occurred in hello sample:\n");
System.err.print("[" + e.get_errnum() + "] " + e.get_apiname() +
": " + e.getMessage() + "\n");
} catch (Exception e) {
System.err.println(e.getMessage());
} finally {
if (p != null) {
p.delete(); /* delete the PDFlib object */
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -