|
import com.aspose.slides.ApiException; |
|
import com.aspose.slides.api.SlidesApi; |
|
import com.aspose.slides.model.HeaderFooter; |
|
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.time.LocalDate; |
|
import java.time.format.DateTimeFormatter; |
|
|
|
public class Example_AddHeaderFooterInPresentation { |
|
protected static SlidesApi presentationApi; |
|
|
|
public Example_AddHeaderFooterInPresentation() { |
|
if (presentationApi == null) { |
|
presentationApi = new SlidesApi("appSid", "appKey"); |
|
} |
|
} |
|
|
|
public void addHeadersFooters() throws ApiException, IOException { |
|
String localPath = "/home/downloads/"; |
|
String fileName = "Sample.pptx"; |
|
String storageFolderName = "TempTests"; |
|
|
|
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null); |
|
|
|
LocalDate currentDate = LocalDate.now(); |
|
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("M/d/yyyy"); |
|
String formattedDate = currentDate.format(formatter); |
|
|
|
HeaderFooter presentationFooter = new HeaderFooter(); |
|
presentationFooter.setIsDateTimeVisible(true); |
|
presentationFooter.setIsFooterVisible(true); |
|
presentationFooter.setIsSlideNumberVisible(true); |
|
presentationFooter.setDateTimeText(formattedDate); |
|
presentationFooter.setFooterText("General Footer Text for all slides"); |
|
|
|
// Add Header to presentation slide |
|
presentationApi.setPresentationHeaderFooter(fileName, presentationFooter, null, storageFolderName, null); |
|
|
|
HeaderFooter firstSlideFooter = new HeaderFooter(); |
|
firstSlideFooter.setIsDateTimeVisible(true); |
|
firstSlideFooter.setIsFooterVisible(true); |
|
firstSlideFooter.setIsSlideNumberVisible(true); |
|
firstSlideFooter.setFooterText("Text for the first slide footer"); |
|
|
|
// Add Footer to presentation slide |
|
presentationApi.setSlideHeaderFooter(fileName, 1, firstSlideFooter, null, storageFolderName, null); |
|
|
|
System.out.println(presentationFooter.toString()); |
|
System.out.println(firstSlideFooter.toString()); |
|
|
|
|
|
File presentationFile = presentationApi.downloadFile(storageFolderName+"/"+fileName, null, null); |
|
|
|
// Copy the downloaded presentation with Headers and Footers to the local directory |
|
copyFile(presentationFile, new File(localPath, fileName)); |
|
|
|
System.out.println("Presentation with Header and Footer is set 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); |
|
} |
|
} |