Vinícius Felipe Botelho Barbosa

Results 74 comments of Vinícius Felipe Botelho Barbosa

@pony5551 You're right! I only use the TCP server with my own protocol, but even in my case CrossSocket actively uses 1 TMonitor, which is the connection one, to have...

Vicent, the SKIADIR is essential, because our plugin set automatically the deployment files in all platforms of the project: ![image](https://user-images.githubusercontent.com/11139086/135733195-4dfa48f6-72f7-4eda-aa12-233d7b0c5583.png) and as you can see in the image, we use...

hello @peterbone It works exactly as you said. The graphic engine we made using Skia uses raster mode (CPU) on the bitmap canvas and GPU on the screen canvas. There...

Problem confirmed! The current comparison: ```delphi (AbsoluteWidth 0) and (AbsoluteHeight 0) and ``` needs to be replaced by: ```delphi (not SameValue(AbsoluteWidth, 0, TEpsilon.Position)) and (not SameValue(AbsoluteHeight, 0, TEpsilon.Position)) and ```

Fixed in [new release v4.0.0](https://github.com/skia4delphi/skia4delphi/releases)

Although there are still open issues about this in the quality center, I just confirmed in 11.2 that in fact the custom fonts on Android that are in the 'assets\internals'...

Fixed in [new release v4.0.0](https://github.com/skia4delphi/skia4delphi/releases)

Hi @maurobotta Take a look in this sample: [Fit and crop a image using Skia4Delphi](https://gist.github.com/viniciusfbb/0adbed0f95f2d9cff245a3e209d2a2f0) It basically loads an image and apply a resize and translation (offset) to make a...

I forgot to show you the SaveToFile example. I made a simple code for you to understand: ```delphi var LSurface: ISkSurface := TSkSurface.MakeRaster(200, 200); // Draw here using the LSurface.Canvas...

I will close it but few free to open a new one if you have more questions.