iText - การเพิ่มรูปภาพลงในตาราง
ในบทนี้เราจะดูวิธีการเพิ่มรูปภาพลงในตารางในเอกสาร PDF โดยใช้ไลบรารี iText
การเพิ่มรูปภาพลงในตาราง
คุณสามารถสร้างเอกสาร PDF เปล่าได้โดยการสร้างไฟล์ Documentชั้นเรียน ในขณะที่สร้างอินสแตนซ์คลาสนี้คุณต้องผ่านไฟล์PdfDocumentวัตถุเป็นพารามิเตอร์ไปยังตัวสร้าง จากนั้นในการเพิ่มตารางลงในเอกสารคุณต้องสร้างอินสแตนซ์ไฟล์Table คลาสและเพิ่มวัตถุนี้ลงในเอกสารโดยใช้ add() วิธี.
ในการเพิ่มรูปภาพลงในตารางนี้คุณต้องสร้างอินสแตนซ์ไฟล์ Cell คลาสสร้างและออบเจ็กต์ของรูปภาพที่ต้องการเพิ่มเพิ่มรูปภาพลงในไฟล์ cell วัตถุโดยใช้ add() วิธีการของ Cell ชั้นเรียน
ต่อไปนี้เป็นขั้นตอนในการแทรกรูปภาพลงในเซลล์ของตาราง
ขั้นตอนที่ 1: การสร้างวัตถุ PdfWriter
PdfWriter คลาสเป็นตัวแทนของ Doc Writer สำหรับ PDF คลาสนี้เป็นของแพ็กเกจ com.itextpdf.kernel.pdf. คอนสตรัคเตอร์ของคลาสนี้ยอมรับสตริงซึ่งแสดงถึงพา ธ ของไฟล์ที่จะสร้าง PDF
สร้างอินสแตนซ์คลาส PdfWriter โดยการส่งค่าสตริงที่แสดงเส้นทางที่คุณต้องการสร้าง PDF ไปยังตัวสร้างดังที่แสดงด้านล่าง
// Creating a PdfWriter
String dest = "C:/itextExamples/addingImage.pdf";
PdfWriter writer = new PdfWriter(dest);
เมื่อออบเจ็กต์ประเภทนี้ถูกส่งผ่านไปยัง PdfDocument (คลาส) ทุกองค์ประกอบที่เพิ่มลงในเอกสารนี้จะถูกเขียนลงในไฟล์ที่ระบุ
ขั้นตอนที่ 2: การสร้างวัตถุ PdfDocument
PdfDocumentคลาสคือคลาสที่แสดงถึงเอกสาร PDF ใน iText คลาสนี้เป็นของแพ็คเกจcom.itextpdf.kernel.pdf. ในการสร้างอินสแตนซ์คลาสนี้ (ในโหมดการเขียน) คุณต้องส่งผ่านอ็อบเจ็กต์ของคลาสPdfWriter ไปยังผู้สร้าง
เริ่มต้นไฟล์ PdfDocument คลาสโดยส่งออบเจ็กต์ PdfWriter ที่สร้างไว้ข้างต้นไปยังตัวสร้างดังที่แสดงด้านล่าง
// Creating a PdfDocument
PdfDocument pdfDoc = new PdfDocument(writer);
เมื่อสร้างวัตถุ PdfDocument แล้วคุณสามารถเพิ่มองค์ประกอบต่างๆเช่นหน้าแบบอักษรสิ่งที่แนบมาของไฟล์และตัวจัดการเหตุการณ์โดยใช้วิธีการตามลำดับที่จัดเตรียมโดยคลาสของมัน
ขั้นตอนที่ 3: การสร้างวัตถุเอกสาร
Document คลาสของแพ็คเกจ com.itextpdf.layoutเป็นองค์ประกอบหลักในขณะที่สร้าง PDF แบบพอเพียง หนึ่งในตัวสร้างของคลาสนี้ยอมรับอ็อบเจ็กต์ของคลาสPdfDocument.
เริ่มต้นไฟล์ Document คลาสโดยส่งผ่านวัตถุของคลาส PdfDocument สร้างขึ้นในขั้นตอนก่อนหน้าดังที่แสดงด้านล่าง
// Creating a Document
Document document = new Document(pdfDoc);
ขั้นตอนที่ 4: การสร้างวัตถุตาราง
Tableคลาสแสดงตารางสองมิติที่เต็มไปด้วยเซลล์เรียงลำดับเป็นแถวและคอลัมน์ มันเป็นของแพ็คเกจcom.itextpdf.layout.element.
เริ่มต้นไฟล์ Table คลาสดังที่แสดงด้านล่าง
// Creating a table
float [] pointColumnWidths = {200F, 200F};
Table table = new Table(pointColumnWidths);
ขั้นตอนที่ 5: สร้างเซลล์
สร้างไฟล์ cell วัตถุโดยการสร้างอินสแตนซ์ไฟล์ Cell คลาสของแพ็คเกจ com.itextpdf.layoutตามที่แสดงด้านล่าง
// Adding cell to the table
Cell cell = new Cell(); // Creating a cell
ขั้นตอนที่ 6: การสร้างภาพ
เพื่อสร้างไฟล์ image ก่อนอื่นให้สร้างไฟล์ ImageData วัตถุโดยใช้ create() วิธีการของ ImageDataFactoryชั้นเรียน ในฐานะพารามิเตอร์ของวิธีนี้ให้ส่งพารามิเตอร์สตริงที่แสดงเส้นทางของรูปภาพดังที่แสดงด้านล่าง
// Creating an ImageData object
String imageFile = "C:/itextExamples/javafxLogo.jpg";
ImageData data = ImageDataFactory.create(imageFile);
ตอนนี้สร้างอินสแตนซ์ไฟล์ Image คลาสของ com.itextpdf.layout.elementแพ็คเกจ ในขณะที่สร้างอินสแตนซ์ให้ส่งไฟล์ImageData วัตถุที่สร้างขึ้นด้านบนเป็นพารามิเตอร์ของตัวสร้างดังที่แสดงด้านล่าง
// Creating an Image object
Image img = new Image(data);
เพิ่มไฟล์ image วัตถุไปยังเซลล์โดยใช้ไฟล์ add() วิธีการของคลาสเซลล์ดังที่แสดงด้านล่าง
// Adding image to the cell
cell.add(img.setAutoScale(true));
ขั้นตอนที่ 7: การเพิ่มเซลล์ลงในตาราง
สุดท้ายหากต้องการเพิ่มเซลล์นี้ลงในตารางให้เรียกไฟล์ addCell() วิธีการของ Table ชั้นเรียนและผ่าน cell วัตถุเป็นพารามิเตอร์ของวิธีนี้ดังที่แสดงด้านล่าง
table.addCell(cell);
ขั้นตอนที่ 8: การเพิ่มตารางลงในเอกสาร
เพิ่มไฟล์ table วัตถุที่สร้างขึ้นในขั้นตอนก่อนหน้าโดยใช้ add() วิธีการของ Document ชั้นเรียนดังที่แสดงด้านล่าง
// Adding list to the document
document.add(table);
ขั้นตอนที่ 9: การปิดเอกสาร
ปิดเอกสารโดยใช้ close() วิธีการของ Document ชั้นเรียนดังที่แสดงด้านล่าง
// Closing the document
document.close();
ตัวอย่าง
โปรแกรม Java ต่อไปนี้สาธิตวิธีการเพิ่มรูปภาพลงในเซลล์ของตารางในเอกสาร PDF โดยใช้ไลบรารี iText สร้างเอกสาร PDF ที่มีชื่อaddingImage.pdfเพิ่มตารางเข้าไปแทรกรูปภาพ (javafxLogo.jpg) ลงในเซลล์ใดเซลล์หนึ่งและบันทึกไว้ในพา ธ C:/itextExamples/.
บันทึกรหัสนี้ในไฟล์ที่มีชื่อ AddingImageToTable.java.
import com.itextpdf.io.image.ImageData;
import com.itextpdf.io.image.ImageDataFactory;
import com.itextpdf.kernel.pdf.PdfDocument;
import com.itextpdf.kernel.pdf.PdfWriter;
import com.itextpdf.layout.Document;
import com.itextpdf.layout.element.Cell;
import com.itextpdf.layout.element.Image;
import com.itextpdf.layout.element.Table;
public class a3AddingImageToTable {
public static void main(String args[]) throws Exception {
// Creating a PdfWriter object
String dest = "C:/itextExamples/addingImage.pdf";
PdfWriter writer = new PdfWriter(dest);
// Creating a PdfDocument object
PdfDocument pdfDoc = new PdfDocument(writer);
// Creating a Document object
Document doc = new Document(pdfDoc);
// Creating a table
float [] pointColumnWidths = {150f, 150f};
Table table = new Table(pointColumnWidths);
// Populating row 1 and adding it to the table
Cell cell1 = new Cell();
cell1.add("Tutorial ID");
table.addCell(cell1);
Cell cell2 = new Cell();
cell2.add("1");
table.addCell(cell2);
// Populating row 2 and adding it to the table
Cell cell3 = new Cell();
cell3.add("Tutorial Title");
table.addCell(cell3);
Cell cell4 = new Cell();
cell4.add("JavaFX");
table.addCell(cell4);
// Populating row 3 and adding it to the table
Cell cell5 = new Cell();
cell5.add("Tutorial Author");
table.addCell(cell5);
Cell cell6 = new Cell();
cell6.add("Krishna Kasyap");
table.addCell(cell6);
// Populating row 4 and adding it to the table
Cell cell7 = new Cell();
cell7.add("Submission date");
table.addCell(cell7);
Cell cell8 = new Cell();
cell8.add("2016-07-06");
table.addCell(cell8);
// Populating row 5 and adding it to the table
Cell cell9 = new Cell();
cell9.add("Tutorial Icon");
table.addCell(cell9);
// Creating the cell10
Cell cell10 = new Cell();
// Creating an ImageData object
String imageFile = "C:/itextExamples/javafxLogo.jpg";
ImageData data = ImageDataFactory.create(imageFile);
// Creating the image
Image img = new Image(data);
// Adding image to the cell10
cell10.add(img.setAutoScale(true));
// Adding cell110 to the table
table.addCell(cell10);
// Adding Table to document
doc.add(table);
// Closing the document
doc.close();
System.out.println("Image added to table successfully..");
}
}
คอมไพล์และเรียกใช้ไฟล์ Java ที่บันทึกไว้จากพรอมต์คำสั่งโดยใช้คำสั่งต่อไปนี้ -
javac AddingImageToTable.java
java AddingImageToTable
เมื่อดำเนินการโปรแกรมข้างต้นจะสร้างเอกสาร PDF โดยแสดงข้อความต่อไปนี้
Image added to table successfully..
หากคุณตรวจสอบเส้นทางที่ระบุคุณจะพบเอกสาร PDF ที่สร้างขึ้นดังที่แสดงด้านล่าง