Noch ein Versuch ins Blaue, da ich immer noch keine laufende Build-Umgebung habe:
Refactor pixel access to use API methods instead of raw pointers
Replaces direct pointer-based pixel access with ImageMagick's `pixelColor()` API method throughout the image processing code. This change improves maintainability and reduces complexity by eliminating manual pointer arithmetic and channel offset calculations.
The refactoring also simplifies the fast path implementation by converting linear pixel iteration into explicit 2D nested loops, making the coordinate-based pixel access more intuitive and easier to follow.
Additionally cleans up variable initialization styles to use consistent brace initialization for constexpr values.[code]Ist im GIT