Följ den här artikeln för att kopiera PowerPoint-bilden med Java REST API. Du kommer att lära dig hur man duplicerar bilder i PowerPoint med Java REST-gränssnitt med den Java-baserade Cloud SDK. Det kommer att dela detaljer för att duplicera bilder i samma presentation eller kopiera bilden till en annan presentation.
Nödvändig förutsättning
Ladda ner Aspose.Slides Cloud SDK for Java for copying slides
Ställ in Java-projekt med ovanstående SDK för att duplicera en bild
Steg för att kopiera bild med Java Low Code API
- Skapa objektet SlidesApi med ett användarklient-ID och hemlighet för att kopiera en bild
- Ladda upp källpresentationsfilen till molnlagringen för bildduplicering
- Kopiera en bild till destinationsindexet genom att anropa metoden CopySlide
- Visa webbadresserna för alla bilder i svarsobjektet om det behövs
- Ladda ner den uppdaterade presentationen efter att ha kopierat en bild och spara på disken
Dessa steg sammanfattar hur man kopierar en PowerPoint-bild med Java REST API. Ladda upp presentationen till molnlagring och anropa metoden CopySlide() genom att ställa in det uppladdade filnamnet, källbildsindexet och målindexet för den kopierade bilden. Visa de returnerade bildadresserna och ladda ner den uppdaterade presentationen om det behövs.
Kod för att duplicera PowerPoint-bild med Java RESTful Service
import com.aspose.slides.ApiException; | |
import com.aspose.slides.api.SlidesApi; | |
import com.aspose.slides.model.ResourceUri; | |
import com.aspose.slides.model.Slides; | |
import java.io.File; | |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.nio.file.StandardCopyOption; | |
public class Example_CopyPresentationSlides { | |
protected static SlidesApi presentationApi; | |
public Example_CopyPresentationSlides() { | |
if (presentationApi == null) { | |
presentationApi = new SlidesApi("appSid", "appKey"); | |
} | |
} | |
public void copySlide() throws ApiException, IOException { | |
String localPath = "/home/downloads/"; | |
String fileName = "Sample.pptx"; | |
String storageFolderName = "TempTests"; | |
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null); | |
// Copy a presentation slide | |
Slides response = presentationApi.copySlide(fileName,1, 2,fileName, null, null, null, storageFolderName, null); | |
for (ResourceUri slide : response.getSlideList()) | |
{ | |
System.out.println(slide.getHref()); | |
} | |
File presentationFile = presentationApi.downloadFile(storageFolderName+"/"+fileName, null, null); | |
// Copy the downloaded presentation with new slide added to the local directory | |
copyFile(presentationFile, new File(localPath, fileName)); | |
System.out.println("Presentation slide deleted and 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); | |
} | |
} |
Den här koden visar hur man kopierar bilder från en PPT till en annan med Java Low Code API. Du kan anropa den andra överbelastade metoden CopySlide() genom att ställa in det uppladdade filnamnet, källbildsindex, målbildsindex och namnet på målpresentationen om den skiljer sig från källpresentationen. Observera att du måste ladda upp målpresentationen även om du vill kopiera bilder till en annan presentation.
Den här artikeln har lärt oss hur man kopierar PowerPoint-bild till en annan presentation med Java REST API. Om du vill lägga till en tom bild i en presentation, se artikeln om lägg till en ny bild i PowerPoint med Java REST API.