Skip to content
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
merged 1 commit into from
Feb 13, 2025

Conversation

weibing-bab
Copy link
Contributor

@weibing-bab weibing-bab commented Feb 13, 2025

  • 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.

- 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.
@CLAassistant
Copy link

CLAassistant commented Feb 13, 2025

CLA assistant check
All committers have signed the CLA.

@weibing-bab
Copy link
Contributor Author

fix: add multi-language support for GIF text rendering

When running the following script with Chinese text, encountered character
encoding issues in the generated GIF:

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:

  • Added system-specific Unicode font support for Windows/macOS/Linux
  • Prioritized native system fonts with CJK support
  • Added Arial Unicode MS and other fallback fonts
  • Improved font loading error handling with debug logs

This ensures proper text rendering for multiple languages (CJK, etc.)
in generated GIFs while maintaining compatibility with existing font options.

agent_history

@MagMueller MagMueller merged commit dab504d into browser-use:main Feb 13, 2025
2 checks passed
@MagMueller
Copy link
Collaborator

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
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants