Travis
Travis
Thanks for the comment. I updated the code to grab the interior rings as well. Then changed the instantiation of the Polygonizer to false. Here is the code: ```VB Friend...
For this, I was just trying to take a bunch of separate polygons and combine them into a multipolygon. But this represents another larger issue I am also having: Take...
> Did you try setting InputTransparent to false on your parent control? By default InputTransparent is false. The code is exactly as shown above in the example. So the stack...
Here is an example [StackLayoutExample.zip](https://github.com/CommunityToolkit/Maui/files/9464655/StackLayoutExample.zip)
I found the need to have EPSG codes associated with the projection, which is why I found this library much more useful than the DotNetSpatial.Projections library. However, I found out...
I tested loading the file into the two dictionaries, but it was super slow. So instead I have already put it into an sqlite database so that the indexing was...
This seems related: I kept having problems with the bitmap being in use when calling bitmap.Copy(). This occurred in both Windows and Android. Calling GC.Collect() fixed the 'in use exception'....
It doesn't seem to matter which version of SkiaSharp I use. Nor does the error happen consistently. Seems to be more related to the previous issue I created https://github.com/mono/SkiaSharp/issues/2456
As somewhat of a workaround I found if I manually dispose and garbage collect after resizing the image it will mostly fix the issue: ``` subset.Dispose(); subset = null; GC.Collect();...
Seems like this is also affecting the byte array for the bitmap. Doing a save, then a decode on the image shows different lengths for the byte array.