LED - Text Effect
In a previous post, I showed you how to display a variety of non-English languages on an LED matrix. In this post, I will look at displaying colorful text that has been image-processed on the LED, rather than just displaying simple text. The image processing content introduced in this article is related to the previous post and https://opencvcooking.blogspot.com/2019/12/basic-cooking-2-pil-text.html . Outline Text Outline text is the text extracted from the outline of the font as shown in the following figure. gimp and other image editing tools make it easy to create outline text images. Let's see how to make it using PIL. In the previous OpenCV blog, the results of the processing were output to a computer screen or file, but this time to the LED matrix. <Outline text Example> See the previous post on how to handle fonts in PIL. import argparse import time , os from PIL import Image, ImageDraw, ImageFont from rgbmatrix import RGBMatrix, R...