manybooks

Results 2 comments of manybooks

I apologize for confusing you. I didn't get any error. But every multibyte characters are replaced by white square. (The link below is example of matplotlib but it will help...

In matplotlib, I can render multibyte charcters by passing `fontproperty` like this. ```python import matplotlib.pyplot as plt from matplotlib.font_manager import FontProperties fp = FontProperties(fname='path\to\Fonts\YuGothic.ttf') plt.text(1, 1, 'にほんご', fontproperties=fp) ``` So...