यह सरल लेख इस बात पर केंद्रित है कि कैसे जावा का उपयोग करके PowerPoint तालिका में छवि डालें। यह एक छवि के साथ स्लाइड टेबल सेल बनाने और भरने के लिए नमूना कोड के साथ-साथ पर्यावरण और चरण-दर-चरण प्रक्रिया को स्थापित करने के लिए सभी आवश्यक जानकारी को उजागर करता है जो दिखाता है कि कैसे PPTX तालिका में छवि जोड़ें जावा**। इस एप्लिकेशन का उपयोग किसी भी जावा कॉन्फ़िगर किए गए वातावरण जैसे macOS, Windows या Linux में किया जा सकता है।
जावा का उपयोग करके PowerPoint तालिका में छवि सम्मिलित करने के चरण
- तालिका छवि सम्मिलित करने के लिए Aspose.Slides for Java जोड़ने के लिए वातावरण सेट करें
- नई प्रस्तुति जोड़ने और स्लाइड संग्रह से पहली स्लाइड तक पहुंचने के लिए Presentation क्लास इंस्टेंस को इनिशियलाइज़ करें
- addTable() पद्धति का उपयोग करके चयनित स्लाइड के अंदर पंक्तियों और स्तंभों के लिए निश्चित ऊंचाई वाली तालिका बनाएं
- प्रस्तुतीकरण छवि संग्रह के अंदर लोड की गई छवि जोड़ें
- तालिका के अंदर पहली पंक्ति और स्तंभ से संबंधित सेल को लोड करें और उसमें छवि सेट करें
- तालिका छवि वाली प्रस्तुति को पीपीटीएक्स प्रारूप में सहेजें
हमने उपरोक्त चरणों का उपयोग करके जावा में पीपीटीएक्स तालिका में छवि प्रदर्शित करने का तरीका बताया है। सबसे पहले, स्लाइड संग्रह के अंदर पहली स्लाइड तक पहुंच प्राप्त करने के साथ-साथ प्रेजेंटेशन क्लास ऑब्जेक्ट का उपयोग करके एक प्रेजेंटेशन बनाया जाएगा। हम ऐडटेबल () पद्धति का उपयोग करके पंक्तियों और स्तंभों की संख्या प्रदान करके एक नई तालिका सम्मिलित करेंगे, जिसके बाद डिस्क से छवि को एक्सेस करके और प्रस्तुति छवि संग्रह के अंदर जोड़ दिया जाएगा। अंत में, डिस्क पर पीपीटीएक्स प्रारूप में प्रस्तुति को सहेजने से पहले हम छवि को चयनित टेबल सेल के अंदर सेट करेंगे।
जावा का उपयोग करके PowerPoint तालिका में छवि सम्मिलित करने के लिए कोड
import com.aspose.slides.FillType; | |
import com.aspose.slides.ICell; | |
import com.aspose.slides.IPPImage; | |
import com.aspose.slides.ISlide; | |
import com.aspose.slides.ITable; | |
import com.aspose.slides.License; | |
import com.aspose.slides.PictureFillMode; | |
import com.aspose.slides.Presentation; | |
import com.aspose.slides.SaveFormat; | |
import java.nio.file.Files; | |
import java.nio.file.Paths; | |
public class InsertTableImage { | |
public static void main(String[] args) throws Exception{ | |
String filesPath = "/Documents/KnowledgeBase/TestData/"; | |
License svgImportlicense = new License(); | |
svgImportlicense.setLicense(filesPath + "Conholdate.Total.Product.Family.lic"); | |
//Generate a default presentation to insert a PNG image | |
Presentation tblImagePresentation = new Presentation(); | |
//Load the first default slide inside the presentation slides collection | |
ISlide slide = tblImagePresentation.getSlides().get_Item(0); | |
// Load and add the image inside the presentation image collection | |
IPPImage ppTblImage = tblImagePresentation.getImages(). | |
addImage(Files.readAllBytes(Paths.get(filesPath + "Source.png"))); | |
// Define the arrays containing the row heights and column widths | |
double[] dColumnsWidths = { 55, 55, 55 }; | |
double[] dRowsHeights = { 54, 26, 46, 45 }; | |
// Insert a new table with set rows and columns | |
ITable tblWithImage = slide.getShapes().addTable(60, 60, dColumnsWidths, dRowsHeights); | |
// Load the first cells inside the first row of the table | |
ICell tblCell = tblWithImage.get_Item(0, 0); | |
// Set the cell cell fill format to add a picture | |
tblCell.getCellFormat().getFillFormat().setFillType(FillType.Picture); | |
// Now set the picture fill mode to stretch | |
tblCell.getCellFormat().getFillFormat().getPictureFillFormat().setPictureFillMode(PictureFillMode.Stretch); | |
// Set the image for the table cell inside | |
tblCell.getCellFormat().getFillFormat().getPictureFillFormat().getPicture().setImage(ppTblImage); | |
//Save the presentation with a table image on the disk | |
tblImagePresentation.save(filesPath + "PresentationWithTableImage.pptx", SaveFormat.Pptx); | |
} | |
} |
उपरोक्त उदाहरण में, हमने प्रदर्शित किया है कि कैसे जावा का उपयोग करके स्लाइड में तालिका छवि सम्मिलित करें कुछ एपीआई कॉल का उपयोग करके। हमने एक नमूना प्रस्तुति बनाई है और ITable क्लास ऑब्जेक्ट का उपयोग करके पंक्तियों और स्तंभों के संग्रह वाली एक तालिका जोड़ी है। टेबल के अंदर किसी विशेष सेल के लिए उजागर किए गए सेलफ़ॉर्मेट उदाहरण का उपयोग सेल के भरण प्रारूप को फ़िलटाइप.पिक्चर एन्युमरेटर का उपयोग करके एक छवि में सेट करने के लिए किया जाता है। अंत में, छवि को प्रस्तुति छवि संग्रह के अंदर जोड़ा जाता है और प्रदर्शन के लिए सेल छवि के लिए उपयोग किया जाता है।
इस उदाहरण में, हमने Java का उपयोग करके प्रस्तुतिकरण में तालिका छवि कैसे सम्मिलित करेंगे के बारे में सीखा है। यदि आप PowerPoint के अंदर तालिकाओं के प्रबंधन के बारे में अधिक जानने में रुचि रखते हैं, तो विषय, जावा का उपयोग करके स्लाइड में टेबल कैसे डालें देखें।