Skip to content

Commit 6bfe9e1

Browse files
committed
Change default dpi of small png images in docs
Closes #6636
1 parent 8751f9b commit 6bfe9e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
# Plot directive configuration
116116
# ----------------------------
117117

118-
plot_formats = [('png', 80), ('hires.png', 200), ('pdf', 50)]
118+
plot_formats = [('png', 100), ('hires.png', 200), ('pdf', 100)]
119119

120120
# Subdirectories in 'examples/' directory of package and titles for gallery
121121
mpl_example_sections = [

doc/make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def html(buildername='html'):
4747
copy_if_out_of_date(rc, '_static/matplotlibrc')
4848

4949
if small_docs:
50-
options = "-D plot_formats=png:80"
50+
options = "-D plot_formats=png:100"
5151
else:
5252
options = ''
5353
if warnings_as_errors:

0 commit comments

Comments
 (0)