Image32 icon indicating copy to clipboard operation
Image32 copied to clipboard

A 2D graphics library written in Delphi Pascal

Results 3 Image32 issues
Sort by recently updated
recently updated
newest added

In the last repository Image32.Clipper2 requires for jtBevel which does not exists in Clipper.pas, neither in other repository Clipper.

I've notice this problem with the file attached: ![Button_error](https://github.com/user-attachments/assets/0779c118-aec4-40a6-b9cb-f83b281bede9) ![OK_GRAPH_BUTTON](https://github.com/user-attachments/assets/85dea7cb-c9f9-4890-891b-6407ec8d6fe7) The error was introduced from 22 May 2024 to 18 July 2024...

Maybe this convenience procedure makes sense here https://github.com/AngusJohnson/Image32/blob/a9af17222423f235ed6d86dd8d96707be0dbe008/source/Img32.FMX.pas#L43 ```pascal procedure AssignImage32ToFmxCanvas(Img32: TImage32; canvas: TCanvas); var bmp: TBitmap; rec: TRectF; begin bmp := TBitmap.Create; try AssignImage32ToFmxBitmap(Img32, bmp); rec := RectF(0, 0,...