You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug: Emoji Rendering Falls Back to System Apple Emoji Font
Description
The emoji rendering code is not correctly using the Noto Color Emoji font and instead falls back to the system Apple emoji font. This causes inconsistent rendering across platforms and doesn't match our design requirements.
Current Implementation
// Font registrationconstfontPath=path.resolve(__dirname,"./fonts/NotoColorEmoji-Regular.ttf");registerFont(fontPath,{family: "NotoColorEmoji",weight: "regular",style: "normal",});// Emoji renderingfunctionrenderEmoji(emoji: string,size=224){constcanvas=createCanvas(size,size);constctx=canvas.getContext("2d");// @ts-ignorectx.textDrawingMode="glyph";ctx.clearRect(0,0,size,size);constfontSize=Math.floor(size*0.6);ctx.font=`${fontSize}px "NotoColorEmoji"`;constverticalPadding=size*0.2;ctx.fillText(emoji,size*0.125,size/2+verticalPadding*1.125);returncanvas;}// Save emoji as imagefunctionsaveEmojiImage(emoji: string,outputPath: string,size=224){constcanvas=renderEmoji(emoji,size);constbuffer=canvas.toBuffer("image/png");fs.writeFileSync(outputPath,buffer);}
Issue
Despite registering the Noto Color Emoji font, the rendered emojis are still using the system Apple emoji font. This happens on macOS systems and causes inconsistency with our design requirements.
Steps to Reproduce
Run the emoji rendering code on a macOS system
Compare the output images with the expected Noto Color Emoji appearance
Notice that the rendered emojis match Apple's emoji style instead of Google's Noto style
Tasks
Fix the font loading to properly use Noto Color Emoji font
Bug: Emoji Rendering Falls Back to System Apple Emoji Font
Description
The emoji rendering code is not correctly using the Noto Color Emoji font and instead falls back to the system Apple emoji font. This causes inconsistent rendering across platforms and doesn't match our design requirements.
Current Implementation
Issue
Despite registering the Noto Color Emoji font, the rendered emojis are still using the system Apple emoji font. This happens on macOS systems and causes inconsistency with our design requirements.
Steps to Reproduce
Tasks
Dependencies
The text was updated successfully, but these errors were encountered: