Summary
Inner glow effects in Photoshop support multiple glow types, but psd2svg currently only supports SoftMatte (softer) type. Other glow types trigger a warning.
Current Behavior
- Only
SoftMatte glow type is supported
- Other glow types trigger a warning: "Only softer inner glow is supported"
- Code location: effects.py:856
Expected Behavior
Support all inner glow types that Photoshop offers to accurately render layers with different glow settings.
Implementation Notes
The add_raster_inner_glow_effect method currently checks for Enum.SoftMatte and warns about other types. Implementation would require understanding the different glow types and how they affect the SVG filter parameters.
Related Files
src/psd2svg/core/effects.py
Summary
Inner glow effects in Photoshop support multiple glow types, but psd2svg currently only supports SoftMatte (softer) type. Other glow types trigger a warning.
Current Behavior
SoftMatteglow type is supportedExpected Behavior
Support all inner glow types that Photoshop offers to accurately render layers with different glow settings.
Implementation Notes
The
add_raster_inner_glow_effectmethod currently checks forEnum.SoftMatteand warns about other types. Implementation would require understanding the different glow types and how they affect the SVG filter parameters.Related Files
src/psd2svg/core/effects.py