Skip to content

Commit

Permalink
commit SaveImagePlus,AddBlindWaterMark,ShowBlindWaterMark,CreateQRCod…
Browse files Browse the repository at this point in the history
…e,DecodeQRCode nodes, change <images> folder files to jpg format
  • Loading branch information
chflame163 committed May 23, 2024
1 parent cccf640 commit ae713aa
Show file tree
Hide file tree
Showing 408 changed files with 1,111 additions and 1 deletion.
52 changes: 52 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ When this error has occurred, please check the network environment.
## Update
<font size="4">**If the dependency package error after updating, please reinstall the relevant dependency packages. </font><br />


* Commit [SaveImagePlus](#SaveImagePlus) node,It can customize the directory where the picture is saved, add a timestamp to the file name, select the save format, set the image compression rate, set whether to save the workflow, and optionally add invisible watermarks to the picture.
* Commit [AddBlindWaterMark](#AddBlindWaterMark), [ShowBlindWaterMark](#ShowBlindWaterMark) nodes, Add invisible watermark and decoded watermark to the picture. Commit [CreateQRCode](#CreateQRCode), [DecodeQRCode](#DecodeQRCode) nodes, It can generate two-dimensional code pictures and decode two-dimensional codes.
* [ImageScaleRestoreV2](#ImageScaleRestoreV2), [ImageScaleByAspectRatioV2](#ImageScaleByAspectRatioV2), [ImageAutoCropV2](#ImageAutoCropV2) nodes add options for ```width``` and ```height```, which can specify width or height as fixed values.
* Commit [PurgeVRAM](#PurgeVRAM) node, Clean up VRAM an RAM.
* Commit [AutoAdjust](#AutoAdjust) node, it can automatically adjust image contrast and white balance.
Expand Down Expand Up @@ -1094,6 +1097,55 @@ Node Options:
* purge_models: Unload all loaded models。



### <a id="table1">SaveImagePlus</a>
Enhanced save image node. You can customize the directory where the picture is saved, add a timestamp to the file name, select the save format, set the image compression rate, set whether to save the workflow, and optionally add invisible watermarks to the picture. (Add information in a way that is invisible to the naked eye, and use the ```ShowBlindWaterMark``` node to decode the watermark. )

Node Options:
![image](image/save_image_plus_node.png)
* iamge: The input image.
* custom_path: User-defined directory, enter the directory name in the correct format. If empty, it is saved in the default output directory of ComfyUI. Note that when the file is set to save to the user directory, the picture preview cannot be seen, which is normal.
* filename_prefix: The prefix of file name.
* timestamp: Timestamp the file name, opting for date, time to seconds, and time to milliseconds.
* format: The format of image save. Currently available in ```png``` and ```jpg```. Note that only png format is supported for RGBA mode pictures.
* quality: Image quality, the value range 10-100, the higher the value, the better the picture quality, the volume of the file also correspondingly increases.
* meta_data: Whether to save metadata, that is workflow information. Set this to false if you do not want the workflow to be leaked.
* blind_watermark: The text entered here (does not support multilingualism) will be converted into a QR code and saved as an invisible watermark. Use ```ShowBlindWaterMark``` node can decode watermarks. Note that pictures with watermarks are recommended to be saved in png format, and lower-quality jpg format will cause watermark information to be lost.

### <a id="table1">AddBlindWaterMark</a>
![image](image/watermark_example.png)
Add an invisible watermark to a picture. Add the watermark image in a way that is invisible to the naked eye, and use the ```ShowBlindWaterMark``` node to decode the watermark.

Node Options:
![image](image/add_blind_watermark_node.png)
* iamge: The input image.
* watermark_image: Watermark image. The image entered here will automatically be converted to a square black and white image as a watermark. It is recommended to use a QR code as a watermark.


### <a id="table1">ShowBlindWaterMark</a>
Decoding the invisible watermark added to the ```AddBlindWaterMark``` and ```SaveImagePlus``` nodes.
![image](image/show_blind_watermark_node.png)


### <a id="table1">CreateQRCode</a>
Generate a square QR code picture.

Node Options:
![image](image/create_qrcode_node.png)
* size: The side length of image.
* border: The size of the border around the QR code, the larger the value, the wider the border.
* text: Enter the text content of the QR code here, and multi-language is not supported.

### <a id="table1">DecodeQRCode</a>
Decoding the QR code.

Node Options:
![image](image/decode_qrcode_node.png)
* image: The input QR code image.
* pre_blur: Pre-blurring, you can try to adjust this value for QR codes that are difficult to identify.



# <a id="table1">LayerMask</a>
![image](image/layermask_nodes.png)

Expand Down
52 changes: 52 additions & 0 deletions README_CN.MD
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ git clone https://github.com/chflame163/ComfyUI_LayerStyle.git
## 更新说明
<font size="4">**如果本插件更新后出现依赖包错误,请重新安装相关依赖包。


* 添加 [SaveImagePlus](#SaveImagePlus)节点,可自定义保存图片的目录,文件名增加时间戳,选择保存格式,设置图片压缩率,设置是否保存工作流,以及可选给图片添加隐形水印。
* 添加 [AddBlindWaterMark](#AddBlindWaterMark), [ShowBlindWaterMark](#ShowBlindWaterMark)节点,为图片增加隐形水印和解码水印。添加 [CreateQRCode](#CreateQRCode), [DecodeQRCode](#DecodeQRCode)节点,可生成二维码图片和解码二维码。
* [ImageScaleRestoreV2](#ImageScaleRestoreV2), [ImageScaleByAspectRatioV2](#ImageScaleByAspectRatioV2), [ImageAutoCropV2](#ImageAutoCropV2)节点增加```width``````height```选项,可指定宽度或高度为固定值。
* 添加 [PurgeVRAM](#PurgeVRAM) 节点, 清理显存和内存。
* 添加 [AutoAdjust](#AutoAdjust) 节点, 自动调整图片对比度和白平衡。
Expand Down Expand Up @@ -1083,6 +1086,55 @@ cropped_mask: 裁切后的遮罩。
* purge_models: 清理已加载的模型。


### <a id="table1">SaveImagePlus</a>
增强版的保存图片节点。可自定义保存图片的目录,文件名增加时间戳,选择保存格式,设置图片压缩率,设置是否保存工作流,以及可选给图片添加隐形水印。(以肉眼无法觉察的方式添加信息,使用配套的```ShowBlindWaterMark```节点可以解码水印。)

节点选项说明:
![image](image/save_image_plus_node.png)
* iamge: 输入的图片。
* custom_path: 用户自定义目录,请按正确的格式输入目录名。如果为空则保存在ComfyUI默认的output目录。注意当文件被设置为保存到用户目录时,无法看到图片预览,这是正常现象。
* filename_prefix:文件名前缀。
* timestamp: 为文件名加上时间戳,可选择日期、时间到秒和时间到毫秒。
* format:图片保存格式。目前提供png和jpg两种。注意RGBA模式的图片仅支持png格式。
* quality:图片质量,数值范围10-100,数值越高,图片质量越好,文件的体积也对应增大。
* meta_data:是否保存元数据即工作流信息。如果不希望泄露工作流,请把这里设置为false。
* blind_watermark:这里输入的文字(不支持多语言)将被转换为二维码作为隐形水印保存,使用```ShowBlindWaterMark```节点可以解码水印。注意有水印的图片建议保存为png格式,质量较低的jpg格式将导致水印信息丢失。

### <a id="table1">AddBlindWaterMark</a>
![image](image/watermark_example.png)
给图片添加隐形水印。以肉眼无法觉察的方式添加水印图片,使用```ShowBlindWaterMark```节点可以解码水印。

节点选项说明:
![image](image/add_blind_watermark_node.png)
* iamge: 输入的图片。
* watermark_image: 水印图片。这里输入的图片将自动转为正方形的黑白图片作为水印。建议使用二维码作为水印。


### <a id="table1">ShowBlindWaterMark</a>
```AddBlindWaterMark``````SaveImagePlus``` 节点添加的隐形水印解码。
![image](image/show_blind_watermark_node.png)


### <a id="table1">CreateQRCode</a>
生成一个正方形的二维码图片。

节点选项说明:
![image](image/create_qrcode_node.png)
* size: 生成图片的边长。
* border: 二维码四周边框的大小,数值越大,边框越宽。
* text: 这里输入二维码文字内容,不支持多语言。

### <a id="table1">DecodeQRCode</a>
解码二维码。

节点选项说明:
![image](image/decode_qrcode_node.png)
* image: 输入二维码图片。
* pre_blur: 预模糊,对难以识别的二维码可以尝试调整此数值。




# <a id="table1">LayerMask</a>
![image](image/layermask_nodes.png)

Expand Down
Binary file added image/HSV_node.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed image/HSV_node.png
Binary file not shown.
Binary file added image/LAB_node.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed image/LAB_node.png
Binary file not shown.
Binary file added image/RGB_node.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed image/RGB_node.png
Binary file not shown.
Binary file added image/RGB_value_example.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed image/RGB_value_example.png
Binary file not shown.
Binary file added image/YUV_node.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed image/YUV_node.png
Binary file not shown.
Binary file added image/add_blind_watermark_node.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/auto_adjust_example.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed image/auto_adjust_example.png
Binary file not shown.
Binary file added image/auto_adjust_node.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed image/auto_adjust_node.png
Binary file not shown.
Binary file added image/auto_brightness_example.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed image/auto_brightness_example.png
Binary file not shown.
Binary file added image/auto_brightness_node.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed image/auto_brightness_node.png
Binary file not shown.
Binary file added image/birefnet_ultra_example.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed image/birefnet_ultra_example.png
Binary file not shown.
Binary file added image/birefnet_ultra_node.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed image/birefnet_ultra_node.png
Binary file not shown.
Binary file added image/blend_mode_result.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed image/blend_mode_result.png
Binary file not shown.
Binary file added image/blend_mode_v2_example.jpg
Binary file removed image/blend_mode_v2_example.png
Diff not rendered.
Binary file added image/blendif_mask_example.jpg
Binary file removed image/blendif_mask_example.png
Diff not rendered.
Binary file added image/blendif_mask_node.jpg
Binary file removed image/blendif_mask_node.png
Diff not rendered.
Binary file added image/boolean_node.jpg
Binary file removed image/boolean_node.png
Diff not rendered.
Binary file added image/boolean_operator_node.jpg
Binary file removed image/boolean_operator_node.png
Diff not rendered.
Binary file added image/brightness_&_contrast_node.jpg
Binary file removed image/brightness_&_contrast_node.png
Diff not rendered.
Binary file added image/channel_shake_example.jpg
Binary file removed image/channel_shake_example.png
Diff not rendered.
Binary file added image/channel_shake_node.jpg
Binary file removed image/channel_shake_node.png
Diff not rendered.
Binary file added image/color_adapter_example.jpg
Binary file removed image/color_adapter_example.png
Diff not rendered.
Binary file added image/color_adapter_node.jpg
Binary file removed image/color_adapter_node.png
Diff not rendered.
Binary file added image/color_balance_example.jpg
Binary file removed image/color_balance_example.png
Diff not rendered.
Binary file added image/color_balance_node.jpg
Binary file removed image/color_balance_node.png
Diff not rendered.
Binary file added image/color_image_example.jpg
Binary file removed image/color_image_example.png
Diff not rendered.
Binary file added image/color_image_node.jpg
Binary file removed image/color_image_node.png
Diff not rendered.
Binary file added image/color_image_v2_node.jpg
Binary file removed image/color_image_v2_node.png
Diff not rendered.
Binary file added image/color_map_node.jpg
Binary file removed image/color_map_node.png
Diff not rendered.
Binary file added image/color_of_shadow_and_highlight_example.jpg
Binary file removed image/color_of_shadow_and_highlight_example.png
Diff not rendered.
Binary file added image/color_of_shadow_and_highlight_node.jpg
Binary file removed image/color_of_shadow_and_highlight_node.png
Diff not rendered.
Binary file added image/color_overlay_example.jpg
Binary file removed image/color_overlay_example.png
Diff not rendered.
Binary file added image/color_overlay_node.jpg
Binary file removed image/color_overlay_node.png
Diff not rendered.
Binary file added image/color_picker.jpg
Binary file removed image/color_picker.png
Diff not rendered.
Binary file added image/color_temperature_example.jpg
Binary file removed image/color_temperature_example.png
Diff not rendered.
Binary file added image/color_temperature_node.jpg
Binary file removed image/color_temperature_node.png
Diff not rendered.
Binary file added image/colormap_result.jpg
Binary file removed image/colormap_result.png
Diff not rendered.
Binary file added image/corp_box_resolve_node.jpg
Binary file removed image/corp_box_resolve_node.png
Diff not rendered.
Binary file added image/corp_by_mask_example.jpg
Binary file removed image/corp_by_mask_example.png
Diff not rendered.
Binary file added image/corp_by_mask_node.jpg
Binary file removed image/corp_by_mask_node.png
Diff not rendered.
Binary file added image/corp_by_mask_v2_node.jpg
Binary file removed image/corp_by_mask_v2_node.png
Diff not rendered.
Binary file added image/create_gradient_mask_example.jpg
Binary file removed image/create_gradient_mask_example.png
Diff not rendered.
Binary file added image/create_gradient_mask_example2.jpg
Binary file removed image/create_gradient_mask_example2.png
Diff not rendered.
Binary file added image/create_gradient_mask_node.jpg
Binary file removed image/create_gradient_mask_node.png
Diff not rendered.
Binary file added image/create_qrcode_node.jpg
Binary file added image/data_nodes_example.jpg
Binary file removed image/data_nodes_example.png
Diff not rendered.
Binary file added image/decode_qrcode_node.jpg
Binary file added image/drop_shadow_example.jpg
Binary file removed image/drop_shadow_example.png
Diff not rendered.
Binary file added image/drop_shadow_node.jpg
Binary file removed image/drop_shadow_node.png
Diff not rendered.
Binary file added image/exposure_example.jpg
Binary file removed image/exposure_example.png
Diff not rendered.
Binary file added image/extend_canvas_example.jpg
Binary file removed image/extend_canvas_example.png
Diff not rendered.
Binary file added image/extend_canvas_node.jpg
Binary file removed image/extend_canvas_node.png
Diff not rendered.
Binary file added image/extend_canvas_v2_node.jpg
Binary file removed image/extend_canvas_v2_node.png
Diff not rendered.
Binary file added image/film_example.jpg
Binary file removed image/film_example.png
Diff not rendered.
Binary file added image/film_node.jpg
Binary file removed image/film_node.png
Diff not rendered.
Binary file added image/float_node.jpg
Binary file removed image/float_node.png
Diff not rendered.
Binary file added image/gamma_node.jpg
Binary file removed image/gamma_node.png
Diff not rendered.
Binary file added image/gaussian_blur_example.jpg
Binary file removed image/gaussian_blur_example.png
Diff not rendered.
Binary file added image/get_color_tone_example.jpg
Binary file removed image/get_color_tone_example.png
Diff not rendered.
Binary file added image/get_color_tone_node.jpg
Binary file removed image/get_color_tone_node.png
Diff not rendered.
Binary file added image/get_color_tone_v2_example.jpg
Binary file removed image/get_color_tone_v2_example.png
Diff not rendered.
Binary file added image/get_color_tone_v2_node.jpg
Binary file removed image/get_color_tone_v2_node.png
Diff not rendered.
Binary file added image/get_image_size_node.jpg
Binary file removed image/get_image_size_node.png
Diff not rendered.
Binary file added image/gradient_image_example.jpg
Binary file removed image/gradient_image_example.png
Diff not rendered.
Binary file added image/gradient_image_node.jpg
Binary file removed image/gradient_image_node.png
Diff not rendered.
Binary file added image/gradient_image_node_v2.jpg
Binary file removed image/gradient_image_node_v2.png
Diff not rendered.
Binary file added image/gradient_overlay_example.jpg
Binary file removed image/gradient_overlay_example.png
Diff not rendered.
Binary file added image/gradient_overlay_node.jpg
Binary file removed image/gradient_overlay_node.png
Diff not rendered.
Binary file added image/hdr_effects_example.jpg
Binary file removed image/hdr_effects_example.png
Diff not rendered.
Binary file added image/hdr_effects_node.jpg
Binary file removed image/hdr_effects_node.png
Diff not rendered.
Binary file added image/image_auto_crop_example.jpg
Binary file removed image/image_auto_crop_example.png
Diff not rendered.
Binary file added image/image_auto_crop_node.jpg
Binary file removed image/image_auto_crop_node.png
Diff not rendered.
Binary file added image/image_auto_crop_v2_node.jpg
Binary file removed image/image_auto_crop_v2_node.png
Diff not rendered.
Binary file added image/image_blend_advance_example.jpg
Binary file removed image/image_blend_advance_example.png
Diff not rendered.
Binary file added image/image_blend_advance_node.jpg
Binary file removed image/image_blend_advance_node.png
Diff not rendered.
Binary file added image/image_blend_example.jpg
Binary file removed image/image_blend_example.png
Diff not rendered.
Binary file added image/image_blend_node.jpg
Binary file removed image/image_blend_node.png
Diff not rendered.
Binary file added image/image_channel_merge_example.jpg
Binary file removed image/image_channel_merge_example.png
Diff not rendered.
Binary file added image/image_channel_merge_node.jpg
Binary file removed image/image_channel_merge_node.png
Diff not rendered.
Binary file added image/image_channel_split_example.jpg
Binary file removed image/image_channel_split_example.png
Diff not rendered.
Binary file added image/image_channel_split_node.jpg
Binary file removed image/image_channel_split_node.png
Diff not rendered.
Binary file added image/image_combine_alpha_node.jpg
Binary file removed image/image_combine_alpha_node.png
Diff not rendered.
Binary file added image/image_hub_example.jpg
Binary file removed image/image_hub_example.png
Diff not rendered.
Binary file added image/image_hub_node.jpg
Binary file removed image/image_hub_node.png
Diff not rendered.
Binary file added image/image_mask_scale_as_example.jpg
Binary file removed image/image_mask_scale_as_example.png
Diff not rendered.
Binary file added image/image_mask_scale_as_node.jpg
Binary file removed image/image_mask_scale_as_node.png
Diff not rendered.
Binary file added image/image_opacity_example.jpg
Binary file removed image/image_opacity_example.png
Diff not rendered.
Binary file added image/image_remove_alpha_example.jpg
Binary file removed image/image_remove_alpha_example.png
Diff not rendered.
Binary file added image/image_remove_alpha_node.jpg
Binary file removed image/image_remove_alpha_node.png
Diff not rendered.
Binary file added image/image_reward_filter_example.jpg
Binary file removed image/image_reward_filter_example.png
Diff not rendered.
Binary file added image/image_reward_filter_node.jpg
Binary file removed image/image_reward_filter_node.png
Diff not rendered.
Binary file added image/image_scale_by_aspect_ratio_example.jpg
Binary file removed image/image_scale_by_aspect_ratio_example.png
Diff not rendered.
Binary file added image/image_scale_by_aspect_ratio_node.jpg
Binary file removed image/image_scale_by_aspect_ratio_node.png
Diff not rendered.
Binary file added image/image_scale_by_aspect_ratio_v2_node.jpg
Binary file removed image/image_scale_by_aspect_ratio_v2_node.png
Diff not rendered.
Binary file added image/image_scale_restore_example.jpg
Binary file removed image/image_scale_restore_example.png
Diff not rendered.
Binary file added image/image_scale_restore_node.jpg
Binary file removed image/image_scale_restore_node.png
Diff not rendered.
Binary file added image/image_scale_restore_v2_node.jpg
Binary file removed image/image_scale_restore_v2_node.png
Diff not rendered.
Binary file added image/image_shift_example.jpg
Binary file removed image/image_shift_example.png
Diff not rendered.
Binary file added image/image_shift_node.jpg
Binary file removed image/image_shift_node.png
Diff not rendered.
Binary file added image/inner_glow_example.jpg
Binary file removed image/inner_glow_example.png
Diff not rendered.
Binary file added image/inner_glow_node.jpg
Binary file removed image/inner_glow_node.png
Diff not rendered.
Binary file added image/inner_shadow_example.jpg
Binary file removed image/inner_shadow_example.png
Diff not rendered.
Binary file added image/inner_shadow_node.jpg
Binary file removed image/inner_shadow_node.png
Diff not rendered.
Binary file added image/integer_node.jpg
Binary file removed image/integer_node.png
Diff not rendered.
Binary file added image/lama_example.jpg
Binary file removed image/lama_example.png
Diff not rendered.
Binary file added image/lama_node.jpg
Binary file removed image/lama_node.png
Diff not rendered.
Binary file added image/layer_image_transform_example.jpg
Binary file removed image/layer_image_transform_example.png
Diff not rendered.
Binary file added image/layer_image_transform_node.jpg
Binary file removed image/layer_image_transform_node.png
Diff not rendered.
Binary file added image/layer_mask_transform_node.jpg
Binary file removed image/layer_mask_transform_node.png
Diff not rendered.
Binary file added image/layercolor_nodes.jpg
Binary file removed image/layercolor_nodes.png
Diff not rendered.
Binary file added image/layercolor_title.jpg
Binary file removed image/layercolor_title.png
Diff not rendered.
Binary file added image/layerfilter_nodes.jpg
Binary file removed image/layerfilter_nodes.png
Diff not rendered.
Binary file added image/layermask_nodes.jpg
Binary file removed image/layermask_nodes.png
Diff not rendered.
Binary file added image/layerstyle_nodes.jpg
Binary file removed image/layerstyle_nodes.png
Diff not rendered.
Binary file added image/layerstyle_title.jpg
Binary file removed image/layerstyle_title.png
Diff not rendered.
Binary file added image/layerutility_nodes.jpg
Binary file removed image/layerutility_nodes.png
Diff not rendered.
Binary file added image/levels_example.jpg
Binary file removed image/levels_example.png
Diff not rendered.
Binary file added image/levels_node.jpg
Binary file removed image/levels_node.png
Diff not rendered.
Binary file added image/light_leak_example.jpg
Binary file removed image/light_leak_example.png
Diff not rendered.
Binary file added image/light_leak_node.jpg
Binary file removed image/light_leak_node.png
Diff not rendered.
Binary file added image/lut_apply_example.jpg
Binary file removed image/lut_apply_example.png
Diff not rendered.
Binary file added image/lut_apply_node.jpg
Binary file removed image/lut_apply_node.png
Diff not rendered.
Binary file added image/mask_box_detect_example.jpg
Binary file removed image/mask_box_detect_example.png
Diff not rendered.
Binary file added image/mask_box_detect_node.jpg
Binary file removed image/mask_box_detect_node.png
Diff not rendered.
Binary file added image/mask_by_different_example.jpg
Binary file removed image/mask_by_different_example.png
Diff not rendered.
Binary file added image/mask_by_different_node.jpg
Binary file removed image/mask_by_different_node.png
Diff not rendered.
Binary file added image/mask_edge_compare.jpg
Binary file removed image/mask_edge_compare.png
Diff not rendered.
Binary file added image/mask_edge_shrink_example.jpg
Binary file removed image/mask_edge_shrink_example.png
Diff not rendered.
Binary file added image/mask_edge_shrink_node.jpg
Binary file removed image/mask_edge_shrink_node.png
Diff not rendered.
Binary file added image/mask_edge_ultra_detail_example.jpg
Binary file removed image/mask_edge_ultra_detail_example.png
Diff not rendered.
Binary file added image/mask_edge_ultra_detail_node.jpg
Binary file removed image/mask_edge_ultra_detail_node.png
Diff not rendered.
Binary file added image/mask_edge_ultra_detail_v2_example.jpg
Binary file removed image/mask_edge_ultra_detail_v2_example.png
Diff not rendered.
Binary file added image/mask_edge_ultra_detail_v2_node.jpg
Binary file removed image/mask_edge_ultra_detail_v2_node.png
Diff not rendered.
Binary file added image/mask_gradient_example.jpg
Binary file removed image/mask_gradient_example.png
Diff not rendered.
Binary file added image/mask_gradient_node.jpg
Binary file removed image/mask_gradient_node.png
Diff not rendered.
Binary file added image/mask_grow_example.jpg
Binary file removed image/mask_grow_example.png
Diff not rendered.
Binary file added image/mask_grow_node.jpg
Binary file removed image/mask_grow_node.png
Diff not rendered.
Binary file added image/mask_invert.jpg
Binary file removed image/mask_invert.png
Diff not rendered.
Binary file added image/mask_invert_node.jpg
Binary file removed image/mask_invert_node.png
Diff not rendered.
Binary file added image/mask_motion_blur_example.jpg
Binary file removed image/mask_motion_blur_example.png
Diff not rendered.
Binary file added image/mask_motion_blur_node.jpg
Binary file removed image/mask_motion_blur_node.png
Diff not rendered.
Binary file added image/mask_preview_example.jpg
Binary file removed image/mask_preview_example.png
Diff not rendered.
Binary file added image/mask_stroke_example.jpg
Binary file removed image/mask_stroke_example.png
Diff not rendered.
Binary file added image/mask_stroke_node.jpg
Binary file removed image/mask_stroke_node.png
Diff not rendered.
Binary file added image/menu_layer_color.jpg
Binary file removed image/menu_layer_color.png
Diff not rendered.
Binary file added image/menu_layer_filter.jpg
Binary file removed image/menu_layer_filter.png
Diff not rendered.
Binary file added image/menu_layer_mask.jpg
Binary file removed image/menu_layer_mask.png
Diff not rendered.
Binary file added image/menu_layer_style.jpg
Binary file removed image/menu_layer_style.png
Diff not rendered.
Binary file added image/menu_layer_utility.jpg
Binary file removed image/menu_layer_utility.png
Diff not rendered.
Binary file added image/motion_blur_example.jpg
Binary file removed image/motion_blur_example.png
Diff not rendered.
Binary file added image/node-menu.jpg
Loading

0 comments on commit ae713aa

Please sign in to comment.