gammalogic

Results 12 comments of gammalogic

Thank you very much for replying, and for your work on the project! To briefly respond to your questions: ### 1. Bezier Curve Drawing with GD A bezier drawing tool...

This is a very basic animation that I've put together that shows how the points in a cubic bezier curve can be calculated and drawn with a line tool: ![Cubic...

This is a comparison of the output from the `Imagick::pathCurveToAbsolute()` function and my custom GD function: ![Cubic Bezier Curve Comparison with Imagick and GD](https://github.com/Intervention/image/assets/28597602/bda95bff-0c22-4276-92b9-42b6a615f7c3) Allowing for the difference in quality...

Thanks for your feedback. Your suggestion of limiting the line width is a good compromise. I am still trying to get the calculations finished as I am rewriting them to...

Just a quick update: I have now implemented the bezier curve calculations using the Bernstein polynomial form, which is computationally not expensive. I have also found a good solution to...

Thank you. I have added the bezier curve calculation code to the GD driver script because these calculations will not be needed by Imagick. I have also added an exception...

I did not know if these functions are meant to be accessed by the user? They might be useful if the user has a complex polygon (or bezier) that needs...

> Not all functions are currently being used, but this may well change in the future. For now, let's ignore these functions for the Bezier Curves feature. Ok, I will...

Somebody using the PHP version just asked about making a standalone version? Do you think it would be worth porting **camogen** to JavaScript and then using [Electron](https://www.electronjs.org/) to make a...

My knowledge of JS is ok, I might try to port it when I have time. The reason I was thinking about JS was because I just added an SVG...