ADD 增加保存图片返回path接口

This commit is contained in:
2025-06-11 16:35:38 +08:00
parent 343f6a13fd
commit ae87db1604
2 changed files with 31 additions and 1 deletions

27
nodes/image.py Normal file
View File

@@ -0,0 +1,27 @@
import os.path
import uuid
import torch
import torchvision
class SaveImagePath:
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"image_path":("IMAGE", {"forceInput": True}),
}
}
RETURN_TYPES = ("STRING",)
FUNCTION = "load"
CATEGORY = "不忘科技-自定义节点🚩"
def load(self, image_path:torch.Tensor):
u = uuid.uuid4()
p = os.path.join(os.path.dirname(os.path.abspath(__file__)),"output","%s.jpg" % str(u))
torchvision.utils.save_image(image_path, p)
return (p,)