tell me if you have the possibility to correct these bugs (probably inherent to TinySVG)
(if not, I wouldn't waste my time making reports, which have probably already been done).
the bug that bothers me most concerns anti-aliasing on transparency
below is a white circle (transparent image) on a white background
Code: Select all
OpenWindow(0, 0, 0, 800, 600, "", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
SetWindowColor(0,$FFFFFF)
CreateImage(0,200, 150,32,#PB_Image_Transparent )
StartVectorDrawing(ImageVectorOutput(0))
AddPathCircle(100,75,50):VectorSourceColor($FFFFFFFF):StrokePath(4)
StopVectorDrawing()
z=4
ResizeImage(0,200*z, 150*z,#PB_Image_Raw )
ImageGadget(0, 0, 0, 800, 600, ImageID(0))
Repeat
Event = WaitWindowEvent()
Until Event = #PB_Event_CloseWindow