■ Segoe UI Emoji 폰트에서 이모지 문자 여부를 구하는 방법을 보여준다.
▶ Segoe UI Emoji 폰트에서 이모지 문자 여부 구하기 예제 (C#)
1 2 3 4 5 6 7 8 |
string emojiString = char.ConvertFromUtf32(0x1f300); if(IsEmojiCharacter(emojiString)) { // 작업을 처리한다. } |
▶ Segoe UI Emoji 폰트에서 이모지 문자 여부 구하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
using System.Windows; using System.Windows.Media; // ... private Typeface emojiTypeface = new Typeface ( new FontFamily("Segoe UI Emoji"), FontStyles.Normal, FontWeights.Normal, FontStretches.Normal ); // ... #region 이모지 문자 여부 구하기 - IsEmojiCharacter(source) /// <summary> /// 이모지 문자 여부 구하기 /// </summary> /// <param name="source">소스 문자열</param> /// <returns>이모지 문자 여부</returns> public bool IsEmojiCharacter(string source) { ushort glyphIndex; bool result1 = this.emojiTypeface.TryGetGlyphTypeface(out GlyphTypeface glyphTypeface); bool result2 = glyphTypeface.CharacterToGlyphMap.TryGetValue(char.ConvertToUtf32(source, 0), out glyphIndex); return result1 && result2 && glyphIndex != 0; } #endregion |