Josh Marinacci

Results 123 comments of Josh Marinacci

this looks good: You can also initialize a new Jimp image with a raw image buffer: new Jimp({ data: buffer, width: 1280, height: 768 }, (err, image) => { //...

I think we just need to add an example of how to make this work.

Can you make quality an optional parameter? If it's not specified then there should be a default.

true. I left it in because doing chunky lines is occasionally useful. Instead of removing it, though, how about we change it to a custom property like. pureimageLineSmoothingEnabled?

One of the problems I've had with AFrame is that it drops you off a cliff once you start creating custom components for more complex use cases. You have to...

I just pushed back a patch that hopefully fixes this for you. It was due to the minimum bounds of the polygon being slightly too small in some cases, so...

Most likely this is an issue with our font parser dependency. What version of opentype.js do you see works correctly?

I have an idea of the root cause (or at least one root cause). It's probably because the text processing code doesn't respect Cubics, only quadratic curves. TrueType only uses...

This is what it looks like with the patch on the bug_144 branch. Much better, though now we can see that holes are filled ![bug_144](https://user-images.githubusercontent.com/276938/192385082-87af0b63-aa27-4870-a450-063b7a36f3f8.png)

I always thought the problem was dealing with errors. A source code file is constantly in flux. Most of the time it will be close to valid but not completely...