1. 15 Sep, 2023 1 commit
  2. 13 Sep, 2023 1 commit
  3. 10 Sep, 2023 1 commit
  4. 08 Sep, 2023 2 commits
  5. 05 Sep, 2023 2 commits
  6. 03 Sep, 2023 1 commit
    • Michael Abrahams's avatar
      Add support for pasting images into the graph · 6f70227b
      Michael Abrahams authored
      It can be useful to paste images from the clipboard directly into the node graph.
      This commit modifies copy and paste handling to support this.
      
      When an image file is found in the clipboard, we check whether an image node is selected.
      If so, paste the image into that node. Otherwise, a new node is created.
      If no image data are found in the clipboard, we call the original Litegraph paste.
      To ensure that onCopy and onPaste events are fired, we override Litegraph's ctrl+c and ctrl+v handling.
      
      Try to detect whether the pasted image is a real file on disk, or just pixel data copied from e.g. Photoshop.
      Pasted pixel data will be called 'image.png' and have a creation time of now.
      If it is simply pasted data, we store it in the subfolder /input/clipboard/.
      
      This also adds support for the subfolder property in the IMAGEUPLOAD widget.
      6f70227b
  7. 02 Sep, 2023 1 commit
  8. 01 Sep, 2023 2 commits
  9. 19 Aug, 2023 1 commit
  10. 15 Aug, 2023 1 commit
  11. 06 Aug, 2023 1 commit
  12. 04 Aug, 2023 2 commits
  13. 03 Aug, 2023 3 commits
  14. 14 Jul, 2023 1 commit
  15. 13 Jul, 2023 1 commit
  16. 11 Jul, 2023 2 commits
  17. 10 Jul, 2023 1 commit
  18. 07 Jul, 2023 1 commit
  19. 26 Jun, 2023 1 commit
    • comfyanonymous's avatar
      Add CheckpointSave node to save checkpoints. · 9b93b920
      comfyanonymous authored
      The created checkpoints contain workflow metadata that can be loaded by
      dragging them on top of the UI or loading them with the "Load" button.
      
      Checkpoints will be saved in fp16 or fp32 depending on the format ComfyUI
      is using for inference on your hardware. To force fp32 use: --force-fp32
      
      Anything that patches the model weights like merging or loras will be
      saved.
      
      The output directory is currently set to: output/checkpoints but that might
      change in the future.
      9b93b920
  20. 24 Jun, 2023 1 commit
  21. 07 Jun, 2023 2 commits
  22. 06 Jun, 2023 1 commit
  23. 05 Jun, 2023 3 commits
    • space-nuko's avatar
      Make previews into cli option · 48f7ec75
      space-nuko authored
      48f7ec75
    • space-nuko's avatar
      Preview sampled images with TAESD · b4f434ee
      space-nuko authored
      b4f434ee
    • Dr.Lt.Data's avatar
      improve: lightweight preview to reduce network traffic (#733) · 9f3a19b7
      Dr.Lt.Data authored
      
      
      * To reduce bandwidth traffic in a remote environment, a lossy compression-based preview mode is provided for displaying simple visualizations in node-based widgets.
      
      * Added 'preview=[image format]' option to the '/view' API.
      * Updated node to use preview for displaying images as widgets.
      * Excluded preview usage in the open image, save image, mask editor where the original data is required.
      
      * Made preview_format parameterizable for extensibility.
      
      * default preview format changed: jpeg -> webp
      
      * Support advanced preview_format option.
      - grayscale option for visual debugging
      - quality option for aggressive reducing
      
      L?;format;quality?
      
      ex)
      jpeg => rgb, jpeg, quality 90
      L;webp;80 => grayscale, webp, quality 80
      L;png => grayscale, png, quality 90
      webp;50 => rgb, webp, quality 50
      
      * move comment
      
      * * add settings for preview_format
      * default value is ''(= don't reencode)
      
      ---------
      Co-authored-by: default avatarLt.Dr.Data <lt.dr.data@gmail.com>
      9f3a19b7
  24. 31 May, 2023 2 commits
  25. 30 May, 2023 1 commit
  26. 28 May, 2023 3 commits
  27. 21 May, 2023 1 commit