DEV Community

Alexandra Grazhevskaja for Aspose.Slides

Posted on

Emoji in presentation?

Many people love emoji. Many people on Dev.To love emoji. Emoji start to be a part of everything.

So, I just want to say that Aspose.Slides supports working with emoji in presentations.

And, even if you need to convert your presentation with emoji whether to image, PDF, SWF or other format - Aspose.Slides will render emoji with no problem. You dont need to do anything additional for that, just save presentation in the needed format:

Presentation pres = new Presentation();
pres.save("Emoji.pptx", SaveFormat.Pdf);

Or, you may define emoji substitution rules this way, to be sure how they will substitute each other:

// Define fallback fonts
string[] fontNames = new string[] { "Segoe UI Emoji, Segoe UI Symbol" };

// Create fallback font rule
IFontFallBackRule thirdRule = new FontFallBackRule(0x1F300, 0x1F64F, fontNames);

The API is available for other languages too: Java, C++, Android, etc.


Have you ever used emoji in presentations?
Have you ever created your own emoji?πŸ‘‡πŸ‘‡πŸ‘‡

Top comments (0)