Jeremy James

Results 12 comments of Jeremy James

That's my understanding, yes. Once that's available then we can bump dependencies here (and consider a resvg release?). The only question is if it's useful to have width and height...

@waywardmonkeys any idea of what sort of tests would be useful in this case? I'm imagining just integration tests, but if there are sensible unit tests I could add those?...

I'm using resvg for handling a variety of SVG files, and noticed that the quality of scaled down PNGs is definitely more blocky compared to other renderers, and I assume...

Ah, thank you. I somehow missed that one. My understanding is that it generates a set of mipmaps from the base (upper) size to the preferred lower size which calculated...

For what it's worth, I finally pushed an implementation of mipmaps I did a couple of months ago [on this branch](https://github.com/jermy/tiny-skia/tree/add_basic_mipmap_scaling) . It's definitely not got all the features of...

It should address the downscaling quality in resvg, yes. I haven't benchmarked it, and sadly haven't added any tests. In this patch it will be invoked if you are downscaling...

Oh, right - that's relatively simple. If you do a bilinear scale - that is, take 4 corners of a square and interpolate them to a new pixel - then...

I've spent far too long looking through Skia code now, and not completely sure if it makes any sense. Yes, `SkSamplingOptions()` does only allow you to set either using bilinear...

@si14 I've pushed a PR as #145 but only updating it to ensure it passes the existing tests and builds - it probably needs an extra test (or several) and...

What general changes would be needed to support them? And do you have an idea of which rotation origin is correct?