-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: improve multi-language font support in GIF generation #711
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Add system-specific Unicode font support for Windows/macOS/Linux - Prioritize native system fonts with good Unicode coverage: - Windows: Microsoft YaHei, Segoe UI - macOS: PingFang, Apple Color Emoji - Linux: DejaVuSans - Add common fallback fonts for better compatibility - Add debug logging for font loading - Improve error handling with informative warnings This change ensures proper text rendering for multiple languages in generated GIFs without requiring additional font installations.
fix: add multi-language support for GIF text rendering When running the following script with Chinese text, encountered character import os
import sys
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import asyncio
from langchain_openai import ChatOpenAI
from browser_use import Agent
from dotenv import load_dotenv
# Load environment variables
load_dotenv()
if not os.getenv('OPENAI_API_KEY'):
raise ValueError('OPENAI_API_KEY is not set. Please add it to your environment variables.')
async def main():
llm = ChatOpenAI(model='gpt-4o-mini')
agent = Agent(
task="打开百度",
llm=llm,
)
await agent.run()
input('Press Enter to exit')
if __name__ == "__main__":
asyncio.run(main()) Changes made:
This ensures proper text rendering for multiple languages (CJK, etc.) |
Thank you very much |
weibing-bab
added a commit
to weibing-bab/browser-use
that referenced
this pull request
Feb 14, 2025
Following up on browser-use#711, some macOS devices still experienced font rendering issues. This commit: - Simplifies macOS font options to use only essential fonts - Uses Hiragino Sans GB as primary font for its complete Unicode support - Keeps .AppleSystemUIFont as system fallback - Retains Apple Color Emoji for emoji support This change ensures more reliable CJK text rendering across different macOS versions without requiring additional font installations. Fixes remaining font issues from browser-use#711
pseudotensor
pushed a commit
to h2oai/browser-use
that referenced
this pull request
Feb 14, 2025
Following up on browser-use#711, some macOS devices still experienced font rendering issues. This commit: - Simplifies macOS font options to use only essential fonts - Uses Hiragino Sans GB as primary font for its complete Unicode support - Keeps .AppleSystemUIFont as system fallback - Retains Apple Color Emoji for emoji support This change ensures more reliable CJK text rendering across different macOS versions without requiring additional font installations. Fixes remaining font issues from browser-use#711
AryamanParida
pushed a commit
to AryamanParida/browser-use
that referenced
this pull request
Mar 7, 2025
feat: improve multi-language font support in GIF generation
AryamanParida
pushed a commit
to AryamanParida/browser-use
that referenced
this pull request
Mar 7, 2025
Following up on browser-use#711, some macOS devices still experienced font rendering issues. This commit: - Simplifies macOS font options to use only essential fonts - Uses Hiragino Sans GB as primary font for its complete Unicode support - Keeps .AppleSystemUIFont as system fallback - Retains Apple Color Emoji for emoji support This change ensures more reliable CJK text rendering across different macOS versions without requiring additional font installations. Fixes remaining font issues from browser-use#711
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This change ensures proper text rendering for multiple languages
in generated GIFs without requiring additional font installations.