News & Releases
|
|

Spire.Presentation for Java 3.7.4 supports getting the current theme color set
We're glad to announce the release of Spire.Presentation for Java 3.7.4. This version supports getting the prototype of a shape in the slide layout, and it also supports getting the current theme color set. Besides, some issues that occurred when converting PPT to PDF, getting the raw scheme color of the text are successfully fixed. See the content below for more details.
Here is a list of changes made in this release
| Category | ID | Description |
| New Feature | SPIREPPT-1201 | Supports getting the prototype of a shape in the slide layout.
Shape layoutPrototype = shape.getLayoutPrototype(); |
| New Feature | SPIREPPT-1216 | Supports getting the current theme color set.
StringBuilder sb = new StringBuilder();
IMasterSlide masterSlide = presentation.getMasters().get(0);
for (SchemeColor schemeColor : masterSlide.getColorMap().keySet()) {
masterSlide.getColorMap().get(schemeColor);
String content = "key : " +schemeColor +"\tvalue : "+
masterSlide.getColorMap().get(schemeColor) + "\r\n";
sb.append(content);
}
|
| Bug | SPIREPPT-1201 | Fixes the issues that there were extra line shadows after converting PPT to PDF. |
| Bug | SPIREPPT-1215 | Fixes the issue that the application threw the "ClassCastException" when getting the raw scheme color of the text. |
Click the link to download Spire.Presentation for Java 3.7.4 :