Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fix #26143: Document dynamic resizing in MathTextParser#30192

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
sandhya13r wants to merge1 commit intomatplotlib:main
base:main
Choose a base branch
Loading
fromsandhya13r:main
Open
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletionslib/matplotlib/mathtext.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -58,6 +58,8 @@ def __init__(self, output):
self._output_type = _api.check_getitem(
{"path": "vector", "agg": "raster", "macosx": "raster"},
output=output.lower())
self._last_backend = None
self._last_font = None

def parse(self, s, dpi=72, prop=None, *, antialiased=None):
"""
Expand All@@ -76,6 +78,17 @@ def parse(self, s, dpi=72, prop=None, *, antialiased=None):
# Text._get_text_metrics_with_cache for a similar case); likewise,
# we need to check the mutable state of the text.antialiased and
# text.hinting rcParams.
from matplotlib import rcParams

backend_now = self._output_type
font_now = prop.get_name() if prop else rcParams['font.family']

if backend_now != self._last_backend or font_now != self._last_font:
self._parse_cached.cache_clear()

self._last_backend = backend_now
self._last_font = font_now

prop = prop.copy() if prop is not None else None
antialiased = mpl._val_or_rc(antialiased, 'text.antialiased')
from matplotlib.backends import backend_agg
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp