यह आलेख वर्णन करता है कि जावा रेस्ट एपीआई के साथ स्मार्टआर्ट को PowerPoint में कैसे जोड़ें। आप जावा-आधारित क्लाउड एसडीके का उपयोग करके जावा लो कोड एपीआई के साथ पावरपॉइंट स्मार्टआर्ट को स्वचालित रूप से सम्मिलित करना सीखेंगे। पावरपॉइंट प्रेजेंटेशन स्लाइड में विभिन्न प्रकार के स्मार्टआर्ट बनाने के लिए विभिन्न वर्गों और प्रगणकों पर चर्चा की जाती है।
पूर्वावश्यकता
डाउनलोड करना Aspose.Slides Cloud SDK for Java for inserting SmartArt in slides
स्मार्टआर्ट ग्राफिक्स बनाने के लिए उपरोक्त एसडीके के साथ जावा प्रोजेक्ट सेटअप करें
Java REST API के साथ PowerPoint प्रेजेंटेशन स्मार्टआर्ट जोड़ने के चरण
- स्मार्टआर्ट के साथ काम करने के लिए SlidesApi ऑब्जेक्ट में क्रेडेंशियल सेट करें
- स्मार्ट ग्राफ़िक्स सम्मिलित करने के लिए स्रोत प्रस्तुति को क्लाउड स्टोरेज पर अपलोड करें
- स्मार्टआर्ट ऑब्जेक्ट में वांछित गुण सेट करके ग्राफिक्स डेटा बनाएं
- CreateShape() विधि का उपयोग करके स्मार्टआर्ट डालें
- इसमें स्मार्टआर्ट जोड़ने के बाद अद्यतन प्रस्तुति फ़ाइल डाउनलोड करें
ये चरण बताते हैं कि Java REST API के साथ PowerPoint के लिए स्मार्टआर्ट के साथ कैसे काम करना है। SlidesApi क्लास ऑब्जेक्ट बनाएं, स्रोत प्रस्तुति अपलोड करें, और स्थिति, आकार, लेआउट, त्वरित शैली और रंग शैली सहित निर्दिष्ट सेटिंग्स के साथ स्मार्टआर्ट ऑब्जेक्ट बनाएं। अंत में, CreateShape() विधि का उपयोग करके स्मार्टआर्ट के लिए कई नोड्स संबंधित स्लाइड में जोड़े जाते हैं।
जावा जावा-आधारित एपीआई के साथ पावरपॉइंट स्मार्ट आकृतियाँ जोड़ने के लिए कोड
import com.aspose.slides.ApiException; | |
import com.aspose.slides.api.SlidesApi; | |
import com.aspose.slides.model.*; | |
import java.io.File; | |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.nio.file.StandardCopyOption; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class Example_AddSmartArtShapeInPresentation { | |
protected static SlidesApi presentationApi; | |
public Example_AddSmartArtShapeInPresentation() { | |
if (presentationApi == null) { | |
presentationApi = new SlidesApi("appSid", "appKey"); | |
} | |
} | |
public void addCustomShapeInSlide() throws ApiException, IOException { | |
String localPath = "/home/downloads/"; | |
String fileName = "Sample.pptx"; | |
String imageFileName = "ShapeImage.png"; | |
String storageFolderName = "TempTests"; | |
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null); | |
// Configure SmartArt properties | |
SmartArt smartArt = new SmartArt(); | |
smartArt.setX(50.0); // Horizontal position of the SmartArt | |
smartArt.setY(50.0); // Horizontal position of the SmartArt | |
smartArt.setWidth(250.0); // Width of the SmartArt | |
smartArt.setHeight(250.0); // Height of the SmartArt | |
smartArt.setLayout(SmartArt.LayoutEnum.BENDINGPICTURESEMITRANSPARENTTEXT); // SmartArt layout | |
smartArt.setQuickStyle(SmartArt.QuickStyleEnum.SIMPLEFILL); // Quick style | |
smartArt.setColorStyle(SmartArt.ColorStyleEnum.COLOREDFILLACCENT1); // Color style | |
List<SmartArtNode> nodes = new ArrayList<SmartArtNode>(); | |
SmartArtNode node1 = new SmartArtNode(); | |
node1.setText("Planning"); | |
nodes.add(node1); | |
SmartArtNode node2 = new SmartArtNode(); | |
node2.setText("Design"); | |
nodes.add(node2); | |
SmartArtNode node3 = new SmartArtNode(); | |
node3.setText("Implementation"); | |
nodes.add(node3); | |
smartArt.setNodes(nodes); | |
// Add SmartArt to the first slide | |
ShapeBase addedSmartArt = presentationApi.createShape(fileName, 1, smartArt, null, null, null, storageFolderName, null, null ); | |
System.out.println("SmartArt added to the presentation successfully."); | |
File presentationFile = presentationApi.downloadFile(storageFolderName+"/"+fileName, null, null); | |
// Copy the downloaded presentation with new image shape to the local directory | |
copyFile(presentationFile, new File(localPath, fileName)); | |
System.out.println("Presentation slide with SmartArt shape is copied to: " + localPath + fileName); | |
} | |
public static byte[] readFileToByteArray(String filePath) throws IOException { | |
Path path = new File(filePath).toPath(); | |
return Files.readAllBytes(path); | |
} | |
private void copyFile(File sourceFile, File targetFile) throws IOException { | |
if (sourceFile == null || !sourceFile.exists()) { | |
throw new IOException("Source file does not exist: " + sourceFile); | |
} | |
// Ensure the target directory exists | |
Path targetPath = targetFile.toPath(); | |
Files.createDirectories(targetPath.getParent()); | |
// Copy the file | |
Files.copy(sourceFile.toPath(), targetPath, StandardCopyOption.REPLACE_EXISTING); | |
} | |
} |
यह कोड दर्शाता है कि एक स्लाइड में Java REST इंटरफ़ेस के साथ स्मार्ट आर्ट ग्राफ़िक कैसे सम्मिलित किया जाए। AccentProcess, AccentedPicture, ArrowRibbon, BasicPyramid, और BasicProcess आदि सहित मानों की एक बड़ी सूची से वांछित स्मार्टआर्ट आकार का चयन करने के लिए LayoutEnum का उपयोग करें। इसी तरह, त्वरित शैली और रंग शैली गणनाकर्ताओं के पास भी SmartArt को अनुकूलित करने के लिए कई प्रकार के विकल्प हैं।
इस आलेख ने हमें प्रेजेंटेशन स्लाइड में स्मार्टआर्ट बनाना सिखाया है। किसी प्रस्तुतिकरण में कस्टम आकृतियाँ जोड़ने के लिए, Java REST API के साथ PowerPoint में कस्टम आकार बनाएं पर लेख देखें।