Pavan

Results 7 comments of Pavan

I installed pillow in my conda environment using the command "pip install pillow". But even though i upgrade my pillow version still it returns false for the checking the existence...

I have installed raqm and now i get true for the following code, ```pycon >>> from PIL import features >>> features.check("raqm") ``` Now how do i enable or activate raqm...

The provided code does give the correct output but in matplotlib it is not outputting correctly

Can you please tell me indepth about setting up mpl cairo backend to overcome the issue

```python import matplotlib.pyplot as plt from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import mplcairo import matplotlib matplotlib.use("module://mplcairo.tk") mplcairo.set_options(raqm=True) font_path = r"Fonts\Tamil Font.TTF" tamil_font = FontProperties(fname=font_path) plt.title('எனக்கு', fontproperties=tamil_font) plt.show() ```...