Moritz Mœller
Moritz Mœller
The pixmap will be very large. A solution could be to make multiple pixmaps, one for each tile/thread and combine them, at the end.
In any case – as you are not planning on adding any of this yourself, is it really important to understand my motivation? It sprung from a thread with an...
> This can be done by the caller. Yeah, I guessed so. > Also, tiny-skia is limited to 8k x 8k images at the moment. That's not an issue. Typical...
Hey, I didn't mean that to come across the wrong way. I do not expect any help here, just hints at obstacles as you gave me. It's not on my...
The colors are specified in 8bit. As soon as you blend them in any meaningful way (opacity, interpolation etc), you end up aliasing if you promote the result back to...
It would be great if this included support for out-of-gamut color values. I.e. values > 1.0 (HDR) and < 0.0 (for certain blending effects). At least for the cases where...
It is not only supported, it's the default behavior. I just tried via `safe-skia`. `f32` channel `Pixmap` written out as an OpenEXR and using out-of-gamut `Color4f`s on a gradient. All...
Check out my [port of the `icon` example](https://github.com/virtualritz/skia-test) from `skia-safe`. Modified to use linear color and writing out an OpenEXR of a single image to check in a third party...
[@termhn](https://github.com/termhn)’s latest works, [`cint`](https://crates.io/crates/cint) and [`colstodian`](https://crates.io/crates/colstodian), make the outfacing API part of this a bit more straightforward, I guess.
It's enough to add 0.5 * random([0..1]) to the value before rounding it. This is from an unpublished crate with color utilities I'm working on atm: ```rust use clamped::Clamp; use...