I have the same problem, which still seems to happen.
https://api.aspose.cloud/v3.0/slides/fonts/available?fontsFolder=fonts&storage=mystorage)
Response:
{
"list": [
{
"fontName": "Arial"
},
{
"fontName": "Arial Black"
},
{
"fontName": "Bahnschrift"
},
{
"fontName": "Bahnschrift Condensed"
},
{
"fontName": "Bahnschrift Light"
},
{
"fontName": "Bahnschrift Light Condensed"
},
{
"fontName": "Bahnschrift Light SemiCondensed"
},
{
"fontName": "Bahnschrift SemiBold"
},
{
"fontName": "Bahnschrift SemiBold Condensed"
},
{
"fontName": "Bahnschrift SemiBold SemiConden"
},
{
"fontName": "Bahnschrift SemiCondensed"
},
{
"fontName": "Bahnschrift SemiLight"
},
{
"fontName": "Bahnschrift SemiLight Condensed"
},
{
"fontName": "Bahnschrift SemiLight SemiConde"
},
{
"fontName": "Calibri"
},
{
"fontName": "Calibri Light"
},
{
"fontName": "Cambria"
},
{
"fontName": "Cambria Math"
},
{
"fontName": "Candara"
},
{
"fontName": "Candara Light"
},
{
"fontName": "Comic Sans MS"
},
{
"fontName": "Consolas"
},
{
"fontName": "Constantia"
},
{
"fontName": "Corbel"
},
{
"fontName": "Corbel Light"
},
{
"fontName": "Courier New"
},
{
"fontName": "Ebrima"
},
{
"fontName": "Franklin Gothic Medium"
},
{
"fontName": "Gabriola"
},
{
"fontName": "Gadugi"
},
{
"fontName": "Georgia"
},
{
"fontName": "Impact"
},
{
"fontName": "Ink Free"
},
{
"fontName": "Javanese Text"
},
{
"fontName": "Leelawadee UI"
},
{
"fontName": "Leelawadee UI Semilight"
},
{
"fontName": "Lucida Console"
},
{
"fontName": "Lucida Sans Unicode"
},
{
"fontName": "Malgun Gothic"
},
{
"fontName": "Malgun Gothic Semilight"
},
{
"fontName": "Marlett"
},
{
"fontName": "Microsoft Himalaya"
},
{
"fontName": "Microsoft JhengHei"
},
{
"fontName": "Microsoft JhengHei Light"
},
{
"fontName": "Microsoft JhengHei UI"
},
{
"fontName": "Microsoft JhengHei UI Light"
},
{
"fontName": "Microsoft New Tai Lue"
},
{
"fontName": "Microsoft PhagsPa"
},
{
"fontName": "Microsoft Sans Serif"
},
{
"fontName": "Microsoft Tai Le"
},
{
"fontName": "Microsoft YaHei"
},
{
"fontName": "Microsoft YaHei Light"
},
{
"fontName": "Microsoft YaHei UI"
},
{
"fontName": "Microsoft YaHei UI Light"
},
{
"fontName": "Microsoft Yi Baiti"
},
{
"fontName": "MingLiU-ExtB"
},
{
"fontName": "MingLiU_HKSCS-ExtB"
},
{
"fontName": "Mongolian Baiti"
},
{
"fontName": "MS Gothic"
},
{
"fontName": "MS PGothic"
},
{
"fontName": "MS UI Gothic"
},
{
"fontName": "MV Boli"
},
{
"fontName": "Myanmar Text"
},
{
"fontName": "Nirmala UI"
},
{
"fontName": "Nirmala UI Semilight"
},
{
"fontName": "NSimSun"
},
{
"fontName": "Palatino Linotype"
},
{
"fontName": "PMingLiU-ExtB"
},
{
"fontName": "Segoe MDL2 Assets"
},
{
"fontName": "Segoe Print"
},
{
"fontName": "Segoe Script"
},
{
"fontName": "Segoe UI"
},
{
"fontName": "Segoe UI Black"
},
{
"fontName": "Segoe UI Emoji"
},
{
"fontName": "Segoe UI Historic"
},
{
"fontName": "Segoe UI Light"
},
{
"fontName": "Segoe UI Semibold"
},
{
"fontName": "Segoe UI Semilight"
},
{
"fontName": "Segoe UI Symbol"
},
{
"fontName": "SimSun"
},
{
"fontName": "SimSun-ExtB"
},
{
"fontName": "Sitka Banner"
},
{
"fontName": "Sitka Display"
},
{
"fontName": "Sitka Heading"
},
{
"fontName": "Sitka Small"
},
{
"fontName": "Sitka Subheading"
},
{
"fontName": "Sitka Text"
},
{
"fontName": "Sylfaen"
},
{
"fontName": "Symbol"
},
{
"fontName": "Tahoma"
},
{
"fontName": "Times New Roman"
},
{
"fontName": "Trebuchet MS"
},
{
"fontName": "Verdana"
},
{
"fontName": "Webdings"
},
{
"fontName": "Wingdings"
},
{
"fontName": "Yu Gothic"
},
{
"fontName": "Yu Gothic Light"
},
{
"fontName": "Yu Gothic Medium"
},
{
"fontName": "Yu Gothic UI"
},
{
"fontName": "Yu Gothic UI Light"
},
{
"fontName": "Yu Gothic UI Semibold"
},
{
"fontName": "Yu Gothic UI Semilight"
}
]
}
These are not the fonts from the fonts folder, but something else. It’s not the font list of my local system. Hence, I guess, it’s the font list of the Aspose cloud system.
Asking for the fonts used by the presentation:
https://api.aspose.cloud/v3.0/slides/my.pptx/fonts?folder=myfolder&storage=mystorage)
I get the correct answer:
{
"list": [
{
"fontName": "Arial"
},
{
"fontName": "Symbol"
},
{
"fontName": "Aptos Display"
},
{
"fontName": "Aptos"
},
{
"fontName": "Poppins"
},
{
"fontName": "Calibri"
},
{
"fontName": "Wingdings"
}
]
}