├── config.json ├── config.default.json ├── requirements.txt ├── media ├── ComfyUI-Set.png ├── ComfyUI_Design_Media.png ├── screenshot_CENP_menu.png ├── screenshot_CENP_nodes.png └── ComfyUI-Compositing Nodes.png ├── colorpalettes ├── CP_OldTimes.png ├── CP_Stylish.png ├── CP_Vibrant.png └── CP_PurpleTone.png ├── nodes ├── __pycache__ │ ├── image_rgb.cpython-310.pyc │ ├── get_text_node.cpython-310.pyc │ ├── set_text_node.cpython-310.pyc │ ├── image_flip_node.cpython-310.pyc │ ├── image_load_node.cpython-310.pyc │ ├── image_concat_node.cpython-310.pyc │ ├── image_extend_node.cpython-310.pyc │ ├── image_rotate_node.cpython-310.pyc │ ├── note_extended_node.cpython-310.pyc │ ├── image_brightness_node.cpython-310.pyc │ ├── image_contrast_node.cpython-310.pyc │ ├── image_desaturate_node.cpython-310.pyc │ ├── image_difference_node.cpython-310.pyc │ ├── image_flip_PIL_node.cpython-310.pyc │ ├── image_greyscale_node.cpython-310.pyc │ ├── image_rgb_filter_node.cpython-310.pyc │ ├── math_operation_node.cpython-310.pyc │ ├── image_new_colord_bg_node.cpython-310.pyc │ ├── image_apply_color_palette_node.cpython-310.pyc │ └── image_brightness_contrast_node.cpython-310.pyc ├── set_text_node.py ├── image_flip_node.py ├── note_extended_node.py ├── image_contrast_node.py ├── image_brightness_node.py ├── image_difference_node.py ├── image_desaturate_node.py ├── get_text_node.py ├── image_rotate_node.py ├── image_extend_node.py ├── math_operation_node.py ├── image_apply_color_palette_node.py ├── image_load_node.py └── image_concat_node.py ├── DEV.md ├── web └── js │ └── GetText.js ├── __init__.py ├── workflows └── Image Brightness Contrast.json ├── README.md ├── nai.py └── LICENSE /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CustomScripts", 3 | "logging": false 4 | } 5 | -------------------------------------------------------------------------------- /config.default.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CustomScripts", 3 | "logging": false 4 | } 5 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pillow>=10.3.0 2 | scipy 3 | color-matcher 4 | matplotlib 5 | huggingface_hub 6 | mss 7 | opencv-python -------------------------------------------------------------------------------- /media/ComfyUI-Set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/media/ComfyUI-Set.png -------------------------------------------------------------------------------- /colorpalettes/CP_OldTimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/colorpalettes/CP_OldTimes.png -------------------------------------------------------------------------------- /colorpalettes/CP_Stylish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/colorpalettes/CP_Stylish.png -------------------------------------------------------------------------------- /colorpalettes/CP_Vibrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/colorpalettes/CP_Vibrant.png -------------------------------------------------------------------------------- /media/ComfyUI_Design_Media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/media/ComfyUI_Design_Media.png -------------------------------------------------------------------------------- /media/screenshot_CENP_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/media/screenshot_CENP_menu.png -------------------------------------------------------------------------------- /colorpalettes/CP_PurpleTone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/colorpalettes/CP_PurpleTone.png -------------------------------------------------------------------------------- /media/screenshot_CENP_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/media/screenshot_CENP_nodes.png -------------------------------------------------------------------------------- /media/ComfyUI-Compositing Nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/media/ComfyUI-Compositing Nodes.png -------------------------------------------------------------------------------- /nodes/__pycache__/image_rgb.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_rgb.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/get_text_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/get_text_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/set_text_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/set_text_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_flip_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_flip_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_load_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_load_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_concat_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_concat_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_extend_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_extend_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_rotate_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_rotate_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/note_extended_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/note_extended_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_brightness_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_brightness_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_contrast_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_contrast_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_desaturate_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_desaturate_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_difference_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_difference_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_flip_PIL_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_flip_PIL_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_greyscale_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_greyscale_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_rgb_filter_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_rgb_filter_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/math_operation_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/math_operation_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_new_colord_bg_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_new_colord_bg_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_apply_color_palette_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_apply_color_palette_node.cpython-310.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/image_brightness_contrast_node.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoreTeknology/ComfyUI-Nai-Production-Nodes-Pack/HEAD/nodes/__pycache__/image_brightness_contrast_node.cpython-310.pyc -------------------------------------------------------------------------------- /DEV.md: -------------------------------------------------------------------------------- 1 | # Development Log 2 | 3 | ## Tasklist: 4 | * check property panel UI 5 | * update infos 6 | * node description 7 | 8 | ## Objectives: 9 | * a list of individual features > simple custom nodes 10 | * a list of composed features > final custom nodes 11 | 12 | The final custom nodes pack offers a set of simple custom nodes to be found into the main menu, AND a set of advanced toolbox, made for everyday use. 13 | 14 | Pack NODES 15 | 16 | ## Nodes Design 17 | 18 | Pack NODES 19 | 20 | ## New Nodes: 21 | 22 | * Image resize 23 | * Image Extend 24 | * Image Filter 25 | * Image Overlay 26 | * Image Add/Extract Metadata 27 | * Image extract Palette 28 | * Image Apply Palette 29 | 30 | -------------------------------------------------------------------------------- /nodes/set_text_node.py: -------------------------------------------------------------------------------- 1 | class SetText: 2 | @classmethod 3 | def INPUT_TYPES(cls): 4 | # Define the input types for your node. In this case, we need a string input. 5 | return { 6 | "required": { 7 | "user_input": ("STRING", {"default": "My Text", "multiline":True}) 8 | } 9 | } 10 | 11 | RETURN_TYPES = ("STRING",) 12 | RETURN_NAMES = ("Output String",) 13 | FUNCTION = "process_string" 14 | CATEGORY = "utils" 15 | 16 | def process_string(self, user_input): 17 | # This function will be called to process the user input string. 18 | return (user_input,) 19 | 20 | NODE_CLASS_MAPPINGS = { 21 | "Set Text": SetText, 22 | } 23 | 24 | NODE_DISPLAY_NAME_MAPPINGS = { 25 | "Set Text": "🛡️Set Text", 26 | } -------------------------------------------------------------------------------- /nodes/image_flip_node.py: -------------------------------------------------------------------------------- 1 | import torch 2 | 3 | class ImageFlip: 4 | @classmethod 5 | def INPUT_TYPES(cls): 6 | return { 7 | "required": { 8 | "image": ("IMAGE",), 9 | "axis": (["x", "y", "xy"],), 10 | } 11 | } 12 | 13 | RETURN_TYPES = ("IMAGE",) 14 | FUNCTION = "flip" 15 | 16 | CATEGORY = "image/transform" 17 | DESCRIPTION = """ 18 | Transform the input image along the specified axis. 19 | """ 20 | 21 | def flip(self, image, axis): 22 | dim = () 23 | if "y" in axis: 24 | dim += (1,) 25 | if "x" in axis: 26 | dim += (2,) 27 | image = torch.flip(image, dim) 28 | 29 | return(image,) 30 | 31 | NODE_CLASS_MAPPINGS = { 32 | "ImageFlip": ImageFlip, 33 | } 34 | 35 | NODE_DISPLAY_NAME_MAPPINGS = { 36 | "ImageFlip": "🌅Image Flip", 37 | } -------------------------------------------------------------------------------- /nodes/note_extended_node.py: -------------------------------------------------------------------------------- 1 | class NoteAdvanced: 2 | @classmethod 3 | def INPUT_TYPES(cls): 4 | # Define the input types for your node. In this case, we need a string input. 5 | return { 6 | "required": { 7 | "user_note": ("STRING", {"default": "Note", "multiline":True}), 8 | "user_comment": ("STRING", {"default": "Comment", "multiline":True}), 9 | } 10 | } 11 | 12 | RETURN_TYPES = () 13 | OUTPUT_NODE = False 14 | FUNCTION = "note_advanced" 15 | CATEGORY = "utils" 16 | 17 | def note_advanced(self, user_note,user_comment): 18 | # This function will be called to process the user input string. 19 | return (user_note,user_comment,) 20 | 21 | NODE_CLASS_MAPPINGS = { 22 | "NoteAdvanced": NoteAdvanced, 23 | } 24 | 25 | NODE_DISPLAY_NAME_MAPPINGS = { 26 | "NoteAdvanced": "🛡️Note Advanced", 27 | } -------------------------------------------------------------------------------- /nodes/image_contrast_node.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | import torch 3 | from torch import Tensor 4 | from PIL import Image, ImageEnhance, ImageFilter 5 | 6 | def tensor2pil(image: Tensor) -> Image.Image: 7 | return Image.fromarray(np.clip(255. * image.cpu().numpy().squeeze(), 0, 255).astype(np.uint8)) 8 | 9 | def pil2tensor(image: Image.Image) -> Tensor: 10 | return torch.from_numpy(np.array(image).astype(np.float32) / 255.0).unsqueeze(0) 11 | 12 | class ImageContrast: 13 | CATEGORY = "image/postprocessing" 14 | @classmethod 15 | def INPUT_TYPES(cls): 16 | return { 17 | "required": { 18 | "image": ("IMAGE",), 19 | "contrast_factor": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 2.0, "step":0.1}) 20 | } 21 | } 22 | 23 | RETURN_TYPES = ("IMAGE",) 24 | FUNCTION = "apply_brightness" 25 | OUTPUT_NODE = True 26 | 27 | def apply_brightness(self, image, contrast_factor): 28 | pil_image = tensor2pil(image) 29 | #pil_image = pil_image.convert("RGB") 30 | pil_image = ImageEnhance.Contrast(pil_image).enhance(contrast_factor) 31 | pil_image = pil_image.convert("RGB") 32 | 33 | return (pil2tensor(pil_image),) 34 | 35 | NODE_CLASS_MAPPINGS = { 36 | "Contrast Image": ImageContrast, 37 | } 38 | 39 | NODE_DISPLAY_NAME_MAPPINGS = { 40 | "Contrast Image": "🌅Image Contrast", 41 | } -------------------------------------------------------------------------------- /nodes/image_brightness_node.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | import torch 3 | from torch import Tensor 4 | from PIL import Image, ImageEnhance, ImageFilter 5 | 6 | def tensor2pil(image: Tensor) -> Image.Image: 7 | return Image.fromarray(np.clip(255. * image.cpu().numpy().squeeze(), 0, 255).astype(np.uint8)) 8 | 9 | def pil2tensor(image: Image.Image) -> Tensor: 10 | return torch.from_numpy(np.array(image).astype(np.float32) / 255.0).unsqueeze(0) 11 | 12 | class ImageBrightness: 13 | CATEGORY = "image/postprocessing" 14 | @classmethod 15 | def INPUT_TYPES(cls): 16 | return { 17 | "required": { 18 | "image": ("IMAGE",), 19 | "brightness_factor": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 2.0, "step":0.1}) 20 | } 21 | } 22 | 23 | RETURN_TYPES = ("IMAGE",) 24 | FUNCTION = "apply_brightness" 25 | OUTPUT_NODE = True 26 | 27 | def apply_brightness(self, image, brightness_factor): 28 | pil_image = tensor2pil(image) 29 | #pil_image = pil_image.convert("RGB") 30 | pil_image = ImageEnhance.Brightness(pil_image).enhance(brightness_factor) 31 | pil_image = pil_image.convert("RGB") 32 | 33 | return (pil2tensor(pil_image),) 34 | 35 | NODE_CLASS_MAPPINGS = { 36 | "Brightness Image": ImageBrightness, 37 | } 38 | 39 | NODE_DISPLAY_NAME_MAPPINGS = { 40 | "Brightness Image": "🌅Image Brightness", 41 | } -------------------------------------------------------------------------------- /nodes/image_difference_node.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | import torch 3 | from torch import Tensor 4 | from PIL import Image, ImageEnhance, ImageChops 5 | 6 | def tensor2pil(image: Tensor) -> Image.Image: 7 | return Image.fromarray(np.clip(255. * image.cpu().numpy().squeeze(), 0, 255).astype(np.uint8)) 8 | 9 | def pil2tensor(image: Image.Image) -> Tensor: 10 | return torch.from_numpy(np.array(image).astype(np.float32) / 255.0).unsqueeze(0) 11 | 12 | class ImageDifference: 13 | @classmethod 14 | def INPUT_TYPES(cls): 15 | return { 16 | "required": { 17 | "image": ("IMAGE",), 18 | "image2": ("IMAGE",), 19 | #"factor": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 5.0, "step":0.1}) 20 | } 21 | } 22 | 23 | RETURN_TYPES = ("IMAGE",) 24 | FUNCTION = "apply_difference" 25 | OUTPUT_NODE = True 26 | 27 | CATEGORY = "image/postprocessing" 28 | 29 | def apply_difference(self, image, image2): 30 | pil_image1 = tensor2pil(image) 31 | pil_image2 = tensor2pil(image2) 32 | 33 | diff = ImageChops.difference(pil_image1, pil_image2) 34 | 35 | 36 | #pil_image = pil_image.convert("RGB") 37 | # pil_image = ImageEnhance.Contrast(pil_image).enhance(factor) 38 | # pil_image = pil_image.convert("RGB") 39 | 40 | return (pil2tensor(diff),) 41 | 42 | NODE_CLASS_MAPPINGS = { 43 | "Image Difference": ImageDifference, 44 | } 45 | 46 | NODE_DISPLAY_NAME_MAPPINGS = { 47 | "Image Difference": "🌅Image Difference", 48 | } -------------------------------------------------------------------------------- /nodes/image_desaturate_node.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | import torch 3 | from torch import Tensor 4 | from PIL import Image, ImageEnhance, ImageFilter 5 | 6 | def tensor2pil(image: Tensor) -> Image.Image: 7 | return Image.fromarray(np.clip(255. * image.cpu().numpy().squeeze(), 0, 255).astype(np.uint8)) 8 | 9 | def pil2tensor(image: Image.Image) -> Tensor: 10 | return torch.from_numpy(np.array(image).astype(np.float32) / 255.0).unsqueeze(0) 11 | 12 | class ImageDesaturate: 13 | @classmethod 14 | def INPUT_TYPES(cls): 15 | return { 16 | "required": { 17 | "image": ("IMAGE",), 18 | "brightness": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 5.0, "step":0.1}), 19 | "contrast": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 5.0, "step":0.1}), 20 | }, 21 | } 22 | 23 | RETURN_TYPES = ("IMAGE",) 24 | FUNCTION = "image_greyscale" 25 | 26 | CATEGORY = "image/postprocessing" 27 | 28 | def image_greyscale(self, image, brightness, contrast): 29 | pil_image = tensor2pil(image) 30 | greyscaled_image = pil_image.convert("L") 31 | greyscaled_image = ImageEnhance.Brightness(greyscaled_image).enhance(brightness) 32 | greyscaled_image = ImageEnhance.Contrast(greyscaled_image).enhance(contrast) 33 | greyscaled_image = greyscaled_image.convert("RGB") 34 | return (pil2tensor(greyscaled_image),) 35 | 36 | # REG 37 | NODE_CLASS_MAPPINGS = { 38 | "ImageDesaturate": ImageDesaturate, 39 | } 40 | 41 | NODE_DISPLAY_NAME_MAPPINGS = { 42 | "ImageDesaturate": "➡️ Image Desaturate", 43 | } -------------------------------------------------------------------------------- /nodes/get_text_node.py: -------------------------------------------------------------------------------- 1 | class GetText: 2 | @classmethod 3 | def INPUT_TYPES(s): 4 | return { 5 | "required": { 6 | "text": ("STRING", {"forceInput": True,"name":"DD"}), 7 | }, 8 | "hidden": { 9 | "unique_id": "UNIQUE_ID", 10 | "extra_pnginfo": "EXTRA_PNGINFO", 11 | }, 12 | } 13 | 14 | INPUT_IS_LIST = True 15 | # INPUT_NAMES = ("Input String",) 16 | 17 | RETURN_TYPES = () 18 | FUNCTION = "get_text" 19 | OUTPUT_NODE = True 20 | OUTPUT_IS_LIST = (True,) 21 | 22 | # RESPECT THE MAIN CATEGORIES!!! 23 | CATEGORY = "utils" 24 | 25 | def get_text(self, text, unique_id=None, extra_pnginfo=None): 26 | if unique_id is not None and extra_pnginfo is not None: 27 | if not isinstance(extra_pnginfo, list): 28 | print("Error: extra_pnginfo is not a list") 29 | elif ( 30 | not isinstance(extra_pnginfo[0], dict) 31 | or "workflow" not in extra_pnginfo[0] 32 | ): 33 | print("Error: extra_pnginfo[0] is not a dict or missing 'workflow' key") 34 | else: 35 | workflow = extra_pnginfo[0]["workflow"] 36 | node = next( 37 | (x for x in workflow["nodes"] if str(x["id"]) == str(unique_id[0])), 38 | None, 39 | ) 40 | if node: 41 | node["widgets_values"] = [text] 42 | 43 | return {"ui": {"text": text}, "result": (text,)} 44 | 45 | 46 | NODE_CLASS_MAPPINGS = { 47 | "Get Text": GetText, 48 | } 49 | 50 | NODE_DISPLAY_NAME_MAPPINGS = { 51 | "Get Text": "🛡️Get Text", 52 | } 53 | -------------------------------------------------------------------------------- /web/js/GetText.js: -------------------------------------------------------------------------------- 1 | import { app } from "../../../scripts/app.js"; 2 | import { ComfyWidgets } from "../../../scripts/widgets.js"; 3 | 4 | // Displays input text on a node 5 | app.registerExtension({ 6 | name: "nai.GetText", 7 | async beforeRegisterNodeDef(nodeType, nodeData, app) { 8 | if (nodeData.name === "Get Text") { 9 | function populate(text) { 10 | if (this.widgets) { 11 | for (let i = 1; i < this.widgets.length; i++) { 12 | this.widgets[i].onRemove?.(); 13 | } 14 | this.widgets.length = 1; 15 | } 16 | 17 | const v = [...text]; 18 | if (!v[0]) { 19 | v.shift(); 20 | } 21 | for (const list of v) { 22 | const w = ComfyWidgets["STRING"](this, "text2", ["STRING", { multiline: true }], app).widget; 23 | w.inputEl.readOnly = true; 24 | w.inputEl.style.opacity = 0.6; 25 | w.value = list; 26 | } 27 | 28 | requestAnimationFrame(() => { 29 | const sz = this.computeSize(); 30 | if (sz[0] < this.size[0]) { 31 | sz[0] = this.size[0]; 32 | } 33 | if (sz[1] < this.size[1]) { 34 | sz[1] = this.size[1]; 35 | } 36 | this.onResize?.(sz); 37 | app.graph.setDirtyCanvas(true, false); 38 | }); 39 | } 40 | 41 | // When the node is executed we will be sent the input text, display this in the widget 42 | const onExecuted = nodeType.prototype.onExecuted; 43 | nodeType.prototype.onExecuted = function (message) { 44 | onExecuted?.apply(this, arguments); 45 | populate.call(this, message.text); 46 | }; 47 | 48 | const onConfigure = nodeType.prototype.onConfigure; 49 | nodeType.prototype.onConfigure = function () { 50 | onConfigure?.apply(this, arguments); 51 | if (this.widgets_values?.length) { 52 | populate.call(this, this.widgets_values.slice(+this.widgets_values.length > 1)); 53 | } 54 | }; 55 | } 56 | }, 57 | }); 58 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | import importlib.util 2 | import glob 3 | import os 4 | import sys 5 | from .nai import init 6 | #from .nai import init, get_ext_dir 7 | 8 | NODE_CLASS_MAPPINGS = {} 9 | NODE_DISPLAY_NAME_MAPPINGS = {} 10 | 11 | # -------------------- 12 | def get_ext_dir(subpath=None, mkdir=False): 13 | dir = os.path.dirname(__file__) 14 | if subpath is not None: 15 | dir = os.path.join(dir, subpath) 16 | 17 | dir = os.path.abspath(dir) 18 | 19 | if mkdir and not os.path.exists(dir): 20 | os.makedirs(dir) 21 | return dir 22 | 23 | # -------------------- 24 | 25 | if init(): 26 | # CHECK FOR NODES DIRECTORY 27 | py = get_ext_dir("nodes") 28 | # CHECK FOR FILES 29 | files = glob.glob(os.path.join(py, "*.py"), recursive=False) 30 | 31 | for file in files: 32 | name = os.path.splitext(file)[0] 33 | spec = importlib.util.spec_from_file_location(name, file) 34 | module = importlib.util.module_from_spec(spec) 35 | sys.modules[name] = module 36 | spec.loader.exec_module(module) 37 | # Console list of all the nodes files 38 | #print("🛡️ComfyUI Compositing Nodes Pack: Loading " + name) 39 | # Register and update each class from the files 40 | if hasattr(module, "NODE_CLASS_MAPPINGS") and getattr(module, "NODE_CLASS_MAPPINGS") is not None: 41 | NODE_CLASS_MAPPINGS.update(module.NODE_CLASS_MAPPINGS) 42 | if hasattr(module, "NODE_DISPLAY_NAME_MAPPINGS") and getattr(module, "NODE_DISPLAY_NAME_MAPPINGS") is not None: 43 | NODE_DISPLAY_NAME_MAPPINGS.update(module.NODE_DISPLAY_NAME_MAPPINGS) 44 | 45 | print("") 46 | print("🛡️ ComfyUI Compositing Nodes Pack......................[LOADED]") 47 | print("") 48 | 49 | WEB_DIRECTORY = "./web" 50 | 51 | __all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"] 52 | -------------------------------------------------------------------------------- /nodes/image_rotate_node.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | import torch 3 | from PIL import Image 4 | from torch import Tensor 5 | from math import sin, cos, radians 6 | 7 | def tensor2pil(image: Tensor) -> Image.Image: 8 | return Image.fromarray(np.clip(255. * image.cpu().numpy().squeeze(), 0, 255).astype(np.uint8)) 9 | 10 | 11 | def pil2tensor(image: Image.Image) -> Tensor: 12 | return torch.from_numpy(np.array(image).astype(np.float32) / 255.0).unsqueeze(0) 13 | 14 | 15 | class ImageRotate: 16 | @classmethod 17 | def INPUT_TYPES(cls): 18 | return { 19 | "required": { 20 | "image": ("IMAGE",), 21 | "rotation": ("INT", {"default": 0, "min": 0, "max": 360, "step": 1}), 22 | }, 23 | } 24 | 25 | RETURN_TYPES = ("IMAGE",) 26 | FUNCTION = "rotate" 27 | 28 | CATEGORY = "image/transform" 29 | 30 | def rotate(self, image, rotation): 31 | pil_image = tensor2pil(image) 32 | 33 | # Calculate new dimensions 34 | angle_rad = radians(rotation) 35 | #new_width = abs(pil_image.width * cos(angle_rad)) + abs(pil_image.height * sin(angle_rad)) 36 | #new_height = abs(pil_image.height * cos(angle_rad)) + abs(pil_image.width * sin(angle_rad)) 37 | 38 | # Rotate the image using PIL's rotate function 39 | angle = rotation # Change this to the desired angle 40 | center_x = pil_image.width / 2 41 | center_y = pil_image.height / 2 42 | 43 | #converted_image = pil_image.convert("RGBA") 44 | rotated_image = pil_image.rotate( 45 | angle, resample=Image.NEAREST, center=(center_x, center_y), expand=False 46 | ) 47 | 48 | # Crop the image to the new dimensions 49 | """ left = (rotated_image.width - new_width) / 2 50 | top = (rotated_image.height - new_height) / 2 51 | right = (rotated_image.width + new_width) / 2 52 | bottom = (rotated_image.height + new_height) / 2 53 | cropped_image = rotated_image.crop((left, top, right, bottom)) """ 54 | 55 | # Convert the rotated image back to a tensor 56 | return (pil2tensor(rotated_image),) 57 | 58 | 59 | 60 | NODE_CLASS_MAPPINGS = { 61 | "ImageRotate": ImageRotate, 62 | } 63 | 64 | NODE_DISPLAY_NAME_MAPPINGS = { 65 | "ImageRotate": "🌅Image Rotate", 66 | } -------------------------------------------------------------------------------- /workflows/Image Brightness Contrast.json: -------------------------------------------------------------------------------- 1 | {"last_node_id":18,"last_link_id":17,"nodes":[{"id":10,"type":"LoadImage","pos":{"0":0,"1":32},"size":[288,384],"flags":{},"order":0,"mode":0,"inputs":[],"outputs":[{"name":"IMAGE","type":"IMAGE","links":[10,11,13,14],"slot_index":0},{"name":"MASK","type":"MASK","links":null}],"properties":{"Node name for S&R":"LoadImage"},"widgets_values":["ComfyUI_00020_.png","image"],"shape":1},{"id":11,"type":"PreviewImage","pos":{"0":928,"1":-128},"size":[224,256],"flags":{},"order":1,"mode":0,"inputs":[{"name":"images","type":"IMAGE","link":10}],"outputs":[],"properties":{"Node name for S&R":"PreviewImage"},"shape":1},{"id":16,"type":"PreviewImage","pos":{"0":1184,"1":-64},"size":[224,256],"flags":{},"order":5,"mode":0,"inputs":[{"name":"images","type":"IMAGE","link":15}],"outputs":[],"properties":{"Node name for S&R":"PreviewImage"},"shape":1},{"id":17,"type":"PreviewImage","pos":{"0":1440,"1":-32},"size":[224,256],"flags":{},"order":6,"mode":0,"inputs":[{"name":"images","type":"IMAGE","link":16}],"outputs":[],"properties":{"Node name for S&R":"PreviewImage"},"shape":1},{"id":18,"type":"PreviewImage","pos":{"0":1696,"1":32},"size":[224,256],"flags":{},"order":8,"mode":0,"inputs":[{"name":"images","type":"IMAGE","link":17}],"outputs":[],"properties":{"Node name for S&R":"PreviewImage"},"shape":1},{"id":12,"type":"Brightness Image","pos":{"0":544,"1":160},"size":{"0":315,"1":58},"flags":{},"order":2,"mode":0,"inputs":[{"name":"image","type":"IMAGE","link":11}],"outputs":[{"name":"IMAGE","type":"IMAGE","links":[15],"slot_index":0}],"properties":{"Node name for S&R":"Brightness Image"},"widgets_values":[1.6000000000000005],"shape":1},{"id":13,"type":"Contrast Image","pos":{"0":544,"1":288},"size":{"0":315,"1":58},"flags":{},"order":3,"mode":0,"inputs":[{"name":"image","type":"IMAGE","link":13}],"outputs":[{"name":"IMAGE","type":"IMAGE","links":[16],"slot_index":0}],"properties":{"Node name for S&R":"Contrast Image"},"widgets_values":[1.4799987792968754],"shape":1},{"id":14,"type":"Brightness Image","pos":{"0":544,"1":416},"size":{"0":315,"1":58},"flags":{},"order":4,"mode":0,"inputs":[{"name":"image","type":"IMAGE","link":14}],"outputs":[{"name":"IMAGE","type":"IMAGE","links":[12],"slot_index":0}],"properties":{"Node name for S&R":"Brightness Image"},"widgets_values":[1.6000000000000005],"shape":1},{"id":15,"type":"Contrast Image","pos":{"0":896,"1":416},"size":{"0":315,"1":58},"flags":{},"order":7,"mode":0,"inputs":[{"name":"image","type":"IMAGE","link":12}],"outputs":[{"name":"IMAGE","type":"IMAGE","links":[17],"slot_index":0}],"properties":{"Node name for S&R":"Contrast Image"},"widgets_values":[0.9],"shape":1}],"links":[[10,10,0,11,0,"IMAGE"],[11,10,0,12,0,"IMAGE"],[12,14,0,15,0,"IMAGE"],[13,10,0,13,0,"IMAGE"],[14,10,0,14,0,"IMAGE"],[15,12,0,16,0,"IMAGE"],[16,13,0,17,0,"IMAGE"],[17,15,0,18,0,"IMAGE"]],"groups":[],"config":{},"extra":{"workspace_info":{"id":"G3fgmviT5wbz4_hENWI7T"},"ds":{"scale":0.6303940863128499,"offset":[243.5463059392189,347.7096371987762]}},"version":0.4} -------------------------------------------------------------------------------- /nodes/image_extend_node.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | import time 3 | import torch 4 | import torch.nn.functional as F 5 | import torchvision.transforms as T 6 | import io 7 | import base64 8 | import random 9 | import math 10 | import os 11 | import re 12 | import json 13 | from PIL.PngImagePlugin import PngInfo 14 | from PIL import ImageColor,ImageGrab, ImageDraw, ImageFont, Image, ImageSequence, ImageOps 15 | from nodes import MAX_RESOLUTION 16 | 17 | class ImageExtend: 18 | 19 | @classmethod 20 | def INPUT_TYPES(s): 21 | return { 22 | "required": { 23 | "image": ("IMAGE",), 24 | "left_px": ("INT", {"default": 0, "min": 0, "max": MAX_RESOLUTION, "step": 1}), 25 | "top_px": ("INT", {"default": 0, "min": 0, "max": MAX_RESOLUTION, "step": 1}), 26 | "right_px": ("INT", {"default": 0, "min": 0, "max": MAX_RESOLUTION, "step": 1}), 27 | "bottom_px": ("INT", {"default": 0, "min": 0, "max": MAX_RESOLUTION, "step": 1}), 28 | "background_white": ("FLOAT", {"default": 0.00, "min": 0.00, "max": 1.00, "step": 0.00}), 29 | }, 30 | "optional": { 31 | "mask": ("MASK",), 32 | } 33 | } 34 | 35 | RETURN_TYPES = ("IMAGE", "MASK") 36 | FUNCTION = "expand_image" 37 | 38 | CATEGORY = "image/transform" 39 | 40 | def expand_image(self, image, left_px, top_px, right_px, bottom_px, background_white, mask=None): 41 | if mask is not None: 42 | if torch.allclose(mask, torch.zeros_like(mask)): 43 | print("Warning: The incoming mask is fully black. Handling it as None.") 44 | mask = None 45 | B, H, W, C = image.size() 46 | 47 | new_image = torch.ones( 48 | (B, H + top_px + bottom_px, W + left_px + right_px, C), 49 | dtype=torch.float32, 50 | ) * background_white 51 | 52 | new_image[:, top_px:top_px + H, left_px:left_px + W, :] = image 53 | 54 | if mask is None: 55 | new_mask = torch.ones( 56 | (B, H + top_px + bottom_px, W + left_px + right_px), 57 | dtype=torch.float32, 58 | ) 59 | 60 | t = torch.zeros( 61 | (B, H, W), 62 | dtype=torch.float32 63 | ) 64 | else: 65 | # If a mask is provided, pad it to fit the new image size 66 | mask = F.pad(mask, (left_px, right_px, top_px, bottom_px), mode='constant', value=0) 67 | mask = 1 - mask 68 | t = torch.zeros_like(mask) 69 | 70 | if mask is None: 71 | new_mask[:, top_px:top_px + H, left_px:left_px + W] = t 72 | return (new_image, new_mask,) 73 | else: 74 | return (new_image, mask,) 75 | 76 | NODE_CLASS_MAPPINGS = { 77 | "ImageExtend": ImageExtend, 78 | } 79 | 80 | NODE_DISPLAY_NAME_MAPPINGS = { 81 | "ImageExtend": "🌅Image Extend", 82 | } -------------------------------------------------------------------------------- /nodes/math_operation_node.py: -------------------------------------------------------------------------------- 1 | class mathOperationNode: 2 | @classmethod 3 | def INPUT_TYPES(cls): 4 | return { 5 | "required": { 6 | "a": ("FLOAT", {"default": 0.0}), 7 | "b": ("FLOAT", {"default": 0.0}), 8 | "operation": (["add", "subtract", "multiply", "divide", "modulo", "power"],), 9 | "use_float": ("BOOLEAN", {"default": False, "label_on": "Float", "label_off": "Integer"}), 10 | }, 11 | } 12 | 13 | RETURN_TYPES = ("INT", "FLOAT", "STRING") 14 | RETURN_NAMES = ("Integer", "Float", "Text") 15 | FUNCTION = "perform_operation" 16 | CATEGORY = "utils" 17 | 18 | def perform_operation(self, a, b, operation, use_float): 19 | if not use_float: 20 | a = int(a) 21 | b = int(b) 22 | 23 | if operation == "add": 24 | result = a + b 25 | elif operation == "subtract": 26 | result = a - b 27 | elif operation == "multiply": 28 | result = a * b 29 | elif operation == "divide": 30 | if b == 0: 31 | raise ValueError("Cannot divide by zero") 32 | result = a / b if use_float else a // b 33 | elif operation == "modulo": 34 | if b == 0: 35 | raise ValueError("Cannot perform modulo by zero") 36 | result = a % b 37 | elif operation == "power": 38 | result = a ** b 39 | 40 | # Return the result based on the use_float boolean 41 | if use_float: 42 | return (None, result, str(result)) 43 | else: 44 | return (result, None, str(result)) 45 | 46 | NODE_CLASS_MAPPINGS = {"Math Operation": mathOperationNode,} 47 | NODE_DISPLAY_NAME_MAPPINGS = {"Math Operation": "🛡️Math Operation",} 48 | 49 | 50 | """ class mathFloatOperation: 51 | def __init__(self): 52 | pass 53 | 54 | @classmethod 55 | def INPUT_TYPES(cls): 56 | return { 57 | "required": { 58 | "a": ("FLOAT", {"default": 0, "min": -999999999999.0, "max": 999999999999.0, "step": 0.01}), 59 | "b": ("FLOAT", {"default": 0, "min": -999999999999.0, "max": 999999999999.0, "step": 0.01}), 60 | "operation": (["add", "subtract", "multiply", "divide", "modulo", "power"],), 61 | }, 62 | } 63 | 64 | RETURN_TYPES = ("FLOAT",) 65 | FUNCTION = "float_math_operation" 66 | 67 | CATEGORY = "EasyUse/Logic/Math" 68 | 69 | def float_math_operation(self, a, b, operation): 70 | if operation == "add": 71 | return (a + b,) 72 | elif operation == "subtract": 73 | return (a - b,) 74 | elif operation == "multiply": 75 | return (a * b,) 76 | elif operation == "divide": 77 | return (a // b,) 78 | elif operation == "modulo": 79 | return (a % b,) 80 | elif operation == "power": 81 | return (a ** b,) """ -------------------------------------------------------------------------------- /nodes/image_apply_color_palette_node.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | import time 3 | import torch 4 | import torch.nn.functional as F 5 | import torchvision.transforms as T 6 | import io 7 | import base64 8 | import random 9 | import math 10 | import os 11 | import re 12 | import json 13 | from PIL.PngImagePlugin import PngInfo 14 | from PIL import ImageGrab, ImageDraw, ImageFont, Image, ImageSequence, ImageOps 15 | 16 | 17 | class ColorMatch2: 18 | @classmethod 19 | def INPUT_TYPES(cls): 20 | return { 21 | "required": { 22 | "image_ref": ("IMAGE",), 23 | "image_target": ("IMAGE",), 24 | "method": ( 25 | [ 26 | 'mkl', 27 | 'hm', 28 | 'reinhard', 29 | 'mvgd', 30 | 'hm-mvgd-hm', 31 | 'hm-mkl-hm', 32 | ], { 33 | "default": 'mkl' 34 | }), 35 | }, 36 | "optional": { 37 | "strength": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 10.0, "step": 0.01}), 38 | } 39 | } 40 | 41 | CATEGORY = "image/compositing" 42 | 43 | RETURN_TYPES = ("IMAGE",) 44 | RETURN_NAMES = ("image",) 45 | FUNCTION = "colormatch" 46 | DESCRIPTION = """ 47 | color-matcher enables color transfer across images which comes in handy for automatic 48 | color-grading of photographs, paintings and film sequences as well as light-field 49 | and stopmotion corrections. 50 | 51 | The methods behind the mappings are based on the approach from Reinhard et al., 52 | the Monge-Kantorovich Linearization (MKL) as proposed by Pitie et al. and our analytical solution 53 | to a Multi-Variate Gaussian Distribution (MVGD) transfer in conjunction with classical histogram 54 | matching. As shown below our HM-MVGD-HM compound outperforms existing methods. 55 | https://github.com/hahnec/color-matcher/ 56 | 57 | """ 58 | 59 | def colormatch(self, image_ref, image_target, method, strength=1.0): 60 | try: 61 | from color_matcher import ColorMatcher 62 | except: 63 | raise Exception("Can't import color-matcher, did you install requirements.txt? Manual install: pip install color-matcher") 64 | cm = ColorMatcher() 65 | image_ref = image_ref.cpu() 66 | image_target = image_target.cpu() 67 | batch_size = image_target.size(0) 68 | out = [] 69 | images_target = image_target.squeeze() 70 | images_ref = image_ref.squeeze() 71 | 72 | image_ref_np = images_ref.numpy() 73 | images_target_np = images_target.numpy() 74 | 75 | if image_ref.size(0) > 1 and image_ref.size(0) != batch_size: 76 | raise ValueError("ColorMatch: Use either single reference image or a matching batch of reference images.") 77 | 78 | for i in range(batch_size): 79 | image_target_np = images_target_np if batch_size == 1 else images_target[i].numpy() 80 | image_ref_np_i = image_ref_np if image_ref.size(0) == 1 else images_ref[i].numpy() 81 | try: 82 | image_result = cm.transfer(src=image_target_np, ref=image_ref_np_i, method=method) 83 | except BaseException as e: 84 | print(f"Error occurred during transfer: {e}") 85 | break 86 | # Apply the strength multiplier 87 | image_result = image_target_np + strength * (image_result - image_target_np) 88 | out.append(torch.from_numpy(image_result)) 89 | 90 | out = torch.stack(out, dim=0).to(torch.float32) 91 | out.clamp_(0, 1) 92 | return (out,) 93 | 94 | 95 | NODE_CLASS_MAPPINGS = { 96 | "ColorMatch2": ColorMatch2, 97 | } 98 | 99 | NODE_DISPLAY_NAME_MAPPINGS = { 100 | "ColorMatch2": "🌅Apply Color Palette", 101 | } -------------------------------------------------------------------------------- /nodes/image_load_node.py: -------------------------------------------------------------------------------- 1 | import torch 2 | 3 | import os 4 | import sys 5 | import json 6 | import hashlib 7 | import traceback 8 | import math 9 | import time 10 | import random 11 | import logging 12 | 13 | from PIL import Image, ImageOps, ImageSequence, ImageFile 14 | from PIL.PngImagePlugin import PngInfo 15 | 16 | import numpy as np 17 | import importlib 18 | import folder_paths 19 | import node_helpers 20 | 21 | class LoadImageNai: 22 | @classmethod 23 | def INPUT_TYPES(s): 24 | input_dir = folder_paths.get_input_directory() 25 | files = [f for f in os.listdir(input_dir) if os.path.isfile(os.path.join(input_dir, f))] 26 | return {"required":{ 27 | "image_target": ("IMAGE",), 28 | "method": ( 29 | [ 30 | 'mkl', 31 | 'hm', 32 | 'reinhard', 33 | 'mvgd', 34 | 'hm-mvgd-hm', 35 | 'hm-mkl-hm', 36 | ], { 37 | "default": 'mkl' 38 | }), 39 | "strength": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 10.0, "step": 0.01}), 40 | "image": (sorted(files), {"image_upload": True}), 41 | }, 42 | "optional": { 43 | "strength": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 10.0, "step": 0.01}), 44 | } 45 | } 46 | 47 | CATEGORY = "experimental/image" 48 | 49 | RETURN_TYPES = ("IMAGE", "MASK", "IMAGE", "STRING", "STRING") 50 | RETURN_NAMES = ("IMAGE", "MASK", "LAYER", "Image Path", "Image Size") 51 | FUNCTION = "load_image" 52 | 53 | def colormatch(self, image, image_target, method, strength=1.0): 54 | try: 55 | from color_matcher import ColorMatcher 56 | except: 57 | raise Exception("Can't import color-matcher, did you install requirements.txt? Manual install: pip install color-matcher") 58 | cm = ColorMatcher() 59 | image = image.cpu() 60 | image_target = image_target.cpu() 61 | batch_size = image_target.size(0) 62 | out = [] 63 | images_target = image_target.squeeze() 64 | images_ref = image.squeeze() 65 | 66 | image_np = images_ref.numpy() 67 | images_target_np = images_target.numpy() 68 | 69 | if image.size(0) > 1 and image.size(0) != batch_size: 70 | raise ValueError("ColorMatch: Use either single reference image or a matching batch of reference images.") 71 | 72 | for i in range(batch_size): 73 | image_target_np = images_target_np if batch_size == 1 else images_target[i].numpy() 74 | image_np_i = image_np if image.size(0) == 1 else images_ref[i].numpy() 75 | try: 76 | image_result = cm.transfer(src=image_target_np, ref=image_np_i, method=method) 77 | except BaseException as e: 78 | print(f"Error occurred during transfer: {e}") 79 | break 80 | # Apply the strength multiplier 81 | image_result = image_target_np + strength * (image_result - image_target_np) 82 | out.append(torch.from_numpy(image_result)) 83 | 84 | out = torch.stack(out, dim=0).to(torch.float32) 85 | out.clamp_(0, 1) 86 | return (out,) 87 | 88 | 89 | def load_image(self, image, image_target, method, strength=1.0): 90 | image_path = folder_paths.get_annotated_filepath(image) 91 | 92 | img = node_helpers.pillow(Image.open, image_path) 93 | 94 | output_images = [] 95 | output_masks = [] 96 | w, h = None, None 97 | 98 | excluded_formats = ['MPO'] 99 | 100 | for i in ImageSequence.Iterator(img): 101 | i = node_helpers.pillow(ImageOps.exif_transpose, i) 102 | 103 | if i.mode == 'I': 104 | i = i.point(lambda i: i * (1 / 255)) 105 | image = i.convert("RGB") 106 | 107 | if len(output_images) == 0: 108 | w = image.size[0] 109 | h = image.size[1] 110 | 111 | if image.size[0] != w or image.size[1] != h: 112 | continue 113 | 114 | image = np.array(image).astype(np.float32) / 255.0 115 | image = torch.from_numpy(image)[None,] 116 | if 'A' in i.getbands(): 117 | mask = np.array(i.getchannel('A')).astype(np.float32) / 255.0 118 | mask = 1. - torch.from_numpy(mask) 119 | else: 120 | mask = torch.zeros((64,64), dtype=torch.float32, device="cpu") 121 | output_images.append(image) 122 | output_masks.append(mask.unsqueeze(0)) 123 | 124 | if len(output_images) > 1 and img.format not in excluded_formats: 125 | output_image = torch.cat(output_images, dim=0) 126 | output_mask = torch.cat(output_masks, dim=0) 127 | else: 128 | output_image = output_images[0] 129 | output_mask = output_masks[0] 130 | 131 | print(str(image_path)) 132 | string_size = str(w) + " x " + str(h) 133 | #output_matched = output_image.colormatch(image_target, output_image, method, strength) 134 | 135 | return (output_image, output_mask, image_target, str(image_path), string_size) 136 | 137 | @classmethod 138 | def IS_CHANGED(s, image): 139 | image_path = folder_paths.get_annotated_filepath(image) 140 | m = hashlib.sha256() 141 | with open(image_path, 'rb') as f: 142 | m.update(f.read()) 143 | return m.digest().hex() 144 | 145 | @classmethod 146 | def VALIDATE_INPUTS(s, image): 147 | if not folder_paths.exists_annotated_filepath(image): 148 | return "Invalid image file: {}".format(image) 149 | 150 | return True 151 | 152 | NODE_CLASS_MAPPINGS = { 153 | "LoadImageNai": LoadImageNai 154 | } 155 | 156 | NODE_DISPLAY_NAME_MAPPINGS = { 157 | "LoadImageNai": "Load Image Node" 158 | } 159 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ComfyUI Production Nodes Pack 2 | 3 | 4 | ```py 5 | VERSION: Pre-Alpha Release: 0.1 - Licensed under GNU General Public License V3 6 | NOTE: This project is supported by our community > linkedin.com/groups/13109092/ 7 | USER: https://github.com/KoreTeknology 8 | ``` 9 | 10 | ## !!! WORK IN PROGRESS !!! (Stay tuned) 11 | 12 | This is set of custom nodes for your ComfyUI[^1] production setup. It offers the very basic nodes that are missing in the official "Vanilla" package. 13 | It is a research Node based project on *Artificial Intelligence* using ComfyUI visual editor. This repository also includes a set of workflows to test the nodes. 14 | 15 | essential Nodes Pack NODES 16 | 17 | ## 🛡️ Custom Nodes 18 | 19 | Here is an overview of the nodes available in this first version of the pack. These correspond to those that I use every day, during my work or in my classes. Others will follow when they are tested and validated. I was inspired by many other developers to create these nodes, even if I had to rewrite most of the scripts myself, for the sake of consistency and integration into comfyUI. 20 | 21 | ### Image Transform 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 |
NodesValuesState
Image Flipx / y / xy✔️
Image RotateDegree /Step: 1)✔️
Image ConcatenateInputs number, Direction, Match size✔️
Image ExtendLeft, Right, Top, bottom, BG White %✔️
30 | 31 | ### Image Postprocessing 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 |
NodesValuesState
Image Brigthness0.0>5.0 / Step: 0.1✔️
Image Contrast0.0>5.0 / Step: 0.1✔️
Image GreyscaleNo value✔️
Image RGBRed,Green, Blue (0-255 /Step: 1)✔️
Image Difference2 input images, no value✔️
Apply Color Palette2 input images, intensity, lightness⚠️
Extract Color Palettenumber of colors, line/square⚠️
43 | 44 | ### Image Compositing 45 | 46 | 47 | 48 | 49 | 50 |
NodesValuesState
Add Image Layer2 input images, x, y, alpha (RGBA)⚠️
Add Text LayerString, x, y, width, color⚠️
51 | 52 | Some extra nodes we need sometimes: 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 |
NodesValuesState
Set TextString✔️
Get TextString✔️
Note AdvancedString, String✔️
Math Operationa, b, Mode, Type✔️
61 | 62 | ## 🛡️ Menu Items 63 | 64 | One of the principles of creating this node pack is to integrate the node names into the menu, in existing categories, rather than creating a new category. It is quite annoying to have to search for nodes when each developer creates a root category, which makes the menu almost unusable. 65 | 66 | essential Nodes Pack MENUS 67 | 68 | ## 🛡️ Settings 69 | 70 | One of the next planned update is to add a dedicated panel into comfyUI settings window to activate/desactivate each node from the pack. 71 | 72 | > [!IMPORTANT] 73 | > User may use these settings if he wants tu use an alternative node from his installed ones. this avoid getting to much "doubles" into the main node menu. 74 | 75 | --- 76 | 77 | ## 🛡️ ComfyUI Installation and Custom Nodes 78 | 79 | After installing [**ComfyUI**](https://github.com/comfyanonymous/ComfyUI) services with your prefered plateform (i am suggesting the use of [**Stability Matrix**](https://github.com/LykosAI/StabilityMatrix) as it is easy to install and give a lot of controls), make sure you install the additional and necessary custom nodes. Then you need to install [GIT software](https://git-scm.com/) (if it is not done already) on your computer. To install these custom nodes, open a CMD window in the \ComfyUI\custom_nodes folder. And "git clone" the Compositing Pack. Or you can use the integrated manager: 80 | 81 | - [ComfyUi-Manager](https://github.com/ltdrdata/ComfyUI-Manager) 82 | 83 | > [!TIP] 84 | > If you have already ComfyUI installed and working, you can simply copy and paste the **Compositing nodes Pack** into the custom nodes folder. Enjoy! 85 | 86 | --- 87 | 88 | ## 🛡️ Development Plan 89 | 90 | I'm currently working on a series of new nodes that will be added progressively to this pack. These are mainly oriented towards compositing and post-processing, using either the PIL library or OpenCV. 91 | If you want to follow the progress or/and participate, I invite you to connect with me on [LINKEDIN](https://www.linkedin.com/in/urieldeveaud/) and [ComfyUI For AI Media Production](https://www.linkedin.com/groups/13109092/), a group of users passionate about AI. 92 | 93 | ### PRIORITY LEVEL 94 | * Config JS extension panel (activate/desactivate individual nodes 95 | * Property panel with description, tips,etc... 96 | * Help options 97 | * refactoring for 1.2 release 98 | 99 | Follow the development: [Here](DEV.md) 100 | 101 | --- 102 | ## 🛡️ Infos 103 | 104 | * Author: **Uriel Deveaud** [NAI-00] - [Kore Teknology](https://github.com/KoreTeknology) 105 | * Partners: **Techman Studio MX** - [techmanstudio.com](https://techmanstudio.com.mx/) 106 | * License: This project is released under the Apache 2.0 License. 107 | * This work is dedicated to all ComfyUI users and to all our students ;) 108 | 109 | [^1]: **ComfyUI** is the free and open source AI creation suite. Please, visit [ComfyUI Github page](https://github.com/comfyanonymous/ComfyUI) for more infos. 110 | -------------------------------------------------------------------------------- /nodes/image_concat_node.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | import time 3 | import torch 4 | import torch.nn.functional as F 5 | import torchvision.transforms as T 6 | import io 7 | import base64 8 | import random 9 | import math 10 | import os 11 | import re 12 | import json 13 | from PIL.PngImagePlugin import PngInfo 14 | from PIL import ImageGrab, ImageDraw, ImageFont, Image, ImageSequence, ImageOps 15 | # from nodes import MAX_RESOLUTION 16 | 17 | from nodes import MAX_RESOLUTION, SaveImage 18 | from comfy_extras.nodes_mask import ImageCompositeMasked 19 | from comfy.cli_args import args 20 | from comfy.utils import ProgressBar, common_upscale 21 | import folder_paths 22 | import model_management 23 | 24 | class ImageConcanate: 25 | @classmethod 26 | def INPUT_TYPES(s): 27 | return {"required": { 28 | "image1": ("IMAGE",), 29 | "image2": ("IMAGE",), 30 | "direction": ( 31 | [ 'right', 32 | 'down', 33 | 'left', 34 | 'up', 35 | ], 36 | { 37 | "default": 'right' 38 | }), 39 | "match_image_size": ("BOOLEAN", {"default": True}), 40 | }} 41 | 42 | RETURN_TYPES = ("IMAGE",) 43 | FUNCTION = "concanate" 44 | CATEGORY = "KJNodes/image" 45 | DESCRIPTION = """ 46 | Concatenates the image2 to image1 in the specified direction. 47 | """ 48 | 49 | def concanate(self, image1, image2, direction, match_image_size, first_image_shape=None): 50 | # Check if the batch sizes are different 51 | batch_size1 = image1.shape[0] 52 | batch_size2 = image2.shape[0] 53 | 54 | if batch_size1 != batch_size2: 55 | # Calculate the number of repetitions needed 56 | max_batch_size = max(batch_size1, batch_size2) 57 | repeats1 = max_batch_size // batch_size1 58 | repeats2 = max_batch_size // batch_size2 59 | 60 | # Repeat the images to match the largest batch size 61 | image1 = image1.repeat(repeats1, 1, 1, 1) 62 | image2 = image2.repeat(repeats2, 1, 1, 1) 63 | 64 | if match_image_size: 65 | # Use first_image_shape if provided; otherwise, default to image1's shape 66 | target_shape = first_image_shape if first_image_shape is not None else image1.shape 67 | 68 | original_height = image2.shape[1] 69 | original_width = image2.shape[2] 70 | original_aspect_ratio = original_width / original_height 71 | 72 | if direction in ['left', 'right']: 73 | # Match the height and adjust the width to preserve aspect ratio 74 | target_height = target_shape[1] # B, H, W, C format 75 | target_width = int(target_height * original_aspect_ratio) 76 | elif direction in ['up', 'down']: 77 | # Match the width and adjust the height to preserve aspect ratio 78 | target_width = target_shape[2] # B, H, W, C format 79 | target_height = int(target_width / original_aspect_ratio) 80 | 81 | # Adjust image2 to the expected format for common_upscale 82 | image2_for_upscale = image2.movedim(-1, 1) # Move C to the second position (B, C, H, W) 83 | 84 | # Resize image2 to match the target size while preserving aspect ratio 85 | image2_resized = common_upscale(image2_for_upscale, target_width, target_height, "lanczos", "disabled") 86 | 87 | # Adjust image2 back to the original format (B, H, W, C) after resizing 88 | image2_resized = image2_resized.movedim(1, -1) 89 | else: 90 | image2_resized = image2 91 | 92 | # Ensure both images have the same number of channels 93 | channels_image1 = image1.shape[-1] 94 | channels_image2 = image2_resized.shape[-1] 95 | 96 | if channels_image1 != channels_image2: 97 | if channels_image1 < channels_image2: 98 | # Add alpha channel to image1 if image2 has it 99 | alpha_channel = torch.ones((*image1.shape[:-1], channels_image2 - channels_image1), device=image1.device) 100 | image1 = torch.cat((image1, alpha_channel), dim=-1) 101 | else: 102 | # Add alpha channel to image2 if image1 has it 103 | alpha_channel = torch.ones((*image2_resized.shape[:-1], channels_image1 - channels_image2), device=image2_resized.device) 104 | image2_resized = torch.cat((image2_resized, alpha_channel), dim=-1) 105 | 106 | 107 | # Concatenate based on the specified direction 108 | if direction == 'right': 109 | concatenated_image = torch.cat((image1, image2_resized), dim=2) # Concatenate along width 110 | elif direction == 'down': 111 | concatenated_image = torch.cat((image1, image2_resized), dim=1) # Concatenate along height 112 | elif direction == 'left': 113 | concatenated_image = torch.cat((image2_resized, image1), dim=2) # Concatenate along width 114 | elif direction == 'up': 115 | concatenated_image = torch.cat((image2_resized, image1), dim=1) # Concatenate along height 116 | return concatenated_image, 117 | 118 | import torch # Make sure you have PyTorch installed 119 | 120 | class ImageConcatenate: 121 | @classmethod 122 | def INPUT_TYPES(s): 123 | return { 124 | "required": { 125 | "inputcount": ("INT", {"default": 2, "min": 2, "max": 1000, "step": 1}), 126 | "image_1": ("IMAGE", ), 127 | "image_2": ("IMAGE", ), 128 | "direction": ( 129 | [ 'right', 130 | 'down', 131 | 'left', 132 | 'up', 133 | ], 134 | { 135 | "default": 'right' 136 | }), 137 | "match_image_size": ("BOOLEAN", {"default": False}), 138 | }, 139 | } 140 | 141 | RETURN_TYPES = ("IMAGE",) 142 | RETURN_NAMES = ("images",) 143 | FUNCTION = "combine" 144 | CATEGORY = "image/transform" 145 | DESCRIPTION = """ 146 | Creates an image from multiple images. 147 | You can set how many inputs the node has, 148 | with the **inputcount** and clicking update. 149 | """ 150 | 151 | def combine(self, inputcount, direction, match_image_size, **kwargs): 152 | image = kwargs["image_1"] 153 | first_image_shape = None 154 | if first_image_shape is None: 155 | first_image_shape = image.shape 156 | for c in range(1, inputcount): 157 | new_image = kwargs[f"image_{c + 1}"] 158 | image, = ImageConcanate.concanate(self, image, new_image, direction, match_image_size, first_image_shape=first_image_shape) 159 | first_image_shape = None 160 | return (image,) 161 | 162 | NODE_CLASS_MAPPINGS = { 163 | "ImageConcatenate": ImageConcatenate, 164 | } 165 | 166 | NODE_DISPLAY_NAME_MAPPINGS = { 167 | "ImageConcatenate": "🌅Image Concatenate", 168 | } -------------------------------------------------------------------------------- /nai.py: -------------------------------------------------------------------------------- 1 | # import asyncio 2 | import os 3 | import json 4 | import shutil 5 | import inspect 6 | # import aiohttp 7 | from server import PromptServer 8 | # Import TQDM -> loops show a smart progress meter 9 | # from tqdm import tqdm 10 | 11 | config = None 12 | 13 | # -------- 14 | # LOGGING 15 | # -------- 16 | 17 | def is_logging_enabled(): 18 | config = get_extension_config() 19 | if "logging" not in config: 20 | return False 21 | return config["logging"] 22 | 23 | 24 | def log(message, type=None, always=False, name=None): 25 | if not always and not is_logging_enabled(): 26 | return 27 | 28 | if type is not None: 29 | message = f"[{type}] {message}" 30 | 31 | if name is None: 32 | name = get_extension_config()["name"] 33 | 34 | print(f"(NAI:{name}) {message}") 35 | 36 | # -------- 37 | # DIR PATHS 38 | # -------- 39 | 40 | def get_ext_dir(subpath=None, mkdir=False): 41 | dir = os.path.dirname(__file__) 42 | if subpath is not None: 43 | dir = os.path.join(dir, subpath) 44 | 45 | dir = os.path.abspath(dir) 46 | 47 | if mkdir and not os.path.exists(dir): 48 | os.makedirs(dir) 49 | return dir 50 | 51 | 52 | def get_comfy_dir(subpath=None, mkdir=False): 53 | dir = os.path.dirname(inspect.getfile(PromptServer)) 54 | if subpath is not None: 55 | dir = os.path.join(dir, subpath) 56 | 57 | dir = os.path.abspath(dir) 58 | 59 | if mkdir and not os.path.exists(dir): 60 | os.makedirs(dir) 61 | return dir 62 | 63 | # Create Folder in Main comfyui Extension directory 64 | def get_web_ext_dir(): 65 | config = get_extension_config() 66 | name = config["name"] 67 | dir = get_comfy_dir("web/extensions/compositing") 68 | if not os.path.exists(dir): 69 | os.makedirs(dir) 70 | dir = os.path.join(dir, name) 71 | return dir 72 | 73 | # -------- 74 | # Compositing CONFIG FILE -> JSON 75 | # -------- 76 | 77 | def get_extension_config(reload=False): 78 | global config 79 | if reload == False and config is not None: 80 | return config 81 | 82 | config_path = get_ext_dir("config.json") 83 | default_config_path = get_ext_dir("config.default.json") 84 | if not os.path.exists(config_path): 85 | if os.path.exists(default_config_path): 86 | shutil.copy(default_config_path, config_path) 87 | if not os.path.exists(config_path): 88 | log(f"Failed to create config at {config_path}", type="ERROR", always=True, name="???") 89 | print(f"Extension path: {get_ext_dir()}") 90 | return {"name": "Unknown", "version": -1} 91 | 92 | else: 93 | log("Missing config.default.json, this extension may not work correctly. Please reinstall the extension.", 94 | type="ERROR", always=True, name="???") 95 | print(f"Extension path: {get_ext_dir()}") 96 | return {"name": "Unknown", "version": -1} 97 | 98 | with open(config_path, "r") as f: 99 | config = json.loads(f.read()) 100 | return config 101 | 102 | # -------- 103 | # Symlink 104 | # -------- 105 | 106 | def link_js(src, dst): 107 | src = os.path.abspath(src) 108 | dst = os.path.abspath(dst) 109 | if os.name == "nt": 110 | try: 111 | import _winapi 112 | _winapi.CreateJunction(src, dst) 113 | return True 114 | except: 115 | pass 116 | try: 117 | os.symlink(src, dst) 118 | return True 119 | except: 120 | import logging 121 | logging.exception('') 122 | return False 123 | 124 | 125 | def is_junction(path): 126 | if os.name != "nt": 127 | return False 128 | try: 129 | return bool(os.readlink(path)) 130 | except OSError: 131 | return False 132 | 133 | # -------- 134 | # JS DIRECTORY 135 | # -------- 136 | 137 | def install_js(): 138 | src_dir = get_ext_dir("web/js") 139 | if not os.path.exists(src_dir): 140 | log("No JS") 141 | return 142 | 143 | should_install = should_install_js() 144 | if should_install: 145 | log("it looks like you're running an old version of ComfyUI that requires manual setup of web files, it is recommended you update your installation.", "warning", True) 146 | dst_dir = get_web_ext_dir() 147 | linked = os.path.islink(dst_dir) or is_junction(dst_dir) 148 | if linked or os.path.exists(dst_dir): 149 | if linked: 150 | if should_install: 151 | log("JS already linked") 152 | else: 153 | os.unlink(dst_dir) 154 | log("JS unlinked, PromptServer will serve extension") 155 | elif not should_install: 156 | shutil.rmtree(dst_dir) 157 | log("JS deleted, PromptServer will serve extension") 158 | return 159 | 160 | if not should_install: 161 | log("JS skipped, PromptServer will serve extension") 162 | return 163 | 164 | if link_js(src_dir, dst_dir): 165 | log("JS linked") 166 | return 167 | 168 | log("Copying JS files") 169 | shutil.copytree(src_dir, dst_dir, dirs_exist_ok=True) 170 | 171 | 172 | def should_install_js(): 173 | return not hasattr(PromptServer.instance, "supports") or "custom_nodes_from_web" not in PromptServer.instance.supports 174 | 175 | 176 | # -------- 177 | # IMPORT LIBS 178 | # -------- 179 | 180 | def init(check_imports=None): 181 | log("Init") 182 | if check_imports is not None: 183 | import importlib.util 184 | for imp in check_imports: 185 | spec = importlib.util.find_spec(imp) 186 | if spec is None: 187 | log(f"{imp} is required, please check requirements are installed.", 188 | type="ERROR", always=True) 189 | return False 190 | 191 | install_js() 192 | return True 193 | 194 | # -------- 195 | # async 196 | # -------- 197 | 198 | """ def get_async_loop(): 199 | loop = None 200 | try: 201 | loop = asyncio.get_event_loop() 202 | except: 203 | loop = asyncio.new_event_loop() 204 | asyncio.set_event_loop(loop) 205 | return loop 206 | 207 | 208 | def get_http_session(): 209 | loop = get_async_loop() 210 | return aiohttp.ClientSession(loop=loop) 211 | 212 | 213 | async def download(url, stream, update_callback=None, session=None): 214 | close_session = False 215 | if session is None: 216 | close_session = True 217 | session = get_http_session() 218 | try: 219 | async with session.get(url) as response: 220 | size = int(response.headers.get('content-length', 0)) or None 221 | 222 | with tqdm( 223 | unit='B', unit_scale=True, miniters=1, desc=url.split('/')[-1], total=size, 224 | ) as progressbar: 225 | perc = 0 226 | async for chunk in response.content.iter_chunked(2048): 227 | stream.write(chunk) 228 | progressbar.update(len(chunk)) 229 | if update_callback is not None and progressbar.total is not None and progressbar.total != 0: 230 | last = perc 231 | perc = round(progressbar.n / progressbar.total, 2) 232 | if perc != last: 233 | last = perc 234 | await update_callback(perc) 235 | finally: 236 | if close_session and session is not None: 237 | await session.close() 238 | 239 | 240 | async def download_to_file(url, destination, update_callback=None, is_ext_subpath=True, session=None): 241 | if is_ext_subpath: 242 | destination = get_ext_dir(destination) 243 | with open(destination, mode='wb') as f: 244 | download(url, f, update_callback, session) 245 | 246 | 247 | def wait_for_async(async_fn, loop=None): 248 | res = [] 249 | 250 | async def run_async(): 251 | r = await async_fn() 252 | res.append(r) 253 | 254 | if loop is None: 255 | try: 256 | loop = asyncio.get_event_loop() 257 | except: 258 | loop = asyncio.new_event_loop() 259 | asyncio.set_event_loop(loop) 260 | 261 | loop.run_until_complete(run_async()) 262 | 263 | return res[0] """ 264 | 265 | # -------- 266 | # UPDATE 267 | # -------- 268 | 269 | """ def update_node_status(client_id, node, text, progress=None): 270 | if client_id is None: 271 | client_id = PromptServer.instance.client_id 272 | 273 | if client_id is None: 274 | return 275 | 276 | PromptServer.instance.send_sync("pysssss/update_status", { 277 | "node": node, 278 | "progress": progress, 279 | "text": text 280 | }, client_id) 281 | 282 | 283 | async def update_node_status_async(client_id, node, text, progress=None): 284 | if client_id is None: 285 | client_id = PromptServer.instance.client_id 286 | 287 | if client_id is None: 288 | return 289 | 290 | await PromptServer.instance.send("pysssss/update_status", { 291 | "node": node, 292 | "progress": progress, 293 | "text": text 294 | }, client_id) 295 | 296 | 297 | def get_config_value(key, default=None, throw=False): 298 | split = key.split(".") 299 | obj = get_extension_config() 300 | for s in split: 301 | if s in obj: 302 | obj = obj[s] 303 | else: 304 | if throw: 305 | raise KeyError("Configuration key missing: " + key) 306 | else: 307 | return default 308 | return obj """ 309 | 310 | # -------- 311 | # DIR EXTRA 312 | # -------- 313 | 314 | """ def is_inside_dir(root_dir, check_path): 315 | root_dir = os.path.abspath(root_dir) 316 | if not os.path.isabs(check_path): 317 | check_path = os.path.abspath(os.path.join(root_dir, check_path)) 318 | return os.path.commonpath([check_path, root_dir]) == root_dir 319 | 320 | 321 | def get_child_dir(root_dir, child_path, throw_if_outside=True): 322 | child_path = os.path.abspath(os.path.join(root_dir, child_path)) 323 | if is_inside_dir(root_dir, child_path): 324 | return child_path 325 | if throw_if_outside: 326 | raise NotADirectoryError( 327 | "Saving outside the target folder is not allowed.") 328 | return None """ 329 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------