19 lines
833 B
Python
19 lines
833 B
Python
from .star import StarMetadata
|
|
from .star_manager import PluginManager
|
|
from .context import Context
|
|
from astrbot.core.provider import Provider
|
|
from astrbot.core.utils.command_parser import CommandParserMixin
|
|
from astrbot.core import html_renderer
|
|
|
|
class Star(CommandParserMixin):
|
|
'''所有插件(Star)的父类,所有插件都应该继承于这个类'''
|
|
def __init__(self, context: Context):
|
|
self.context = context
|
|
|
|
async def text_to_image(self, text: str, return_url = True) -> str:
|
|
'''将文本转换为图片'''
|
|
return await html_renderer.render_t2i(text, return_url=return_url)
|
|
|
|
async def html_render(self, tmpl: str, data: dict, return_url = True) -> str:
|
|
'''渲染 HTML'''
|
|
return await html_renderer.render_custom_template(tmpl, data, return_url=return_url) |