⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 image.jsp

📁 windows下PDF文档的开发包
💻 JSP
字号:
<%@page import="java.io.*, javax.servlet.*, com.pdflib.pdflib" %><%/* $Id: image.jsp,v 1.7.2.1 2003/09/03 12:24:26 rp Exp $ * * image.jsp */	int image;	float width, height;	pdflib p;	String imagefile = "nesrin.jpg";	byte[] buf;	ServletOutputStream output;	/* This is where font/image/PDF input files live. Adjust as necessary.*/	String searchpath = "../data";	p = new pdflib();	// Generate a PDF in memory; insert a file name to create PDF on disk	if (p.open_file("") == -1) {	    System.err.println("Error: " + p.get_errmsg());	    System.exit(1);	}	p.set_parameter("SearchPath", searchpath);	p.set_info("Creator", "image.jsp");	p.set_info("Author", "Rainer Ploeckl");	p.set_info("Title", "image sample (JSP)");	image = p.load_image("auto", imagefile, "");	if (image == -1) {	    System.err.println("Error: " + p.get_errmsg());	    System.exit(1);	}	/* 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();	p.close();        buf = p.get_buffer();        response.setContentType("application/pdf");        response.setContentLength(buf.length);        output = response.getOutputStream();        output.write(buf);        output.close();%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -