python
from yfiglet import Figlet
figlet = Figlet()
ascii_art = figlet.renderText('Hello, World!')
print(ascii_art)
custom_figlet = Figlet(font='path/to/custom-font.flf')
ascii_art_custom = custom_figlet.renderText('Hello, World!')
print(ascii_art_custom)
custom_property_figlet = Figlet(font='path/to/custom-font.flf', color='red', width=100)
ascii_art_custom_property = custom_property_figlet.renderText('Hello, World!')
print(ascii_art_custom_property)