3D Презентация
Обзор
С версии Aspose.Slides Java 20.9 появилось возможность создавать 3D в презентациях. PowerPoint 3D — это способ оживить презентации. Покажите реальные объекты в 3D-презентации, продемонстрируйте 3D-модель вашего будущего бизнес-проекта, 3D-модель здания или его интерьера, 3D-модель игрового персонажа, или просто 3D-представление ваших данных.
3D-модели PowerPoint могут быть созданные из 2D-форм, применяя к ним такие эффекты: 3D-вращение, 3D-глубина и экструзия, 3D-градиент, 3D-текст и т.д. Список 3D-функций, применяемых к формам, можно найти в классе ThreeDFormat. Экземпляр класса можно получить с помощью:
- Shape.getThreeDFormat() метода для создания PowerPoint 3D модели.
- TextFrameFormat.getThreeDFormat() метода для создания 3D текста (WordArt).
Все эффекты, реализованные в ThreeDFormat, могут использоваться как для форм, так и для текста. Давайте быстренько рассмотрим основные методы класса ThreeDFormat. В следующем примере мы создаем 2D-форму в виде прямоугольника с текстом на ней. Получив вид камеры на форме, мы меняем ее вращение и делаем так, чтобы она выглядела как 3D-модель. Установка плоского света и его направления вверх от 3D модели придает модели больше объема. Измененные материалы, высота экструзии и цвет делают 3D модель более живой.
Presentation pres = new Presentation();
try {
IAutoShape shape = pres.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.Rectangle, 200, 150, 200, 200);
shape.getTextFrame().setText("3D");
shape.getTextFrame().getParagraphs().get_Item(0).getParagraphFormat().getDefaultPortionFormat().setFontHeight(64);
shape.getThreeDFormat().getCamera().setCameraType(CameraPresetType.OrthographicFront);
shape.getThreeDFormat().getCamera().setRotation(20, 30, 40);
shape.getThreeDFormat().getLightRig().setLightType(LightRigPresetType.Flat);
shape.getThreeDFormat().getLightRig().setDirection(LightingDirection.Top);
shape.getThreeDFormat().setMaterial(MaterialPresetType.Flat);
shape.getThreeDFormat().setExtrusionHeight(100);
shape.getThreeDFormat().getExtrusionColor().setColor(Color.BLUE);
try {
IImage slideImage = pres.getSlides().get_Item(0).getImage(2, 2);
slideImage.save("sample_3d.png", ImageFormat.Png);
} finally {
if (slideImage != null) slideImage.dispose();
}
pres.save("sandbox_3d.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}
Вот результат 3D модели:
3D Вращение
Вращение 3D модели в PowerPoint можно выполнить через меню:
Чтобы вращать 3D модель с помощью Aspose.Slides API, используйте IThreeDFormat.getCamera() метод, задайте вращение камеры относительно 3D формы:
IAutoShape shape = pres.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.Rectangle, 200, 150, 200, 200);
shape.getThreeDFormat().getCamera().setRotation(20, 30, 40);
// ... установите другие параметры 3D-сцены
try {
IImage slideImage = pres.getSlides().get_Item(0).getImage(2, 2);
slideImage.save("sample_3d.png", ImageFormat.Png);
} finally {
if (slideImage != null) slideImage.dispose();
}
3D Глубина и Экструзия
IThreeDFormat.getExtrusionHeight() и IThreeDFormat.getExtrusionColor() методы используются для создания экструзии на форме:
IAutoShape shape = pres.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.Rectangle, 200, 150, 200, 200);
shape.getThreeDFormat().getCamera().setRotation(20, 30, 40);
shape.getThreeDFormat().setExtrusionHeight(100);
shape.getThreeDFormat().getExtrusionColor().setColor(new Color(128, 0, 128));
// ... установите другие параметры 3D-сцены
try {
IImage slideImage = pres.getSlides().get_Item(0).getImage(2, 2);
slideImage.save("sample_3d.png", ImageFormat.Png);
} finally {
if (slideImage != null) slideImage.dispose();
}
В PowerPoint глубина формы задается через:
3D Градиент
3D градиент может придать больше объема 3D форме PowerPoint:
Presentation pres = new Presentation();
try {
IAutoShape shape = pres.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.Rectangle, 200, 150, 250, 250);
shape.getTextFrame().setText("3D");
shape.getTextFrame().getParagraphs().get_Item(0).getParagraphFormat().getDefaultPortionFormat().setFontHeight(64);
shape.getFillFormat().setFillType(FillType.Gradient);
shape.getFillFormat().getGradientFormat().getGradientStops().add(0, Color.BLUE);
shape.getFillFormat().getGradientFormat().getGradientStops().add(100, Color.ORANGE);
shape.getThreeDFormat().getCamera().setCameraType(CameraPresetType.OrthographicFront);
shape.getThreeDFormat().getCamera().setRotation(10, 20, 30);
shape.getThreeDFormat().getLightRig().setLightType(LightRigPresetType.Flat);
shape.getThreeDFormat().getLightRig().setDirection(LightingDirection.Top);
shape.getThreeDFormat().setExtrusionHeight(150);
shape.getThreeDFormat().getExtrusionColor().setColor(new Color(255, 140, 0));
try {
IImage slideImage = pres.getSlides().get_Item(0).getImage(2, 2);
slideImage.save("sample_3d.png", ImageFormat.Png);
} finally {
if (slideImage != null) slideImage.dispose();
}
} finally {
if (pres != null) pres.dispose();
}
Вот как это выглядит:
Вы также можете создать градиент изображения:
shape.getFillFormat().setFillType(FillType.Picture);
try {
IPPImage picture;
IImage image = Images.fromFile("image.png");
try {
picture = pres.getImages().addImage(image);
} finally {
if (image != null) image.dispose();
}
shape.getFillFormat().getPictureFillFormat().getPicture().setImage(picture);
shape.getFillFormat().getPictureFillFormat().setPictureFillMode(PictureFillMode.Stretch);
// .. настройте 3D: shape.ThreeDFormat.Camera, shape.ThreeDFormat.LightRig, shape.ThreeDFormat.Extrusion* свойства
try {
IImage slideImage = pres.getSlides().get_Item(0).getImage(2, 2);
slideImage.save("sample_3d.png", ImageFormat.Png);
} finally {
if (slideImage != null) slideImage.dispose();
}
Вот результат:
3D Текст (WordArt)
Чтобы создать 3D текст (WordArt), сделайте следующее:
Presentation pres = new Presentation();
try {
IAutoShape shape = pres.getSlides().get_Item(0).getShapes().addAutoShape(ShapeType.Rectangle, 200, 150, 200, 200);
shape.getFillFormat().setFillType(FillType.NoFill);
shape.getLineFormat().getFillFormat().setFillType(FillType.NoFill);
shape.getTextFrame().setText("3D Текст");
Portion portion = (Portion)shape.getTextFrame().getParagraphs().get_Item(0).getPortions().get_Item(0);
portion.getPortionFormat().getFillFormat().setFillType(FillType.Pattern);
portion.getPortionFormat().getFillFormat().getPatternFormat().getForeColor().setColor(new Color(255, 140, 0));
portion.getPortionFormat().getFillFormat().getPatternFormat().getBackColor().setColor(Color.WHITE);
portion.getPortionFormat().getFillFormat().getPatternFormat().setPatternStyle(PatternStyle.LargeGrid);
shape.getTextFrame().getParagraphs().get_Item(0).getParagraphFormat().getDefaultPortionFormat().setFontHeight(128);
ITextFrame textFrame = shape.getTextFrame();
// настройка эффекта трансформации WordArt "Арка вверх"
textFrame.getTextFrameFormat().setTransform(TextShapeType.ArchUp);
textFrame.getTextFrameFormat().getThreeDFormat().setExtrusionHeight(3.5f);
textFrame.getTextFrameFormat().getThreeDFormat().setDepth(3);
textFrame.getTextFrameFormat().getThreeDFormat().setMaterial(MaterialPresetType.Plastic);
textFrame.getTextFrameFormat().getThreeDFormat().getLightRig().setDirection(LightingDirection.Top);
textFrame.getTextFrameFormat().getThreeDFormat().getLightRig().setLightType(LightRigPresetType.Balanced);
textFrame.getTextFrameFormat().getThreeDFormat().getLightRig().setRotation(0, 0, 40);
textFrame.getTextFrameFormat().getThreeDFormat().getCamera().setCameraType(CameraPresetType.PerspectiveContrastingRightFacing);
try {
IImage slideImage = pres.getSlides().get_Item(0).getImage(2, 2);
slideImage.save("text3d.png", ImageFormat.Png);
} finally {
if (slideImage != null) slideImage.dispose();
}
pres.save("text3d.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}
Вот результат:
Не поддерживается - Скоро
Следующие функции 3D PowerPoint пока не поддерживаются:
- Фаска
- Материал
- Контур
- Освещение