├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── base_node.py ├── brand ├── apple.svg ├── canon.svg ├── dji.svg ├── fujifilm.svg ├── huawei.svg ├── leica.svg ├── liuqianhong.jpg ├── nikon corporation.svg ├── sony.svg ├── unknow.svg └── xiaomi.svg ├── camera_watermark_node.py ├── pyproject.toml ├── requirements.txt ├── template_to_image_node.py ├── templates ├── camera_watermark │ └── template.html ├── happy_new_year │ ├── assets │ │ ├── css │ │ │ └── style.css │ │ └── fonts │ │ │ ├── SourceHanSansCN-Bold.ttf │ │ │ └── SourceHanSansCN-Regular.ttf │ └── template.html └── jieqi │ ├── fonts │ └── Long-Cang-Regular.ttf │ ├── images │ └── bg2.jpeg │ └── template.html ├── webpage_screenshot_node.py └── workflow ├── happy_new_year_workflow.png ├── jieqi_workflow.png └── workflow.png /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/__init__.py -------------------------------------------------------------------------------- /base_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/base_node.py -------------------------------------------------------------------------------- /brand/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/brand/apple.svg -------------------------------------------------------------------------------- /brand/canon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/brand/canon.svg -------------------------------------------------------------------------------- /brand/dji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/brand/dji.svg -------------------------------------------------------------------------------- /brand/fujifilm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/brand/fujifilm.svg -------------------------------------------------------------------------------- /brand/huawei.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/brand/huawei.svg -------------------------------------------------------------------------------- /brand/leica.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/brand/leica.svg -------------------------------------------------------------------------------- /brand/liuqianhong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/brand/liuqianhong.jpg -------------------------------------------------------------------------------- /brand/nikon corporation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/brand/nikon corporation.svg -------------------------------------------------------------------------------- /brand/sony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/brand/sony.svg -------------------------------------------------------------------------------- /brand/unknow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/brand/unknow.svg -------------------------------------------------------------------------------- /brand/xiaomi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/brand/xiaomi.svg -------------------------------------------------------------------------------- /camera_watermark_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/camera_watermark_node.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/requirements.txt -------------------------------------------------------------------------------- /template_to_image_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/template_to_image_node.py -------------------------------------------------------------------------------- /templates/camera_watermark/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/templates/camera_watermark/template.html -------------------------------------------------------------------------------- /templates/happy_new_year/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/templates/happy_new_year/assets/css/style.css -------------------------------------------------------------------------------- /templates/happy_new_year/assets/fonts/SourceHanSansCN-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/templates/happy_new_year/assets/fonts/SourceHanSansCN-Bold.ttf -------------------------------------------------------------------------------- /templates/happy_new_year/assets/fonts/SourceHanSansCN-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/templates/happy_new_year/assets/fonts/SourceHanSansCN-Regular.ttf -------------------------------------------------------------------------------- /templates/happy_new_year/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/templates/happy_new_year/template.html -------------------------------------------------------------------------------- /templates/jieqi/fonts/Long-Cang-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/templates/jieqi/fonts/Long-Cang-Regular.ttf -------------------------------------------------------------------------------- /templates/jieqi/images/bg2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/templates/jieqi/images/bg2.jpeg -------------------------------------------------------------------------------- /templates/jieqi/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/templates/jieqi/template.html -------------------------------------------------------------------------------- /webpage_screenshot_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/webpage_screenshot_node.py -------------------------------------------------------------------------------- /workflow/happy_new_year_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/workflow/happy_new_year_workflow.png -------------------------------------------------------------------------------- /workflow/jieqi_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/workflow/jieqi_workflow.png -------------------------------------------------------------------------------- /workflow/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Html2Image/HEAD/workflow/workflow.png --------------------------------------------------------------------------------