jonlipsky

Results 24 comments of jonlipsky

@rick-palmsens This is the expected behavior, and it's consistent across all implementations. If you want a 1 pixel line to draw on pixel boundaries, you should translate your canvas by...

First, as I've thought about this all day, I'd be ok with Color being a struct if it reduces friction as long as we make Color properties nullable (Color?). The...

Regarding the double to float change, I feel pretty strongly that float is the correct type to use. iOS/Mac using float (ok, they use nfloat) and SkiaSharp uses floats. A...

@mattleibow There are methods to create a Color from bytes: ``` public static Color FromRgb(byte red, byte green, byte blue) public static Color FromRgba(byte red, byte green, byte blue, byte...

@mattleibow Never mind my comment. ;-). I'll merge in your PR to fix the colors

@jsuarezruiz We should talk about this PR. Here are my quick thoughts: 1) I'm fine with the changes recording the enums to match Maui.Core. 2) I like the name FontSlant....

@mattleibow It would be trivial to add that onto the API using extension methods. The hardest part would be deciding what the name of this construct should be as there...

@mattleibow The reason that there are "SaveState" and "RestoreState" methods are so that you don't need to worry about restoring the canvas to what it was the mutable properties were....

@swharden I thought it was official as well! I absolutely love that page. @bmitc FYI... The dirty secret about Maui graphics is that despite the name, Maui.Graphics has no dependencies...

@davidbritch I'm not sure what the issue/ask is. Loading images from a Stream seems (to me) to be the most cross platform approach to take. Are you looking for extension...