Daniel C. Jones

Results 167 comments of Daniel C. Jones

This is looking good. Cairo has `Cairo.read_from_png`, but that requires a filename, which is awkward. You could write the data to a temporary file, but a better (and trickier) option...

Wow I didn't realize there was such diversity in how bitmaps rendered in svg. Here's the same thing with chrome, safari, and firefox. SVG has a [image-rendering](http://www.w3.org/TR/SVG/painting.html#ImageRenderingProperty) property, but it's...

I was thinking this would be on top of Cairo. Cairo supports writing to PNG, or raw bitmap data. Converting to other formats would rely another interfacing to an external...

The correct behavior `draw(D3(6inch, 4inch), p)` from the repl is to open a browser pointed at the graphic, but I haven't finished implementing that for the D3 backend. I have...

You have a working prototype of this? Is it worth making a PR?

Ok, I see. We could use cairo to convert the raw pixel data in image into png for use in SVG to avoid the Images.jl dependency. If we keep both...

> Are you sure cairo supports this? I think there are two ways to do this if cairo is installed: (1) Set up a cairo surface with the bitmap data,...

Yeah, I think that's the right idea.

This is a solid plan. I don't think any of the basic semantics of compose are inherently 2D (maybe stuff like `hstack`, `vstack`, etc). What I'm unsure of is whether...

Ok, I understand this a bit more and was able to get correct `rand(::Gamma)` gradients using the Figurnov et al technique by adding a custom Zygote adjoint and writing a...