此操作方法主题通过提供配置环境和使用应用程序代码的详细步骤,重点介绍如何使用 Java 在 Presentation 中添加音频。您可以在 Linux、Windows 或 macOS 中配置的任何 Java 环境中使用此应用程序,而无需依赖 Microsoft PowerPoint 或任何第三方软件以使用 Java 在 PPTX 中嵌入音频。
使用 Java 在演示文稿中插入音频的步骤
- 配置开发环境以使用存储库管理器中的 Aspose.Slides for Java JAR 文件在演示文稿中插入音频帧
- 使用 Presentation 类的实例创建示例演示文稿以在演示文稿中插入音频
- 访问演示幻灯片集合中的所需幻灯片以添加音频帧
- 从磁盘加载音频文件并将其插入演示幻灯片音频帧中
- 从磁盘加载图像并将其设置为音频帧图像
- 将具有音频帧的演示文稿保存在磁盘上
通过执行 *Java 在 PowerPoint 中插入音频的上述步骤,可以使用一些 API 调用轻松管理演示文稿,该过程将通过使用 Presentation 类的实例创建默认演示文稿开始,然后访问所需的在演示文稿中滑动。然后将从磁盘加载音频文件和图像并将其设置在幻灯片的音频框架内。最后,包含带有嵌入音频帧的幻灯片的演示文稿将保存在磁盘上。
使用 Java 在演示文稿中插入音频的代码
import com.aspose.slides.AudioVolumeMode; | |
import com.aspose.slides.IAudioFrame; | |
import com.aspose.slides.IPPImage; | |
import com.aspose.slides.ISlide; | |
import com.aspose.slides.License; | |
import com.aspose.slides.Presentation; | |
import com.aspose.slides.SaveFormat; | |
import com.aspose.slides.ShapeType; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.nio.file.Files; | |
import java.nio.file.Paths; | |
public class InsertAudio { | |
public static void main(String[] args) throws Exception{ | |
String filesPath = "/Users/Documents/KnowledgeBase/TestData/"; | |
//Set the product license to add an audio frame inside the presentation | |
License slideAudiolicense = new License(); | |
slideAudiolicense.setLicense(filesPath + "Conholdate.Total.Product.Family.lic"); | |
//Create a sample presentation to add new audio frame inside the slide | |
Presentation SrcPresWithAudio = new Presentation(); | |
//Load the first slide to include the Audio frame | |
ISlide AudioSlide = SrcPresWithAudio.getSlides().get_Item(0); | |
//Create an audio frame inside the slide with a specified position and defined size | |
IAudioFrame audioFrame = AudioSlide.getShapes(). | |
addAudioFrameEmbedded(12, 12, 230, 230, | |
new FileInputStream(new File(filesPath+ "Sampleaudio.wav"))); | |
// Add an audio frame shape image inside the presentation image collection | |
IPPImage audImage = SrcPresWithAudio.getImages(). | |
addImage(new FileInputStream(new File(filesPath+ "multiple_codes.png"))); | |
// Set the front image for the audio frame | |
audioFrame.getPictureFormat().getPicture().setImage(audImage); | |
// Save the presentation having an audio frame on the disk | |
SrcPresWithAudio.save("AudFrame_out.pptx", SaveFormat.Pptx); | |
} | |
} |
上述示例介绍了如何使用非常简单的 API 接口在 Java 中轻松地将 MP3 音频保存为 PPT 演示文稿。我们使用了 IAudioFrame 类,它还允许您为倒带模式、播放模式、循环播放音频和隐藏音频等功能设置附加标志。将音频嵌入演示文稿后,您可以根据需要将其保存在磁盘或内存流中。
此示例重点介绍如何使用 Java 在演示文稿中插入音频*。如果您有兴趣了解如何在演示文稿中添加视频,请参阅 如何使用 Java 在演示文稿中添加视频 上的文章。