from PIL import Image, ImageFont, ImageDraw
from matplotlib import pyplot as plt
import numpy as np
import cv2
text_string = u'تصوير'
img = Image.new('RGB', (200, 150))
draw = ImageDraw.Draw(img)
font = ImageFont.truetype('C:\\Windows\\Nafees Nastaleeq Urdu Font\\Nafees Nastaleeq(Updated).ttf', 50)
draw.text((25,40), text_string, fill='white', font=font)
img.show()
I want to show text on image but only urdu alphabets shown on image.
I want urdu ligature shown on image but in output only urdu alphabets shown on image.