Skip to content

Commit

Permalink
Turn svg.embed_char_paths on by default.
Browse files Browse the repository at this point in the history
svn path=/trunk/matplotlib/; revision=3812
  • Loading branch information
mdboom committed Sep 7, 2007
1 parent 23592a8 commit 86ba2b3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/matplotlib/config/mplconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class pdf(TConfig):
class svg(TConfig):
image_inline = T.true
image_noscale = T.false
embed_chars = T.false
embed_chars = T.true

class lines(TConfig):
linewidth = T.Float(1.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/config/rcsetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def __call__(self, s):
'pdf.fonttype' : [3, validate_fonttype], # 3 (Type3) or 42 (Truetype)
'svg.image_inline' : [True, validate_bool], # write raster image data directly into the svg file
'svg.image_noscale' : [False, validate_bool], # suppress scaling of raster data embedded in SVG
'svg.embed_char_paths' : [False, validate_bool], # True to save all characters as paths in the SVG
'svg.embed_char_paths' : [True, validate_bool], # True to save all characters as paths in the SVG
'plugins.directory' : ['.matplotlib_plugins', str], # where plugin directory is locate

}
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/rcsetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def __call__(self, s):
'pdf.fonttype' : [3, validate_fonttype], # 3 (Type3) or 42 (Truetype)
'svg.image_inline' : [True, validate_bool], # write raster image data directly into the svg file
'svg.image_noscale' : [False, validate_bool], # suppress scaling of raster data embedded in SVG
'svg.embed_char_paths' : [False, validate_bool], # True to save all characters as paths in the SVG
'svg.embed_char_paths' : [True, validate_bool], # True to save all characters as paths in the SVG
'plugins.directory' : ['.matplotlib_plugins', str], # where plugin directory is locate

}
Expand Down
2 changes: 1 addition & 1 deletion matplotlibrc.template
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ numerix : %(numerix)s # numpy, Numeric or numarray
# svg backend params
#svg.image_inline : True # write raster image data directly into the svg file
#svg.image_noscale : False # suppress scaling of raster data embedded in SVG
#svg.embed_chars : False # embed character outlines in the SVG file
#svg.embed_chars : True # embed character outlines in the SVG file

# Set the verbose flags. This controls how much information
# matplotlib gives you at runtime and where it goes. The verbosity
Expand Down

0 comments on commit 86ba2b3

Please sign in to comment.