[URGENT] com.aspose.slides.Presentation.save() java.lang.ArrayIndexOutOfBoundsException: 33

@yunpat81,

Can you please share your issue in more details. Also please share source files along with environment details and Aspose.Slides version you are using on your end so that we can further investigate to help you out.

[Conditions]
Aspose Slider Version:com.aspose:aspose-slides:18.1:jdk16
Test Server Operating System: Linux - Centos 7.2
Service Server Operating System: Linux - Centos 6.8
Java Version: Java - 1.8 - 96 ~ 120

This issue is generated on our test server. It worries us that same issue will be made on our service server. However, the issue was not generated on personal Mac OS.
Our development environment for Gradle is as below.

maven { url “http://maven.aspose.com/repository/simple/ext-release-local”}
compile “com.aspose:aspose-slides:18.1:jdk16”

2018-03-22 21:39:05.462 DEBUG 26127 — [io-58080-exec-5] k.k.m.b.R.latestRequestStatics : <== Total: 1
============================= v 33
java.lang.ArrayIndexOutOfBoundsException: 33
at com.aspose.slides.internal.gc.for.do(Unknown Source)
at com.aspose.slides.internal.gc.for.if(Unknown Source)
at com.aspose.slides.internal.ek.public.do(Unknown Source)
at com.aspose.slides.internal.ek.public.do(Unknown Source)
at com.aspose.slides.internal.dc.short.do(Unknown Source)
at com.aspose.slides.cu.do(Unknown Source)
at com.aspose.slides.ah0.if(Unknown Source)
at com.aspose.slides.ah0.do(Unknown Source)
at com.aspose.slides.ah0.do(Unknown Source)
at com.aspose.slides.ah0.do(Unknown Source)
at com.aspose.slides.ah0.do(Unknown Source)
at com.aspose.slides.ah0.do(Unknown Source)
at com.aspose.slides.ah0.do(Unknown Source)
at com.aspose.slides.ah0.do(Unknown Source)
at com.aspose.slides.ah0.do(Unknown Source)
at com.aspose.slides.ah0.(Unknown Source)
at com.aspose.slides.TextFrame.do(Unknown Source)
at com.aspose.slides.Table.do(Unknown Source)
at com.aspose.slides.Table.byte(Unknown Source)
at com.aspose.slides.Shape.native(Unknown Source)
at com.aspose.slides.Transform2DPPTXSerialization.do(Unknown Source)
at com.aspose.slides.ox.if(Unknown Source)
at com.aspose.slides.ox.do(Unknown Source)
at com.aspose.slides.ag0.do(Unknown Source)
at com.aspose.slides.o7.do(Unknown Source)
at com.aspose.slides.o7.do(Unknown Source)
at com.aspose.slides.a7.do(Unknown Source)
at com.aspose.slides.aeg.do(Unknown Source)
at com.aspose.slides.aae.do(Unknown Source)
at com.aspose.slides.aae.do(Unknown Source)
at com.aspose.slides.Presentation.do(Unknown Source)
at com.aspose.slides.Presentation.do(Unknown Source)
at com.aspose.slides.Presentation.save(Unknown Source)
at kr.keywert.module.aspose.SlidersMgr.savePPTX(SlidersMgr.java:492)

Please review the issue in detail.
We are looking forward to hearing from you soon. It has to be applied in our service as soon as possible.

Thank you.

@yunpat81,

I have observed your comments. Can you please share source files so that we can further investigate to help you out. Before sharing source files can you please try to use Aspose.Slides latest version 18.2 on your end.

At first, we applied version 18.2 and the issue continued to occur.
So I lowered the version. Do you mean the version that came up with hot fixes?
And below is a slider-related source. Please confirm.

package kr.keywert.module.aspose;

import com.aspose.slides.*;
import com.aspose.words.ParagraphAlignment;
import kr.keywert.model.aspose.SlidersData;

import java.awt.*;
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.*;
import java.util.List;

import static com.aspose.slides.EffectSubtype.Center;
import static com.aspose.slides.EffectSubtype.Right;

/**

  • Created by Jeongjongeun on 2017. 3. 20
    */
    //Aspose Slider view
    public class SlidersMgr extends BaseMgr {

    Presentation presentation;
    IMasterSlideCollection master;
    ISlide cloneSlider;
    int removeIndexValue;

    String outPath;
    String fileName;
    double headerWidth;
    double headFontSize;
    double contentFontSize;

    HashMap<String, String> inventionCoordinationHashMap;
    HashMap<String, String> bibliographyCoordinationHashMap;
    HashMap<String, String> summaryCoordinationHashMap;
    HashMap<String, String> hyperlinkAndDrawingHashMap;
    HashMap<String, String> columnHashMap;
    HashMap<String, Float> fieldFontSize;

    HashMap<String, String> inventionCoordinationCodeHashMap;
    HashMap<String, String> bibliographyCoordinationCodeHashMap;
    HashMap<String, String> summaryCoordinationCodeHashMap;
    final double[] dblCols = {50, 50, 50};
    final double[] dblRows = {50, 30, 30, 30};

    private String reformatGetColumnName(String columnName) {
    switch (columnName) {
    case “□ 요약”:
    return “□ 요약”;
    case “□ 특허요지”:
    return “□ 특허요지”;
    case “□ 대표도면”:
    return “□ 대표도면”;
    case “□ 검토의견”:
    return “□ 검토의견”;
    }
    return columnName;
    }

    private Color getColumnFontColor(String columnName) {
    switch (columnName) {
    case “□ 요약”:
    case “□ 대표청구항”:
    return Color.WHITE;
    default:
    return Color.BLACK;
    }
    }

    private double getSimpleListCellWidth(String field) {
    if (field == null)
    return 0.0;
    switch (field) {
    case “No.”:
    return 4.7;
    case “_index”:
    case “publishingORG”:
    case “documentType”:
    case “legalState”:
    return 4.9;
    case “documentNumber”:
    case “documentDate”:
    case “applicationNumber”:
    case “applicationDate”:
    case “mainIpc”:
    return 7.9;
    case “priorityClaims.priorityApplicationNumber”:
    return 8.9;
    case “owner”:
    case “inventorInfo.name”:
    case “inventorInfo.name_origin”:
    case “inventorInfo.orgName”:
    case “inventorInfo.nameCN”:
    return 9.9;
    }

     return 0.0;
    

    }

    private int getParagraphAlignment(String field) {
    switch (field) {
    case “No.”:
    case “_index”:
    case “publishingORG”:
    case “priorityClaims.priorityApplicationNumber”:
    case “documentNumber”:
    case “documentDate”:
    case “applicationNumber”:
    case “applicationDate”:
    case “mainIpc”:
    case “owner”:
    case “inventorInfo.name”:
    case “inventorInfo.name_origin”:
    case “inventorInfo.orgName”:
    case “inventorInfo.nameCN”:
    case “legalState”:
    case “documentType”:
    return Center;
    case “inventionTitle”:
    return Right;
    }

     return ParagraphAlignment.CENTER;
    

    }

    public String getFileName() {
    return fileName;
    }

    public void setFileName(String fileName) {
    this.fileName = fileName;
    }

    public String getOutPath() {
    return outPath;
    }

    public void setOutPath(String outPath) {
    this.outPath = outPath;
    }

    public ISlide getCloneSlider() {
    return cloneSlider;
    }

    public void setCloneSlider(ISlide cloneSlider) {
    this.cloneSlider = cloneSlider;
    }

    ITable iTable;

    public ITable getiTable() {
    return iTable;
    }

    public void setiTable(ITable iTable) {
    this.iTable = iTable;
    }

    public void setMaster(IMasterSlideCollection master) {
    this.master = master;
    }

    public double getHeaderWidth() {
    return headerWidth;
    }

    public void setHeaderWidth(double headerWidth) {
    this.headerWidth = headerWidth;
    }

    public double getContentWidth() {
    return contentWidth;
    }

    public void setContentWidth(double contentWidth) {
    this.contentWidth = contentWidth;
    }

    double contentWidth;

    public IMasterSlideCollection getMaster() {
    return master;
    }

    public Presentation getPresentation() {
    return presentation;
    }

    public void setPresentation(Presentation presentation) {
    this.presentation = presentation;
    }

    public double getHeadFontSize() {
    return headFontSize;
    }

    public void setHeadFontSize(double headFontSize) {
    this.headFontSize = headFontSize;
    }

    public double getContentFontSize() {
    return contentFontSize;
    }

    public void setContentFontSize(double contentFontSize) {
    this.contentFontSize = contentFontSize;
    }

    public SlidersMgr(int removeIndex) {
    try {
    com.aspose.slides.License license = new com.aspose.slides.License();
    license.setLicense(System.getProperty(“user.dir”) + “/src/main/resources/aspose/Aspose.Total.Java.lic”);
    if (license.isLicensed()) {
    System.out.println(“License is Set!”);
    }

         removeIndexValue = removeIndex;
         String clonePath = System.getProperty("user.dir") + "/src/main/resources/template/master.pptx";
         this.setCloneSlider(clonePath, removeIndex);
         setCoordination(removeIndex);
    
    
     } catch (Exception e) {
         e.printStackTrace();
     }
    

    }

    private void pushData(HashMap<String, Float> map, String field, Float value) {
    map.put(field, value);
    }

    private void pushData(HashMap<String, String> map, String field, String value) {
    map.put(field, value);
    }

    private void setHashMapData(String[] field) {
    this.pushData(fieldFontSize, field[1], Float.valueOf(field[3]));
    switch (field[2]) {
    case “title”:
    this.pushData(inventionCoordinationHashMap, field[1], field[0]);
    break;
    case “bibliography”:
    this.pushData(bibliographyCoordinationHashMap, field[1], field[0]);
    break;
    case “summary”:
    this.pushData(summaryCoordinationHashMap, field[1], field[0]);
    break;
    case “hyperlinkAndDrawing”:
    this.pushData(hyperlinkAndDrawingHashMap, field[1], field[0]);
    break;
    case “column”:
    this.pushData(columnHashMap, field[1], field[0]);
    break;
    }

    }

    public void setCoordination(int removeIndex) {
    inventionCoordinationHashMap = new HashMap<String, String>();
    bibliographyCoordinationHashMap = new HashMap<String, String>();
    summaryCoordinationHashMap = new HashMap<String, String>();
    hyperlinkAndDrawingHashMap = new HashMap<String, String>();
    columnHashMap = new HashMap<String, String>();
    fieldFontSize = new HashMap<String, Float>();

     String txtPath = System.getProperty("user.dir") + "/src/main/resources/template/columncoordination.txt";
     HashMap<String, String> cofirmHashmap = new HashMap<String, String>();
     StringBuffer key = new StringBuffer();
     String line;
     BufferedReader br = null;
    
     try {
         br = new BufferedReader(new InputStreamReader(new FileInputStream(txtPath), "utf-8"));
         int i = 0;
         while ((line = br.readLine()) != null) {
             if (i == 0) {
                 i++;
                 continue;
             }
             String[] field = line.split(",");
             if (field.length == 4)
                 this.setHashMapData(field);
         }
     } catch (FileNotFoundException c) {
         c.printStackTrace();
     } catch (IOException e) {
         e.printStackTrace();
     } finally {
         if (br != null) {
             try {
                 br.close();
             } catch (IOException e) {
                 e.printStackTrace();
             }
         }
    
     }
    

    }

    public void setCloneSlider(String path, int removeIndex) throws Exception {
    // load SomeFont from file into the byte array
    try {
    Path fontPath = Paths.get(System.getProperty(“user.dir”) + “/src/main/resources/font/malgun.ttf”);
    byte[] fontData = Files.readAllBytes(fontPath);
    // load font represented as byte array
    FontsLoader.loadExternalFont(fontData);
    } catch (IOException e) {
    e.printStackTrace();
    }
    this.setPresentation(new Presentation(path));
    this.getPresentation().getSlides().removeAt(removeIndex);
    this.setCloneSlider(this.getPresentation().getSlides().get_Item(0));
    }

    //데이터 삽입
    public void createSliderMgr(SlidersData slidersDatas, String outPath, List orderFields) {
    this.setOutPath(outPath);
    this.createSlide(slidersDatas.getInventionTitleData().size(), this.getCloneSlider());
    this.getPresentation().getSlides().removeAt(0);

     for (int i = 0; i < slidersDatas.getInventionTitleData().size(); i++) {
         try {
             ISlide iSlide = (ISlide) this.getPresentation().getSlides().get_Item(i);
             ITable tbl = null;
             IShape shp = null;
             shp = iSlide.getShapes().get_Item(0);
             if (shp instanceof ITable)
                 tbl = (ITable) shp;
             this.SetNoData(tbl, this.getCoordination(this.inventionCoordinationHashMap.get("No").toString()), String.valueOf(i + 1), this.fieldFontSize.get("No"));
             this.setInventionTitleData(tbl, this.getCoordination(this.inventionCoordinationHashMap.get("inventionTitle").toString()), slidersDatas.getInventionTitleData().get(i), this.fieldFontSize.get("inventionTitle"));
             this.setBibliographySummaryData(tbl, this.bibliographyCoordinationHashMap, slidersDatas.getBibliographyData().get(i), Color.BLACK);
             this.setBibliographySummaryData(tbl, this.summaryCoordinationHashMap, slidersDatas.getSummaryData().get(i), Color.BLACK);
             this.setColumnData(tbl, this.columnHashMap, slidersDatas.getSummaryData().get(i), Color.BLACK);
             this.setHyeprLinkAndDrawings(tbl, this.hyperlinkAndDrawingHashMap, slidersDatas.getSummaryData().get(i), Color.BLACK);
         } catch (Exception e) {
             System.out.println("-------------------- i " + i);
             e.printStackTrace();
         }
     }
    
     try {
         this.savePPTX();
     } catch (Exception e) {
         System.out.println("============================= v " + e.getMessage());
         e.printStackTrace();
     }
    

    }

    //데이터 수 만큼 슬라이드만들기()
    public void createSlide(int count, ISlide sld) {
    for (int i = 0; i < count; i++)
    this.getPresentation().getSlides().addClone(sld);
    }

    //기본 템플릿 지우기
    private void removeTemplate(int count) {
    for (int i = 0; i < count; i++)
    this.getPresentation().getSlides().removeAt(0);
    }

    private void setInventionTitleData(ITable tbl, String[] coordination, String inventionTitleData, Float fontSize) {
    this.setText(tbl, Integer.valueOf(coordination[0]), Integer.valueOf(coordination[1]), inventionTitleData, fontSize, Color.WHITE, NullableBool.True);
    }

    private void SetNoData(ITable tbl, String[] coordination, String no, Float fontSize) {
    this.setText(tbl, Integer.valueOf(coordination[0]), Integer.valueOf(coordination[1]), no, fontSize, Color.BLACK, NullableBool.True);
    }

    //column-row
    private String[] getCoordination(String key) {
    return key.split("-");
    }

    private void setBibliographySummaryData(ITable tbl, HashMap<String, String> coordinationHashMap, HashMap<String, String> dataString, Color fontcolor) {
    Set<Map.Entry<String, String>> entry = coordinationHashMap.entrySet();
    Iterator<Map.Entry<String, String>> it = entry.iterator();
    while (it.hasNext()) {
    Map.Entry<String, String> e = (Map.Entry<String, String>) it.next();
    String[] coordination = this.getCoordination(e.getValue());
    this.setText(tbl, Integer.valueOf(coordination[0]), Integer.valueOf(coordination[1]), dataString.get(e.getKey()), this.fieldFontSize.get(e.getKey()), fontcolor, NullableBool.False);
    }
    }

    private void setColumnData(ITable tbl, HashMap<String, String> coordinationHashMap, HashMap<String, String> dataString, Color fontcolor) {
    //검토의견 미선택
    if (removeIndexValue == 0)
    coordinationHashMap.remove(“□ 검토의견”);

     Set<Map.Entry<String, String>> entry = coordinationHashMap.entrySet();
     Iterator<Map.Entry<String, String>> it = entry.iterator();
     while (it.hasNext()) {
         Map.Entry<String, String> e = (Map.Entry<String, String>) it.next();
         String[] coordination = this.getCoordination(e.getValue());
         fontcolor = this.getColumnFontColor(e.getKey());//컬럼마다 폰트 색깔이 다르다.
         this.setText(tbl, Integer.valueOf(coordination[0]), Integer.valueOf(coordination[1]), this.reformatGetColumnName(e.getKey()), this.fieldFontSize.get(e.getKey()), fontcolor, NullableBool.True);
     }
    

    }

    private void setText(ITable tbl, int column, int row, String text, float fontsize, Color fontcolor, byte fontBold) {
    if (text == null) {
    text = “-”;
    }
    tbl.get_Item(column, row).getTextFrame().setText(text);
    IPortionFormat portionFormat = tbl.get_Item(column, row).getTextFrame().getParagraphs().get_Item(0).getPortions().get_Item(0).getPortionFormat();
    portionFormat.setFontHeight(fontsize);
    portionFormat.setFontBold(fontBold);
    IFillFormat format = portionFormat.getFillFormat();
    format.getSolidFillColor().setColor(fontcolor);
    format.setFillType(FillType.Solid);

    }

    private void setHyperLinK(ITable tbl, int column, int row, String linkPath) {

     ITextFrame iTextFrame = tbl.get_Item(column, row).getTextFrame();
     IHyperlinkManager iHyperlinkManager = iTextFrame.getParagraphs().get_Item(0).getPortions().get_Item(0).getPortionFormat().getHyperlinkManager();
     iHyperlinkManager.setExternalHyperlinkClick(linkPath);
    

    }

    public void setHyeprLinkAndDrawings(ITable tbl, HashMap<String, String> coordinationHashMap, HashMap<String, String> dataString, Color fontcolor) {

     Set<Map.Entry<String, String>> entry = coordinationHashMap.entrySet();
     Iterator<Map.Entry<String, String>> it = entry.iterator();
     while (it.hasNext()) {
         Map.Entry<String, String> e = (Map.Entry<String, String>) it.next();
         String[] coordination = this.getCoordination(e.getValue());
         String strValue = "";
    
         if (dataString.get(e.getKey()) == null)
             strValue = "-";
         else
             strValue = dataString.get(e.getKey());
    
         switch (e.getKey().toString()) {
             case "drawings": {
                 if (!strValue.equals("-")) {
                     this.insertImage(tbl, Integer.valueOf(coordination[0]), Integer.valueOf(coordination[1]), strValue);
                 } else
                     this.setText(tbl, Integer.valueOf(coordination[0]), Integer.valueOf(coordination[1]), "없음", 9.F, fontcolor, NullableBool.False);
             }
             break;
             case "link": {
                 if (!strValue.equals("-"))
                     this.setHyperLinK(tbl, Integer.valueOf(coordination[0]), Integer.valueOf(coordination[1]), strValue);
             }
             break;
         }
     }
    

    }

    //테이블 이미지 삽입
    private void insertImage(ITable tbl, int column, int row, String imagePath) {

     String dirPath = "/fileservers";
     imagePath = dirPath + imagePath;
     if (this.fileCheck(imagePath)) {
         //imagePath = this.AdjustPath(imagePath);
         IPPImage imgx = null;
         try {
             imgx = this.getPresentation().getImages().addImage(new FileInputStream(new File(imagePath)));
             if (imgx != null) {
                 //Create an IPPImage object using the bitmap object
                 IPPImage imgx1 = this.getPresentation().getImages().addImage(imgx);
                 //Add image to first table cell
                 tbl.get_Item(row, column).getFillFormat().setFillType(FillType.Picture);
                 tbl.get_Item(row, column).getFillFormat().getPictureFillFormat().setPictureFillMode(PictureFillMode.Stretch);
                 tbl.get_Item(row, column).getFillFormat().getPictureFillFormat().getPicture().setImage(imgx);
             }
    
         } catch (IOException e) {
             e.printStackTrace();
         }
     }
    

    }

    //Save PPTX
    private void savePPTX() {
    this.getPresentation().save(this.getOutPath().toString(), SaveFormat.Pptx);
    }
    }

@yunpat81,

As requested earlier can you please provide source presentation used on your end. Secondly, if possible can you please provide the java Net Beans or Eclipse application with all dependencies resolved in it rather than pasting whole code in post. I will really appreciate your cooperation in this regard.

1. Version tested with both 18.2.1 latest date and 18.2. But the error is the same as below.

java.lang.ArrayIndexOutOfBoundsException: 34
at com.aspose.slides.internal.ge.for.do (Unknown Source)
at com.aspose.slides.internal.ge.for.if (Unknown Source)
at com.aspose.slides.internal.em.public.do (Unknown Source)
at com.aspose.slides.internal.em.public.do (Unknown Source)
at com.aspose.slides.internal.dc.short.do (Unknown Source)
at com.aspose.slides.cr.do (Unknown Source)
at com.aspose.slides.aic.do (Unknown Source)
at com.aspose.slides.aic.if (Unknown Source)
at com.aspose.slides.aic.do (Unknown Source)
at com.aspose.slides.aic.do (Unknown Source)
at com.aspose.slides.aic.do (Unknown Source)
at com.aspose.slides.aic.do (Unknown Source)
at com.aspose.slides.aic.do (Unknown Source)
at com.aspose.slides.aic.do (Unknown Source)
at com.aspose.slides.aic.do (Unknown Source)
at com.aspose.slides.aic.do (Unknown Source)
at com.aspose.slides.aic. (Unknown Source)
at com.aspose.slides.TextFrame.do (Unknown Source)
at com.aspose.slides.Table.do (Unknown Source)
at com.aspose.slides.Table.byte (Unknown Source)
at com.aspose.slides.Shape.native (Unknown Source)
at com.aspose.slides.Transform2DPPTXSerialization.do (Unknown Source)
at com.aspose.slides.ot.if (Unknown Source)
at com.aspose.slides.ot.do (Unknown Source)
at com.aspose.slides.ahc.do (Unknown Source)
at com.aspose.slides.o3.do (Unknown Source)
at com.aspose.slides.o3.do (Unknown Source)
at com.aspose.slides.a5.do (Unknown Source)
at com.aspose.slides.aej.do (Unknown Source)
at com.aspose.slides.aai.do (Unknown Source)
at com.aspose.slides.aai.do (Unknown Source)
at com.aspose.slides.Presentation.do (Unknown Source)
at com.aspose.slides.Presentation.do (Unknown Source)
at com.aspose.slides.Presentation.save (Unknown Source)

2.The issue does not occur when testing in the development environment. It is happening when testing service on web server. So we will send the relevant versions to the web server. And we are using Gradle instead of Eclipse. Related content is attached below.
Please check if there is any part of the development environment that needs to be modified on the web server.

[Test server environment]

javac -version

javac 1.8.0_91

java -version

openjdk version “1.8.0_102”

Embedded tomcat

Linux - Centos 6.8 to 7.2

[Graldle setting]

repositories {
// NOTE: You should declare only repositories that you need here
mavenLocal ()
mavenCentral ()
maven {url “http://repo.spring.io/release”}
maven {url “http://repo.spring.io/milestone”}
maven {url “http://repo.spring.io/snapshot”}
// maven {url “http://maven.aspose.com/artifactory/simple/ext-release-local”}
maven {url “http://maven.aspose.com/repository/simple/ext-release-local”}
}

dependencies {
configurations {
insecure.exclude module: ‘spring-boot-starter-security’
}

// import translate
compile fileTree (dir: 'libs', include: ['* .jar'])

// aspose
compile "com.aspose: aspose-words: 18.1: jdk16"
compile "com.aspose: aspose-cells: 18.1"
compile "com.aspose: aspose-slides: 18.2.1: jdk16"

// SPRING-BOOT
compile "org.springframework.boot: spring-boot-starter-web"
compile "org.springframework.boot: spring-boot-starter-security"
compile "org.springframework.boot: spring-boot-starter-jdbc"
compile "org.springframework.boot: spring-boot-autoconfigure"
compile "org.springframework.boot: spring-boot-starter-thymeleaf"
compile "org.springframework.boot: spring-boot-starter-aop"

// REDIS
compile "org.springframework.boot: spring-boot-starter-data-redis"

// REDIS CLIENT
compile "redis.clients: jedis: $ {redis_jedis_version}"

// SESSION
compile group: 'org.springframework.session', name: 'spring-session', version: '1.3.1.RELEASE'

@yunpat81,

As requested earlier, please provide the following information.

Upload the generated PPT file and the failed PPT file.pptfile.zip (137.9 KB)

As requested earlier can you please provide source presentation used on your end. => Upload the generated PPT file and the failed PPT filepptfile.zip (137.9 KB)

Secondly, if possible can you please provide the java Net Beans or Eclipse application with all dependencies resolved in it rather than pasting whole code in post. I will really appreciate your cooperation in this regard. => The issue does not occur when testing in the development environment. It is happening when testing service on web server. So we will send the relevant versions to the web server. And we are using Gradle instead of Eclipse. Related content is attached below.

Please check if there is any part of the development environment that needs to be modified on the web server.

[Test server environment]

javac -version

javac 1.8.0_91

java -version

openjdk version “1.8.0_102”

Embedded tomcat

Linux - Centos 6.8 to 7.2

[Graldle setting]

repositories {
// NOTE: You should declare only repositories that you need here
mavenLocal ()
mavenCentral ()
maven {url “http://repo.spring.io/release”}
maven {url “http://repo.spring.io/milestone”}
maven {url “http://repo.spring.io/snapshot”}
// maven {url “http://maven.aspose.com/artifactory/simple/ext-release-local”}
maven {url “http://maven.aspose.com/repository/simple/ext-release-local”}
}

dependencies {
configurations {
insecure.exclude module: ‘spring-boot-starter-security’
}

// import translate
compile fileTree (dir: ‘libs’, include: [’* .jar’])

// aspose
compile “com.aspose: aspose-words: 18.1: jdk16”
compile “com.aspose: aspose-cells: 18.1”
compile “com.aspose: aspose-slides: 18.2.1: jdk16”

// SPRING-BOOT
compile “org.springframework.boot: spring-boot-starter-web”
compile “org.springframework.boot: spring-boot-starter-security”
compile “org.springframework.boot: spring-boot-starter-jdbc”
compile “org.springframework.boot: spring-boot-autoconfigure”
compile “org.springframework.boot: spring-boot-starter-thymeleaf”
compile “org.springframework.boot: spring-boot-starter-aop”

// REDIS
compile “org.springframework.boot: spring-boot-starter-data-redis”

// REDIS CLIENT
compile “redis.clients: jedis: $ {redis_jedis_version}”

// SESSION
compile group: ‘org.springframework.session’, name: ‘spring-session’, version: ‘1.3.1.RELEASE’

@mudassir.fayyaz,

I have observed the information provided and an issue with ID SLIDESJAVA-36977 has been created in our issue tracking system to further investigate and resolve the issue. This thread has been linked with the issue so that you may be automatically notified once the issue will be fixed

Thank you for your response. How long does it take?
We have to apply our services with the issue as soon as possible. So, it is very important for you to fix the issue.

Appreciate your help.

@yunpat81,

I have observed your comments. We are investigating issue and will share details regarding ETA by the end of this week. I request for your patience.

Thank you.
Can I get the solutions to resolve this issue today?
I think it is very critical issue to be required to fix quickly.

Appreciate your help.

@yunpat81,

We have carried out the investigation of the issue and could not reproduce this problem (in current state of code) because you have not provided the content (text, images, fonts and etc) used. Can you please provide a complete sample project with all required information to reproduce this issue so that we may help you further.

We found the cause for the issue. Chinese text is a problem.
I would like to attach the relevant source and identify and answer the problem as soon as possible.
javac -version

javac 1.8.0_91

java -version

openjdk version “1.8.0_102”

Linux - Centos 7.2

compile “com.aspose:aspose-slides:18.2.1:jdk16”

Application.java.zip (986 Bytes)master.pptx.zip (33.3 KB)

@yunpat81,

I have observed your comments. We will share good news with you soon.

@yunpat81,

I like to inform that we have investigated issue in details. We tried to reproduce this issue on CentOS 6.8 (with\without GUI) and 7.2 (with\without GUI), but the code works on all these operating systems without problems. We are assuming that this problem is related to a combination of installed fonts on the your PC. Can you please share with us the list of installed fonts.

Share the font list of the system that is experiencing the problem

Attachment
Based on this data, I extracted both pptx and word xlsx files. However, only the pptx file is causing problems. And we do not have this problem on newly installed servers.

[jejeong@test7080 ~]$ fc-list
/usr/share/fonts/Mshtakan.ttc: Mshtakan:style=BoldOblique,粗斜型體,Fed skrå,Fett, Kursiv,Puolilihava kallistettu,Gras oblique,Grassetto obliquo,ボールド・オブリーク,볼드기울임체,VetSchuin,Fet skråstilt,Negrito Oblíquo,Жирный наклоненный,Fet snedställd,粗斜体,Negrita oblicua
/usr/share/fonts/Seravek.ttc: Seravek:style=Regular
/usr/share/fonts/Trattatello.ttf: Trattatello:style=Regular
/usr/share/fonts/STIXGeneralBolIta.otf: STIXGeneral:style=Bold Italic
/usr/share/fonts/Papyrus.ttc: Papyrus:style=Condensed,壓縮體,Smal,Schmal,Kavennettu,Condensé,Condensato,コンデンス,자간 축소,Gecomprimeerd,Fortettet,Condensado,Узкий,紧缩体,Condensada
/usr/share/fonts/Raanana.ttc: Raanana:style=Negreta,粗體,Bold,Fed,Fett,Έντονα,Lihava,Gras,עבה,Félkövér,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Aldin,Жирный,Podebljani,หนา,Kalın,Tebal,Жирний,Đậm,बोल्ड,粗体,عريض,Negrita
/usr/share/fonts/PTSans.ttc: PT Sans Narrow:style=Regular
/usr/share/fonts/Arial Narrow Italic.ttf: Arial Narrow:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/usr/share/fonts/PTMono.ttc: PT Mono:style=Bold
/usr/share/fonts/Hoefler Text.ttc: Hoefler Text:style=Black,黑體,Sort,Sehr fett,Lihava,Noir,Nero,ブラック,두껍게,Zwart,Svart,Preto,Насыщенный жирный,Extrafet,黑体,Negra
/usr/share/fonts/ITFDevanagari.ttc: ITF Devanagari,आई॰टी॰एफ़॰ देवनागरी:style=Bold,बोल्ड
/usr/share/fonts/Times New Roman.ttf: Times New Roman:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta
/usr/share/fonts/STIXIntUpSmReg.otf: STIXIntegralsUpSm:style=Regular
/usr/share/fonts/Wingdings 2.ttf: Wingdings 2:style=Regular,normal,Standard,Normaali,Normale,Standaard
/usr/share/fonts/DevanagariMT.ttc: Devanagari MT,देवनागरी एम॰टी॰:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,सामान्य,常规体
/usr/share/fonts/Muna.ttc: .Muna PUA:style=Regular
/usr/share/fonts/Sana.ttc: .Sana PUA:style=Regular
/usr/share/fonts/Times New Roman Bold.ttf: Times New Roman:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiona,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia
/usr/share/fonts/Zapfino.ttf: Zapfino:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/GillSans.ttc: Gill Sans:style=Italic,斜體,Kursiv,Kursiivi,Italique,Corsivo,イタリック,이탤릭체,Cursief,Itálico,Курсивный,斜体,Cursiva
/usr/share/fonts/Futura.ttc: Futura:style=Medium Italic,中斜體,Medium kursiv,Halbfett, Kursiv,Medium kursiivi,Moyen italique,Medio corsivo,ミディアム・イタリック,중간 이탤릭체,Gemiddeld Cursief,Itálico Médio,Средний курсивный,Medel kursiv,中等斜体,Mediana cursiva
/usr/share/fonts/Damascus.ttc: .Damascus PUA:style=Regular
/usr/share/fonts/STIXIntDBol.otf: STIXIntegralsD:style=Bold
/usr/share/fonts/AmericanTypewriter.ttc: American Typewriter:style=Semibold
/usr/share/fonts/TeamViewer12.otf: TeamViewer12:style=Medium
/usr/share/fonts/Skia.ttf: Skia:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Wingdings 3.ttf: Wingdings 3:style=Regular,normal,Standard,Normaali,Normale,Standaard
/usr/share/fonts/BigCaslon.ttf: Big Caslon:style=中黑,Medium,Halbfett,Normaali,Moyen,Medio,ミディアム,중간체,Médio,Средний,Normal,中等,Media
/usr/share/fonts/Futura.ttc: Futura:style=中黑,Medium,Halbfett,Moyen,Medio,ミディアム,중간체,Médio,Средний,Medel,中等,Media
/usr/share/fonts/Mshtakan.ttc: Mshtakan:style=Oblique,斜型體,Skrå,Kursiv,Kallistettu,Obliquo,オブリーク,기울임체,Schuin,Skråstilt,Oblíquo,Наклоненный,Snedställd,斜体,Oblicua
/usr/share/fonts/Futura.ttc: Futura:style=Condensed ExtraBold,窄加黑體,Smal ekstra fed,Schmal, Extrafett,Kavennettu lihava,Condensé extragras,Condensato,コンデンス・エクストラボールド,자간 축소 견출체,Gecomprimeerd ExtraVet,Fortettet ekstra fet,Condensado,Узкий сверхжирный,Smal extrafet,壓縮加黑體,Condensada extranegrita
/usr/share/fonts/Brush Script.ttf: Brush Script MT:style=Italic,kursiv,Cursiva,Kursivoitu,Italique,Corsivo,Cursief,Itálico
/usr/share/fonts/Luminari.ttf: Luminari:style=Regular
/usr/share/fonts/Andale Mono.ttf: Andale Mono:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/Myanmar Sangam MN.ttc: Myanmar Sangam MN:style=Bold
/usr/share/fonts/TeamViewer13.otf: TeamViewer13:style=Medium
/usr/share/fonts/GillSans.ttc: Gill Sans:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Iowan Old Style.ttc: Iowan Old Style:style=Bold Italic
/usr/share/fonts/PTSerif.ttc: PT Serif:style=Bold
/usr/share/fonts/STIXNonUniIta.otf: STIXNonUnicode:style=Italic
/usr/share/fonts/GillSans.ttc: Gill Sans:style=Light,細體,Mager,Fein,Ohut,Fin,Leggero,ライト,가는체,Licht,Tynn,Leve,Светлый,细体,Fina
/usr/share/fonts/lyx/eufm10.ttf: eufm10:style=LyX
/usr/share/fonts/Waseem.ttc: وسيم,Waseem:style=فاتح,Light
/usr/share/fonts/Futura.ttc: Futura:style=Condensed Medium,壓縮中體,Smal medium,Schmal, Halbfett,Kavennettu voimakas,Condensé moyen,Condensato medio,コンデンス・ミディアム,자간 축소 중간체,Gecomprimeerd Gemiddeld,Fortettet medium,Condensado,Узкий средний,紧缩中等体,Condensada mediana
/usr/share/fonts/DIN Alternate Bold.ttf: DIN Alternate:style=Bold
/usr/share/fonts/Futura.ttc: Futura:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,عريض,Negrita
/usr/share/fonts/DIN Condensed Bold.ttf: DIN Condensed:style=Bold
/usr/share/fonts/Seravek.ttc: Seravek:style=Bold
/usr/share/fonts/Lao MN.ttc: Lao MN:style=Bold
/usr/share/fonts/SukhumvitSet.ttc: Sukhumvit Set:style=Bold
/usr/share/fonts/lyx/cmsy10.ttf: cmsy10:style=LyX
/usr/share/fonts/Arial Narrow Bold Italic.ttf: Arial Narrow:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/fonts/Oriya Sangam MN.ttc: Oriya Sangam MN:style=Regular
/usr/share/fonts/lyx/msam10.ttf: msam10:style=LyX
/usr/share/fonts/Comic Sans MS.ttf: Comic Sans MS:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/Shree714.ttc: Shree Devanagari 714,श्री देवनागरी ७१४:style=Regular,सामान्य
/usr/share/fonts/Telugu MN.ttc: Telugu MN:style=Bold
/usr/share/fonts/STIXIntDReg.otf: STIXIntegralsD:style=Regular
/usr/share/fonts/Telugu Sangam MN.ttc: Telugu Sangam MN:style=Regular
/usr/share/fonts/Tamil MN.ttc: Tamil MN:style=Regular
/usr/share/fonts/Cochin.ttc: Cochin:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Hoefler Text.ttc: Hoefler Text:style=Black Italic,黑斜體,Sort kursiv,Sehr fett, Kursiv,Lihava kursiivi,Noir italique,Nero corsivo,ブラック・イタリック,두꺼운 이탤릭체,Zwart Cursief,Svart kursiv,Itálico Preto,Жирный курсивный,Extrafet kursiv,黑斜体,Negra cursiva
/usr/share/fonts/SuperClarendon.ttc: Superclarendon:style=Italic
/usr/share/fonts/ChalkboardSE.ttc: Chalkboard SE:style=Bold
/usr/share/fonts/Songti.ttc: Songti SC,宋體-簡,宋体-简:style=Light,細體,细体
/usr/share/fonts/STIXGeneralBol.otf: STIXGeneral:style=Bold
/usr/share/fonts/Damascus.ttc: دمشق:style=عادي
/usr/share/fonts/AmericanTypewriter.ttc: American Typewriter:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,Negrita
/usr/share/fonts/Arial Italic.ttf: Arial:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana
/usr/share/fonts/Khmer MN.ttc: Khmer MN:style=Regular
/usr/share/fonts/Baskerville.ttc: Baskerville:style=SemiBold
/usr/share/fonts/Farah.ttc: فرح,Farah:style=عادي,Regular
/usr/share/fonts/Arial Narrow Bold.ttf: Arial Narrow:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/PTSans.ttc: PT Sans:style=Regular
/usr/share/fonts/Copperplate.ttc: Copperplate:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,Negrita
/usr/share/fonts/Phosphate.ttc: Phosphate:style=Solid
/usr/share/fonts/STIXSizFiveSymReg.otf: STIXSizeFiveSym:style=Regular
/usr/share/fonts/Seravek.ttc: Seravek,Seravek Medium:style=Medium,Regular
/usr/share/fonts/Oriya MN.ttc: Oriya MN:style=Regular
/usr/share/fonts/Verdana Bold.ttf: Verdana:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/STIXIntSmReg.otf: STIXIntegralsSm:style=Regular
/usr/share/fonts/Courier New Italic.ttf: Courier New:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana
/usr/share/fonts/PTSerifCaption.ttc: PT Serif Caption:style=Regular
/usr/share/fonts/Iowan Old Style.ttc: Iowan Old Style:style=Titling
/usr/share/fonts/Marion.ttc: Marion:style=Italic
/usr/share/fonts/Songti.ttc: STSong:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Cochin.ttc: Cochin:style=Bold Italic,粗斜體,Fed kursiv,Fett, Kursiv,Puolilihava kursiivi,Gras italique,Grassetto corsivo,ボールドイタリック,볼드이탤릭체,VetCursief,Fet kursiv,Negrito Itálico,Жирный курсивный,粗斜体,Negrita cursiva
/usr/share/fonts/Devanagari Sangam MN.ttc: Devanagari Sangam MN,देवनागरी संगम एम॰एन॰:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,सामान्य,常规体
/usr/share/fonts/Beirut.ttc: بيروت,Beirut:style=عادي,Regular
/usr/share/fonts/Hoefler Text Ornaments.ttf: Hoefler Text:style=Ornaments,修飾體,Ornamenter,Ornamente,Koristeet,Ornements,Ornamenti,オーナメント,그림자 문자 장식,Ornamenten,Ornamentos,Орнаменты,Ornament,修饰体
/usr/share/fonts/Songti.ttc: Songti TC,宋體-繁,宋体-繁:style=Light,細體,细体
/usr/share/fonts/Malayalam Sangam MN.ttc: Malayalam Sangam MN:style=Bold
/usr/share/fonts/lyx/cmmi10.ttf: cmmi10:style=LyX
/usr/share/fonts/Impact.ttf: Impact:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/Diwan Thuluth.ttf: ديوان ثلث,Diwan Thuluth:style=عادي,Regular
/usr/share/fonts/Nadeem.ttc: نديم:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体,عادي
/usr/share/fonts/Charter.ttc: Charter:style=Roman
/usr/share/fonts/GillSans.ttc: Gill Sans:style=Bold Italic,粗斜體,Fed kursiv,Fett, Kursiv,Puolilihava kursiivi,Gras italique,Grassetto corsivo,ボールド・イタリック,볼드 이탤릭체,Vet Cursief,Fet kursiv,Negrito Itálico,Жирный курсивный,粗斜体,Negrita cursiva
/usr/share/fonts/Mishafi.ttf: مِصحفي,Mishafi:style=عادي,Regular
/usr/share/fonts/Muna.ttc: .Muna PUA:style=Black
/usr/share/fonts/Courier New Bold Italic.ttf: Courier New:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/fonts/Hoefler Text.ttc: Hoefler Text:style=Italic,斜體,Kursiv,Kursiivi,Italique,Corsivo,イタリック,이탤릭체,Cursief,Itálico,Курсивный,斜体,Cursiva
/usr/share/fonts/Baskerville.ttc: Baskerville:style=Bold Italic
/usr/share/fonts/Ayuthaya.ttf: Ayuthaya:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/SukhumvitSet.ttc: Sukhumvit Set:style=Text
/usr/share/fonts/AmericanTypewriter.ttc: American Typewriter:style=Light,細體,Mager,Fein,Ohut,Fin,Leggero,ライト,가는체,Licht,Tynn,Leve,Светлый,细体,Fina
/usr/share/fonts/Kefa.ttc: Kefa:style=Regular
/usr/share/fonts/Sathu.ttf: Sathu:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/STIXIntUpDBol.otf: STIXIntegralsUpD:style=Bold
/usr/share/fonts/Khmer Sangam MN.ttf: Khmer Sangam MN:style=Regular
/usr/share/X11/fonts/Type1/c0611bt_.pfb: Courier 10 Pitch:style=Bold Italic
/usr/share/fonts/Iowan Old Style.ttc: Iowan Old Style:style=Bold
/usr/share/fonts/Muna.ttc: منى,Muna:style=أسود,Black
/usr/share/fonts/Kannada Sangam MN.ttc: Kannada Sangam MN:style=Bold
/usr/share/fonts/Apple Chancery.ttf: Apple Chancery:style=筆寫斜體,Chancery,공문서체,Kalligrafisk,Tribunal,Kansliskrift,档案体,Cancillería
/usr/share/fonts/Krungthep.ttf: Krungthep:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Telugu Sangam MN.ttc: Telugu Sangam MN:style=Bold
/usr/share/fonts/STIXIntUpBol.otf: STIXIntegralsUp:style=Bold
/usr/share/fonts/STIXSizOneSymReg.otf: STIXSizeOneSym:style=Regular
/usr/share/fonts/NewPeninimMT.ttc: New Peninim MT:style=Bold Inclined,粗傾斜體,Fed hældende,Fett, Kursiv,Puolilihava kallistettu,Gras incliné,Grassetto inclinato,ボールド・インクライン,볼드 경사체,Vet Hellend,Fet skrånet,Negrito Inclinado,Жирный наклонный,Fet lutande,粗斜体,Negrita inclinada
/usr/share/fonts/PTSans.ttc: PT Sans:style=Bold Italic
/usr/share/fonts/Gujarati Sangam MN.ttc: Gujarati Sangam MN:style=Bold
/usr/share/fonts/Oriya Sangam MN.ttc: Oriya Sangam MN:style=Bold
/usr/share/fonts/Trebuchet MS Italic.ttf: Trebuchet MS:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/usr/share/X11/fonts/Type1/UTBI____.pfa: Utopia:style=Bold Italic
/usr/share/fonts/Malayalam Sangam MN.ttc: Malayalam Sangam MN:style=Regular
/usr/share/fonts/Bradley Hand Bold.ttf: Bradley Hand:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,عريض,Negrita
/usr/share/fonts/PTSerif.ttc: PT Serif:style=Bold Italic
/usr/share/fonts/AlBayan.ttc: .Al Bayan PUA:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,عريض,Negrita
/usr/share/fonts/Phosphate.ttc: Phosphate:style=Inline
/usr/share/fonts/Gurmukhi Sangam MN.ttc: Gurmukhi Sangam MN:style=Regular
/usr/share/fonts/Arial Rounded Bold.ttf: Arial Rounded MT Bold:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/Athelas.ttc: Athelas:style=Regular
/usr/share/fonts/Trebuchet MS.ttf: Trebuchet MS:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/Athelas.ttc: Athelas:style=Bold Italic
/usr/share/fonts/STIXIntUpSmBol.otf: STIXIntegralsUpSm:style=Bold
/usr/share/fonts/InaiMathi-MN.ttc: InaiMathi:style=Bold
/usr/share/fonts/Oriya MN.ttc: Oriya MN:style=Bold
/usr/share/fonts/Mishafi Gold.ttf: مِصحفي ذهبي,Mishafi Gold:style=عادي,Regular
/usr/share/fonts/PTSans.ttc: PT Sans Caption:style=Regular
/usr/share/fonts/SuperClarendon.ttc: Superclarendon:style=Black Italic
/usr/share/fonts/Mshtakan.ttc: Mshtakan:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Georgia Bold Italic.ttf: Georgia:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/fonts/Bangla MN.ttc: Bangla MN:style=Bold
/usr/share/fonts/Georgia Bold.ttf: Georgia:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/Charter.ttc: Charter:style=Bold Italic
/usr/share/fonts/DevanagariMT.ttc: Devanagari MT,देवनागरी एम॰टी॰:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,बोल्ड,粗体,Negrita
/usr/share/fonts/PTSerif.ttc: PT Serif:style=Regular
/usr/share/fonts/Farisi.ttf: فارسي,Farisi:style=عادي,Regular
/usr/share/fonts/Papyrus.ttc: Papyrus:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/SuperClarendon.ttc: Superclarendon:style=Bold
/usr/share/X11/fonts/Type1/c0419bt_.pfb: Courier 10 Pitch:style=Regular
/usr/share/fonts/DecoTypeNaskh.ttc: .DecoType Naskh PUA:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体,عادي
/usr/share/fonts/Herculanum.ttf: Herculanum:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/SukhumvitSet.ttc: Sukhumvit Set:style=Thin
/usr/share/fonts/Shree714.ttc: Shree Devanagari 714,श्री देवनागरी ७१४:style=Italic,इटैलिक
/usr/share/fonts/Georgia Italic.ttf: Georgia:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/usr/share/fonts/Wingdings.ttf: Wingdings:style=Regular,normal,Standard,Normaali,Normale,Standaard,Normálne,Navadno
/usr/share/fonts/Myanmar MN.ttc: Myanmar MN:style=Regular
/usr/share/fonts/Chalkduster.ttf: Chalkduster:style=Regular
/usr/share/fonts/Corsiva.ttc: Corsiva Hebrew:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Muna.ttc: منى,Muna:style=عادي,Regular
/usr/share/fonts/Malayalam MN.ttc: Malayalam MN:style=Regular
/usr/share/fonts/ITFDevanagari.ttc: ITF Devanagari Marathi,आई॰टी॰एफ़॰ देवनागरी मराठी:style=Medium,मध्यम
/usr/share/fonts/Diwan Kufi.ttc: .Diwan Kufi PUA:style=Regular
/usr/share/fonts/SnellRoundhand.ttc: Snell Roundhand:style=Bold
/usr/share/fonts/Damascus.ttc: .Damascus PUA:style=Medium
/usr/share/fonts/lyx/wasy10.ttf: wasy10:style=LyX
/usr/share/fonts/AmericanTypewriter.ttc: American Typewriter:style=Condensed Light,壓縮細體,Smal mager,Schmal, Fein,Kavennettu ohut,Condensé fin,Condensato leggero,コンデンス・ライト,자간 축소 가는체,Gecomprimeerd Licht,Fortettet tynn,Condensado Leve,Узкий светлый,紧缩细体,Condensada fina
/usr/share/fonts/SnellRoundhand.ttc: Snell Roundhand:style=Regular
/usr/share/fonts/EuphemiaCAS.ttc: Euphemia UCAS:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,Negrita
/usr/share/fonts/Arial.ttf: Arial:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta
/usr/share/fonts/Seravek.ttc: Seravek:style=Italic
/usr/share/fonts/ITFDevanagari.ttc: ITF Devanagari Marathi,आई॰टी॰एफ़॰ देवनागरी मराठी:style=Demi,अर्ध बोल्ड
/usr/share/fonts/Tahoma.ttf: Tahoma:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta
/usr/share/fonts/Seravek.ttc: Seravek,Seravek Light:style=Light,Regular
/usr/share/fonts/Raanana.ttc: Raanana:style=Normal,標準體,Regular,Απλά,Normaali,Courant,רגיל,Normál,Regolare,レギュラー,일반체,Regulier,Обычный,Regularni,ปกติ,Reguler,Звичайний,Thông thường,नियमित,Biasa,常规体,عادي
/usr/share/fonts/Charter.ttc: Charter,Charter Black:style=Black Italic,Italic
/usr/share/fonts/Kannada MN.ttc: Kannada MN:style=Regular
/usr/share/fonts/Farah.ttc: .Farah PUA:style=Regular
/usr/share/fonts/Shree714.ttc: Shree Devanagari 714,श्री देवनागरी ७१४:style=Bold Italic,बोल्ड इटैलिक
/usr/share/fonts/Bodoni 72 OS.ttc: Bodoni 72 Oldstyle:style=Bold
/usr/share/fonts/GillSans.ttc: Gill Sans:style=Light Italic,細斜體,Mager kursiv,Fein, Kursiv,Ohut kursiivi,Fin italique,Leggero corsivo,ライト・イタリック,가는 이탤릭체,Licht Cursief,Tynn kursiv,Itálico Leve,Облегченный курсивный,细斜体,Fina cursiva
/usr/share/fonts/Bodoni 72 OS.ttc: Bodoni 72 Oldstyle:style=Book
/usr/share/fonts/ITFDevanagari.ttc: ITF Devanagari,आई॰टी॰एफ़॰ देवनागरी:style=Book,पाठ्य
/usr/share/fonts/Tamil MN.ttc: Tamil MN:style=Bold
/usr/share/fonts/Damascus.ttc: دمشق:style=فاتح
/usr/share/fonts/Gurmukhi MN.ttc: Gurmukhi MN:style=Bold
/usr/share/fonts/SignPainter.ttc: SignPainter,SignPainter-HouseScript:style=HouseScript,Regular
/usr/share/fonts/Iowan Old Style.ttc: Iowan Old Style,Iowan Old Style Black:style=Black,Regular
/usr/share/fonts/Myanmar Sangam MN.ttc: Myanmar Sangam MN:style=Regular
/usr/share/fonts/Al Nile.ttc: .Al Nile PUA:style=Bold
/usr/share/fonts/Al Tarikh.ttc: التاريخ,Al Tarikh:style=عادي,Regular
/usr/share/fonts/AppleGothic.ttf: AppleGothic:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/ITFDevanagari.ttc: ITF Devanagari Marathi,आई॰टी॰एफ़॰ देवनागरी मराठी:style=Bold,बोल्ड
/usr/share/fonts/Damascus.ttc: .Damascus PUA:style=Light
/usr/share/X11/fonts/Type1/c0648bt_.pfb: Bitstream Charter:style=Regular
/usr/share/fonts/AppleMyungjo.ttf: AppleMyungjo:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Beirut.ttc: .Beirut PUA:style=Regular
/usr/share/fonts/Silom.ttf: Silom:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/lyx/esint10.ttf: esint10:style=LyX
/usr/share/fonts/DecoTypeNaskh.ttc: نسخ,DecoType Naskh:style=عادي,Regular
/usr/share/fonts/AmericanTypewriter.ttc: American Typewriter:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Kannada MN.ttc: Kannada MN:style=Bold
/usr/share/fonts/STIXSizOneSymBol.otf: STIXSizeOneSym:style=Bold
/usr/share/fonts/SuperClarendon.ttc: Superclarendon:style=Light
/usr/share/fonts/STIXIntUpReg.otf: STIXIntegralsUp:style=Regular
/usr/share/fonts/NewPeninimMT.ttc: New Peninim MT:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/STIXNonUniBolIta.otf: STIXNonUnicode:style=Bold Italic
/usr/share/fonts/Baskerville.ttc: Baskerville:style=Regular
/usr/share/fonts/NewPeninimMT.ttc: New Peninim MT:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,Negrita
/usr/share/fonts/Gurmukhi MN.ttc: Gurmukhi MN:style=Regular
/usr/share/fonts/Bodoni Ornaments.ttf: Bodoni Ornaments:style=Regular
/usr/share/fonts/SuperClarendon.ttc: Superclarendon:style=Light Italic
/usr/share/fonts/Bodoni 72 OS.ttc: Bodoni 72 Oldstyle:style=Book Italic
/usr/share/fonts/SuperClarendon.ttc: Superclarendon:style=Bold Italic
/usr/share/fonts/STIXVar.otf: STIXVariants:style=Regular
/usr/share/fonts/Gurmukhi.ttf: Gurmukhi MT:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/GillSans.ttc: Gill Sans:style=SemiBold
/usr/share/fonts/GillSans.ttc: Gill Sans:style=SemiBold Italic
/usr/share/fonts/Kailasa.ttc: Kailasa:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Iowan Old Style.ttc: Iowan Old Style:style=Roman
/usr/share/fonts/Trebuchet MS Bold Italic.ttf: Trebuchet MS:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/fonts/STIXIntSmBol.otf: STIXIntegralsSm:style=Bold
/usr/share/fonts/ITFDevanagari.ttc: ITF Devanagari Marathi,आई॰टी॰एफ़॰ देवनागरी मराठी:style=Light,हलका
/usr/share/fonts/Savoye LET.ttc: Savoye LET:style=Plain
/usr/share/fonts/SukhumvitSet.ttc: Sukhumvit Set:style=Medium
/usr/share/fonts/Baghdad.ttc: .Baghdad PUA:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体,عادي
/usr/share/fonts/Times New Roman Italic.ttf: Times New Roman:style=Italic,cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana
/usr/share/fonts/KufiStandardGK.ttc: .KufiStandardGK PUA:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体,عادي
/usr/share/fonts/Damascus.ttc: دمشق:style=عريض
/usr/share/fonts/STIXSizThreeSymBol.otf: STIXSizeThreeSym:style=Bold
/usr/share/fonts/Songti.ttc: Songti TC,宋體-繁,宋体-繁:style=Regular,標準體,常规体
/usr/share/fonts/Nadeem.ttc: .Nadeem PUA:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体,عادي
/usr/share/fonts/lyx/rsfs10.ttf: rsfs10:style=LyX
/usr/share/fonts/Baskerville.ttc: Baskerville:style=Bold
/usr/share/fonts/STIXGeneralItalic.otf: STIXGeneral:style=Italic
/usr/share/fonts/STIXSizTwoSymBol.otf: STIXSizeTwoSym:style=Bold
/usr/share/fonts/Tahoma Bold.ttf: Tahoma:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia
/usr/share/fonts/Verdana.ttf: Verdana:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/Arial Narrow.ttf: Arial Narrow:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/Sinhala Sangam MN.ttc: Sinhala Sangam MN:style=Regular
/usr/share/fonts/Times New Roman Bold Italic.ttf: Times New Roman:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,nghiêng đậm,Lodi etzana
/usr/share/fonts/Lao Sangam MN.ttf: Lao Sangam MN:style=Regular
/usr/share/fonts/Verdana Italic.ttf: Verdana:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana
/usr/share/fonts/Bangla MN.ttc: Bangla MN:style=Regular
/usr/share/fonts/Al Nile.ttc: .Al Nile PUA:style=Regular
/usr/share/fonts/Shree714.ttc: Shree Devanagari 714,श्री देवनागरी ७१४:style=Bold,बोल्ड
/usr/share/fonts/Copperplate.ttc: Copperplate:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Sana.ttc: صنعاء,Sana:style=عادي,Regular
/usr/share/fonts/Songti.ttc: Songti SC,宋體-簡,宋体-简:style=Regular,標準體,常规体
/usr/share/fonts/Charter.ttc: Charter:style=Italic
/usr/share/fonts/ITFDevanagari.ttc: ITF Devanagari,आई॰टी॰एफ़॰ देवनागरी:style=Medium,मध्यम
/usr/share/fonts/PTSans.ttc: PT Sans Caption:style=Bold
/usr/share/fonts/Seravek.ttc: Seravek,Seravek ExtraLight:style=ExtraLight,Regular
/usr/share/fonts/Sinhala MN.ttc: Sinhala MN:style=Regular
/usr/share/fonts/AlBayan.ttc: البيان:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,عريض,Negrita
/usr/share/fonts/Arial Black.ttf: Arial Black:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/Courier New Bold.ttf: Courier New:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia
/usr/share/fonts/Malayalam MN.ttc: Malayalam MN:style=Bold
/usr/share/fonts/Bodoni 72 Smallcaps Book.ttf: Bodoni 72 Smallcaps:style=Book
/usr/share/fonts/lyx/stmary10.ttf: stmary10:style=LyX
/usr/share/fonts/Al Nile.ttc: النيل,Al Nile:style=عادي,Regular
/usr/share/fonts/Damascus.ttc: دمشق:style=شبه عريض
/usr/share/fonts/GillSans.ttc: Gill Sans:style=UltraBold
/usr/share/fonts/STIXNonUni.otf: STIXNonUnicode:style=Regular
/usr/share/fonts/Seravek.ttc: Seravek:style=Bold Italic
/usr/share/fonts/SuperClarendon.ttc: Superclarendon:style=Regular
/usr/share/fonts/Athelas.ttc: Athelas:style=Italic
/usr/share/fonts/ITFDevanagari.ttc: ITF Devanagari,आई॰टी॰एफ़॰ देवनागरी:style=Light,हलका
/usr/share/fonts/Baskerville.ttc: Baskerville:style=SemiBold Italic
/usr/share/fonts/Iowan Old Style.ttc: Iowan Old Style,Iowan Old Style Black:style=Black Italic,Italic
/usr/share/fonts/Tamil Sangam MN.ttc: Tamil Sangam MN:style=Regular
/usr/share/fonts/Bangla Sangam MN.ttc: Bangla Sangam MN:style=Regular
/usr/share/X11/fonts/Type1/cursor.pfa: Cursor:style=Regular
/usr/share/fonts/GujaratiMT.ttc: Gujarati MT:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Waseem.ttc: وسيم,Waseem:style=عادي,Regular
/usr/share/fonts/InaiMathi-MN.ttc: InaiMathi:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/STIXVarBol.otf: STIXVariants:style=Bold
/usr/share/fonts/Tamil Sangam MN.ttc: Tamil Sangam MN:style=Bold
/usr/share/X11/fonts/Type1/UTB_____.pfa: Utopia:style=Bold
/usr/share/fonts/EuphemiaCAS.ttc: Euphemia UCAS:style=Italic,斜體,Kursiv,Kursiivi,Italique,Corsivo,イタリック,이탤릭체,Cursief,Itálico,Курсивный,斜体,Cursiva
/usr/share/fonts/Sinhala MN.ttc: Sinhala MN:style=Bold
/usr/share/fonts/STIXSizThreeSymReg.otf: STIXSizeThreeSym:style=Regular
/usr/share/fonts/lyx/cmex10.ttf: cmex10:style=LyX
/usr/share/fonts/Kefa.ttc: Kefa:style=Bold
/usr/share/fonts/Gujarati Sangam MN.ttc: Gujarati Sangam MN:style=Regular
/usr/share/fonts/Kailasa.ttc: Kailasa:style=Bold
/usr/share/fonts/Seravek.ttc: Seravek,Seravek Medium:style=Medium Italic,Italic
/usr/share/fonts/PTSerif.ttc: PT Serif:style=Italic
/usr/share/fonts/PTSans.ttc: PT Sans:style=Italic
/usr/share/fonts/Cochin.ttc: Cochin:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,Negrita
/usr/share/fonts/STIXSizFourSymReg.otf: STIXSizeFourSym:style=Regular
/usr/share/X11/fonts/Type1/c0583bt_.pfb: Courier 10 Pitch:style=Bold
/usr/share/fonts/Baghdad.ttc: بغداد,Baghdad:style=عادي,Regular
/usr/share/fonts/PlantagenetCherokee.ttf: Plantagenet Cherokee:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/AmericanTypewriter.ttc: American Typewriter:style=Condensed,壓縮體,Smal,Schmal,Kavennettu,Condensé,Condensato,コンデンス,자간 축소,Gecomprimeerd,Fortettet,Condensado,Узкий,紧缩体,Condensada
/usr/share/fonts/ITFDevanagari.ttc: ITF Devanagari Marathi,आई॰टी॰एफ़॰ देवनागरी मराठी:style=Book,पाठ्य
/usr/share/fonts/Microsoft Sans Serif.ttf: Microsoft Sans Serif:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/Charter.ttc: Charter:style=Bold
/usr/share/fonts/Webdings.ttf: Webdings:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/Songti.ttc: Songti SC,宋體-簡,宋体-简:style=Black,黑體,黑体
/usr/share/fonts/Arial Bold.ttf: Arial:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia
/usr/share/fonts/Songti.ttc: Songti SC,宋體-簡,宋体-简:style=Bold,粗體,粗体
/usr/share/fonts/EuphemiaCAS.ttc: Euphemia UCAS:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/STIXSizTwoSymReg.otf: STIXSizeTwoSym:style=Regular
/usr/share/fonts/Copperplate.ttc: Copperplate:style=Light,細體,Mager,Fein,Ohut,Fin,Leggero,ライト,가는체,Licht,Tynn,Leve,Светлый,细体,Fina
/usr/share/X11/fonts/Type1/UTI_____.pfa: Utopia:style=Italic
/usr/share/fonts/Savoye LET.ttc: .Savoye LET CC.:style=Plain
/usr/share/fonts/Cochin.ttc: Cochin:style=Italic,斜體,Kursiv,Kursiivi,Italique,Corsivo,イタリック,이탤릭체,Cursief,Itálico,Курсивный,斜体,Cursiva
/usr/share/fonts/Kokonor.ttf: Kokonor:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/PTSerifCaption.ttc: PT Serif Caption:style=Italic
/usr/share/fonts/STIXSizFourSymBol.otf: STIXSizeFourSym:style=Bold
/usr/share/fonts/Hoefler Text.ttc: Hoefler Text:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/Damascus.ttc: .Damascus PUA:style=Bold
/usr/share/fonts/KufiStandardGK.ttc: KufiStandardGK,كوفي:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体,عادي
/usr/share/fonts/Arial Bold Italic.ttf: Arial:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,nghiêng đậm,Lodi etzana
/usr/share/fonts/Songti.ttc: Songti TC,宋體-繁,宋体-繁:style=Bold,粗體,粗体
/usr/share/fonts/NewPeninimMT.ttc: New Peninim MT:style=Inclined,傾斜體,Hældende,Kursiv,Kallistettu,Incliné,Inclinato,インクライン,경사체,Hellend,Skrånet,Inclinado,Наклонный,Lutande,斜体,Inclinada
/usr/share/fonts/Al Tarikh.ttc: .Al Tarikh PUA:style=Regular
/usr/share/fonts/Gurmukhi Sangam MN.ttc: Gurmukhi Sangam MN:style=Bold
/usr/share/fonts/Telugu MN.ttc: Telugu MN:style=Regular
/usr/share/X11/fonts/Type1/c0582bt_.pfb: Courier 10 Pitch:style=Italic
/usr/share/fonts/Baskerville.ttc: Baskerville:style=Italic
/usr/share/fonts/Didot.ttc: Didot:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,Negrita
/usr/share/fonts/Arial Unicode.ttf: Arial Unicode MS:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/Charter.ttc: Charter,Charter Black:style=Black,Regular
/usr/share/fonts/lyx/msbm10.ttf: msbm10:style=LyX
/usr/share/fonts/ITFDevanagari.ttc: ITF Devanagari,आई॰टी॰एफ़॰ देवनागरी:style=Demi,अर्ध बोल्ड
/usr/share/fonts/AlBayan.ttc: البيان:style=Plain,平體,Almindelig,Standard,Normaali,Simple,Piano,プレーン,보통체,Normaal,Vanlig,Plano,Прямой,Normal,普通体,بسيط
/usr/share/fonts/Corsiva.ttc: Corsiva Hebrew:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,Negrita
/usr/share/fonts/Courier New.ttf: Courier New:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta
/usr/share/fonts/AlBayan.ttc: .Al Bayan PUA:style=Plain,平體,Almindelig,Standard,Normaali,Simple,Piano,プレーン,보통체,Normaal,Vanlig,Plano,Прямой,Normal,普通体,بسيط
/usr/share/fonts/SignPainter.ttc: SignPainter,SignPainter-HouseScript:style=HouseScript Semibold,Semibold
/usr/share/fonts/STIXNonUniBol.otf: STIXNonUnicode:style=Bold
/usr/share/fonts/Sinhala Sangam MN.ttc: Sinhala Sangam MN:style=Bold
/usr/share/fonts/Chalkboard.ttc: Chalkboard:style=Regular
/usr/share/fonts/Damascus.ttc: .Damascus PUA:style=Semi Bold
/usr/share/fonts/Al Nile.ttc: النيل,Al Nile:style=عريض,Bold
/usr/share/fonts/GillSans.ttc: Gill Sans:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,Negrita
/usr/share/fonts/Khmer MN.ttc: Khmer MN:style=Bold
/usr/share/fonts/SukhumvitSet.ttc: Sukhumvit Set:style=Light
/usr/share/fonts/Comic Sans MS Bold.ttf: Comic Sans MS:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/SuperClarendon.ttc: Superclarendon:style=Black
/usr/share/fonts/Myanmar MN.ttc: Myanmar MN:style=Bold
/usr/share/fonts/Athelas.ttc: Athelas:style=Bold
/usr/share/fonts/Georgia.ttf: Georgia:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta
/usr/share/fonts/Damascus.ttc: دمشق:style=متوسط
/usr/share/fonts/GujaratiMT.ttc: Gujarati MT:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,Negrita
/usr/share/fonts/Diwan Kufi.ttc: ديوان كوفي,Diwan Kufi:style=عادي,Regular
/usr/share/fonts/Marion.ttc: Marion:style=Bold
/usr/share/fonts/SukhumvitSet.ttc: Sukhumvit Set:style=Semi Bold
/usr/share/fonts/Verdana Bold Italic.ttf: Verdana:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana
/usr/share/X11/fonts/Type1/c0633bt_.pfb: Bitstream Charter:style=Bold Italic
/usr/share/fonts/Bodoni 72.ttc: Bodoni 72:style=Book
/usr/share/fonts/Bodoni 72.ttc: Bodoni 72:style=Book Italic
/usr/share/fonts/Bodoni 72.ttc: Bodoni 72:style=Bold
/usr/share/fonts/Seravek.ttc: Seravek,Seravek ExtraLight:style=ExtraLight Italic,Italic
/usr/share/X11/fonts/Type1/c0649bt_.pfb: Bitstream Charter:style=Italic
/usr/share/fonts/Devanagari Sangam MN.ttc: Devanagari Sangam MN,देवनागरी संगम एम॰एन॰:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,बोल्ड,粗体,Negrita
/usr/share/fonts/SnellRoundhand.ttc: Snell Roundhand:style=Black
/usr/share/fonts/ChalkboardSE.ttc: Chalkboard SE:style=Regular
/usr/share/fonts/Didot.ttc: Didot:style=Italic,斜體,Kursiv,Kursiivi,Italique,Corsivo,イタリック,이탤릭체,Cursief,Itálico,Курсивный,斜体,Cursiva
/usr/share/fonts/STIXIntUpDReg.otf: STIXIntegralsUpD:style=Regular
/usr/share/fonts/Muna.ttc: منى,Muna:style=عريض,Bold
/usr/share/fonts/Muna.ttc: .Muna PUA:style=Bold
/usr/share/fonts/Trebuchet MS Bold.ttf: Trebuchet MS:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia
/usr/share/fonts/Iowan Old Style.ttc: Iowan Old Style:style=Italic
/usr/share/fonts/Lao MN.ttc: Lao MN:style=Regular
/usr/share/fonts/STIXGeneral.otf: STIXGeneral:style=Regular
/usr/share/X11/fonts/Type1/c0632bt_.pfb: Bitstream Charter:style=Bold
/usr/share/fonts/Mshtakan.ttc: Mshtakan:style=Bold,粗體,Fed,Fett,Puolilihava,Gras,Grassetto,ボールド,볼드체,Vet,Fet,Negrito,Жирный,粗体,Negrita
/usr/share/fonts/Bangla Sangam MN.ttc: Bangla Sangam MN:style=Bold
/usr/share/fonts/PTSans.ttc: PT Sans Narrow:style=Bold
/usr/share/fonts/Didot.ttc: Didot:style=Regular,標準體,Ordinær,Normal,Normaali,Regolare,レギュラー,일반체,Regulier,Обычный,常规体
/usr/share/fonts/lyx/cmr10.ttf: cmr10:style=LyX
/usr/share/fonts/PTSans.ttc: PT Sans:style=Bold
/usr/share/fonts/ChalkboardSE.ttc: Chalkboard SE:style=Light
/usr/share/fonts/Seravek.ttc: Seravek,Seravek Light:style=Light Italic,Italic
/usr/share/fonts/PTMono.ttc: PT Mono:style=Regular
/usr/share/X11/fonts/Type1/UTRG____.pfa: Utopia:style=Regular
/usr/share/fonts/Chalkboard.ttc: Chalkboard:style=Bold
/usr/share/fonts/Marion.ttc: Marion:style=Regular
/usr/share/fonts/AmericanTypewriter.ttc: American Typewriter:style=Condensed Bold,壓縮粗體,Smal fed,Schmal, Fett,Kavennettu puolilihava,Condensé gras,Condensato grassetto,コンデンス・ボールド,자간 축소 볼드체,Gecomprimeerd Vet,Fortettet fet,Negrito Condensado,Узкий жирный,Smal fet,紧缩粗体,Condensada negrita
/usr/share/fonts/Kannada Sangam MN.ttc: Kannada Sangam MN:style=Regular

@yunpat81,

Thanks for sharing requested information with us. We will share good news with you soon.

The issues you have found earlier (filed as SLIDESJAVA-36977) have been fixed in this update. This message was posted using BugNotificationTool from Downloads module by mudassir.fayyaz