Mark Schmieder

Results 20 comments of Mark Schmieder

At least we know the character encoding isn't the reason, as that function writes to UTF-8 vs. UTF-16. Do you pre-filter the chart's data? In one of my applications, I...

Well, best of luck, and I look forward to seeing what you find out. I can see how you wouldn't have the luxury of pre-filtering the data even with a...

I may have dealt with this issue previously. I'm in the midst of pulling archived code to add to my BasicGraphics2D library that I am preparing as a general purpose...

I found the AWT version of my resampling algorithm just now, and am copying it verbatim below, hoping that the code, variable and function and class names, and comments, are...

/** * This method transforms a set of data points to screen coordinates for * purposes of rendering or export. * * The goal here is to write efficient code...

Here is a typical usage context within a chart panel that derived ultimately from a JPanel, though the critical factor is just having an available Graphics2D canvas at hand. /**...

Cool; no problem. I just finalized my final code review and API documentation revisions for five open source libraries that hopefully I will get published tomorrow (finally), one of which...

I just did this for my EPS library a couple of weeks ago, after much research into the proper way to handle it (it is often handled incorrectly). I am...

This is probably enough to go on for the SVG work, without bloating this comment with even more code. I always write cascading functions that allow for entry points that...

Note that this doesn't cover raster images, but I don't think SVG supports that the same way as PostScript so I'm not bothering to copy/paste my CMYK image support. At...