ActiveX
Contents
[
Hide
]
ActiveX 控件用于演示文稿。Aspose.Slides for PHP via Java 允许您添加和管理 ActiveX 控件,但与普通演示形状相比,它们的管理稍显复杂。我们在 Aspose.Slides 中实现了支持添加媒体播放器 Active 控件的功能。请注意,ActiveX 控件不是形状;它们不属于演示文稿的 IShapeCollection。相反,它们属于单独的 IControlCollection。在本主题中,我们将向您展示如何使用这些控件。
向幻灯片添加媒体播放器 ActiveX 控件
要添加 ActiveX 媒体播放器控件,请执行以下操作:
- 创建 Presentation 类的实例并生成一个空演示实例。
- 访问 Presentation 中的目标幻灯片。
- 使用 IControlCollection 提供的 addControl 方法添加媒体播放器 ActiveX 控件。
- 访问媒体播放器 ActiveX 控件并使用其属性设置视频路径。
- 将演示文稿保存为 PPTX 文件。
以下是基于上述步骤的示例代码,演示如何将媒体播放器 ActiveX 控件添加到幻灯片中:
# 创建空的演示实例
$pres = new Presentation();
try {
# 添加媒体播放器 ActiveX 控件
$pres->getSlides()->get_Item(0)->getControls()->addControl(ControlType::WindowsMediaPlayer, 100, 100, 400, 400);
# 访问媒体播放器 ActiveX 控件并设置视频路径
$pres->getSlides()->get_Item(0)->getControls()->get_Item(0)->getProperties()->set_Item("URL", "Wildlife.wmv");
# 保存演示文稿
$pres->save("Output.pptx", SaveFormat::Pptx);
} finally {
if (!java_is_null($pres)) {
$pres->dispose();
}
}
修改 ActiveX 控件
Aspose.Slides for PHP via Java 7.1.0 以及更新版本配备了管理 ActiveX 控件的组件。您可以访问演示文稿中已添加的 ActiveX 控件,并通过其属性进行修改或删除。
要管理幻灯片上的简单 ActiveX 控件,例如文本框和简单的命令按钮,请执行以下操作:
- 创建 Presentation 类的实例并加载包含 ActiveX 控件的演示文稿。
- 按索引获取幻灯片引用。
- 通过访问 IControlCollection 访问幻灯片中的 ActiveX 控件。
- 使用 IControl 对象访问 TextBox1 ActiveX 控件。
- 修改 TextBox1 ActiveX 控件的属性,包括文本、字体、字体高度和框架位置。
- 访问名为 CommandButton1 的第二个控件。
- 修改按钮的标题、字体和位置。
- 移动 ActiveX 控件的框架位置。
- 将修改后的演示文稿写入 PPTX 文件。
以下是基于上述步骤的示例代码,演示如何管理简单的 ActiveX 控件:
# 访问包含 ActiveX 控件的演示文稿
$pres = new Presentation("ActiveX.pptm");
try {
# 访问演示文稿中的第一张幻灯片
$slide = $pres->getSlides()->get_Item(0);
# 修改 TextBox 文本
$control = $slide->getControls()->get_Item(0);
if (!java_is_null($control->getName()->equalsIgnoreCase("TextBox1") && $control->getProperties())) {
$newText = "更改的文本";
$control->getProperties()->set_Item("Value", $newText);
# 修改替代图像。 PowerPoint 会在 activeX 激活时替换此图像,
# 因此有时可以不更改图像。
$image = new BufferedImage($control->getFrame()->getWidth(), $control->getFrame()->getHeight(), BufferedImage->TYPE_INT_ARGB);
$graphics = $image->getGraphics();
$graphics->setColor(SystemColor->window);
$graphics->fillRect(0, 0, $image->getWidth(), $image->getHeight());
$font = new Font($control->getProperties()->get_Item("FontName"), Font->PLAIN, 16);
$graphics->setColor(SystemColor->windowText);
$graphics->setFont($font);
$graphics->drawString($newText, 10, 20);
$graphics->setColor(SystemColor->controlShadow);
$graphics->drawLine(0, $image->getHeight() - 1, 0, 0);
$graphics->drawLine(0, 0, $image->getWidth() - 1, 0);
$graphics->setColor(SystemColor->controlDkShadow);
$graphics->drawLine(1, $image->getHeight() - 2, 1, 1);
$graphics->drawLine(1, 1, $image->getWidth() - 2, 1);
$graphics->setColor(SystemColor->controlHighlight);
$graphics->drawLine(1, $image->getHeight() - 1, $image->getWidth() - 1, $image->getHeight() - 1);
$graphics->drawLine($image->getWidth() - 1, $image->getHeight() - 1, $image->getWidth() - 1, 1);
$graphics->setColor(SystemColor->controlLtHighlight);
$graphics->drawLine(0, $image->getHeight(), $image->getWidth(), $image->getHeight());
$graphics->drawLine($image->getWidth(), $image->getHeight(), $image->getWidth(), 0);
$graphics->dispose();
$baos = new Java("java.io.ByteArrayOutputStream");
Java("javax.imageio.ImageIO")->write($image, "PNG", $baos);
$control->getSubstitutePictureFormat()->getPicture()->setImage($pres->getImages()->addImage($baos->toByteArray()));
}
# 修改按钮标题
$control = $pres->getSlides()->get_Item(0)->getControls()->get_Item(1);
if (!java_is_null($control->getName()->equalsIgnoreCase("CommandButton1") && $control->getProperties())) {
$newCaption = "显示消息框";
$control->getProperties()->set_Item("Caption", $newCaption);
# 修改替代
$image = new BufferedImage($control->getFrame()->getWidth(), $control->getFrame()->getHeight(), BufferedImage->TYPE_INT_ARGB);
$graphics = $image->getGraphics();
$graphics->setColor(SystemColor->control);
$graphics->fillRect(0, 0, $image->getWidth(), $image->getHeight());
$font = new Font($control->getProperties()->get_Item("FontName"), Font->PLAIN, 16);
$graphics->setColor(SystemColor->windowText);
$graphics->setFont($font);
$metrics = $graphics->getFontMetrics($font);
$graphics->drawString($newCaption, $image->getWidth() - $metrics->stringWidth($newCaption) / 2, 20);
$graphics->setColor(SystemColor->controlLtHighlight);
$graphics->drawLine(0, $image->getHeight() - 1, 0, 0);
$graphics->drawLine(0, 0, $image->getWidth() - 1, 0);
$graphics->setColor(SystemColor->controlHighlight);
$graphics->drawLine(1, $image->getHeight() - 2, 1, 1);
$graphics->drawLine(1, 1, $image->getWidth() - 2, 1);
$graphics->setColor(SystemColor->controlShadow);
$graphics->drawLine(1, $image->getHeight() - 1, $image->getWidth() - 1, $image->getHeight() - 1);
$graphics->drawLine($image->getWidth() - 1, $image->getHeight() - 1, $image->getWidth() - 1, 1);
$graphics->setColor(SystemColor->controlDkShadow);
$graphics->drawLine(0, $image->getHeight(), $image->getWidth(), $image->getHeight());
$graphics->drawLine($image->getWidth(), $image->getHeight(), $image->getWidth(), 0);
$graphics->dispose();
$baos = new Java("java.io.ByteArrayOutputStream");
Java("javax.imageio.ImageIO")->write($image, "PNG", $baos);
$control->getSubstitutePictureFormat()->getPicture()->setImage($pres->getImages()->addImage($baos->toByteArray()));
}
# 向下移动 100 个点
foreach($pres->getSlides()->get_Item(0)->getControls() as $ctl) {
$frame = $ctl->getFrame();
$ctl->setFrame(new ShapeFrame($frame->getX(), $frame->getY() + 100, $frame->getWidth(), $frame->getHeight(), $frame->getFlipH(), $frame->getFlipV(), $frame->getRotation()));
}
$pres->save("withActiveX-edited_java.pptm", SaveFormat::Pptm);
# 移除控件
$pres->getSlides()->get_Item(0)->getControls()->clear();
$pres->save("withActiveX-cleared_java.pptm", SaveFormat::Pptm);
} catch (JavaException $e) {
} finally {
if (!java_is_null($pres)) {
$pres->dispose();
}
}