Add selection-based effects (invert, adjust, greyscale)
- New Image > Selection Effects submenu - Invert Selection: Invert colors only within selected area - Adjust Selection: Brightness/contrast/gamma on selection only - Greyscale Selection: Convert just the selected area to greyscale - All effects work with any selection tool (Smart Select, Brush Select, etc.) - Useful for CNC depth maps where specific objects need different treatments
This commit is contained in:
@@ -291,6 +291,29 @@ const menuDefinition = [
|
||||
name: 'Remove Background (AI)',
|
||||
ellipsis: true,
|
||||
target: 'image/remove_background.remove_background'
|
||||
},
|
||||
{
|
||||
divider: true
|
||||
},
|
||||
{
|
||||
name: 'Selection Effects',
|
||||
children: [
|
||||
{
|
||||
name: 'Invert Selection',
|
||||
ellipsis: true,
|
||||
target: 'image/selection_effects.invert_selection'
|
||||
},
|
||||
{
|
||||
name: 'Adjust Selection',
|
||||
ellipsis: true,
|
||||
target: 'image/selection_effects.adjust_selection'
|
||||
},
|
||||
{
|
||||
name: 'Greyscale Selection',
|
||||
ellipsis: true,
|
||||
target: 'image/selection_effects.greyscale_selection'
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user