lottie

Why does lottie throw ImportError: cannot import name 'PngRenderer' from 'lottie.exporters.cairo'?

Why does lottie throw ImportError: cannot import name 'PngRenderer' from 'lottie.exporters.cairo'? Question: Why does lottie give the error ImportError: cannot import name ‘PngRenderer’ from ‘lottie.exporters.cairo’? import lottie from lottie.exporters.gif import export_gif from lottie.parsers.tgs import parse_tgs def convert_tgs_to_gif(tgs_file, gif_file): try: animation = parse_tgs(tgs_file) export_gif(animation, gif_file, skip_frames=5, dpi=48) return True except Exception: logging.exception("Error occurred while converting TGS …

Total answers: 1