News archive
SVGGraph 2.12
The new version of SVGGraph doesn't contain any really big changes, but it does have several new options for how the graphs should look. I've tried to illustrate most of the new options on the example graph below.
Unless you are profoundly colour-blind, the most obvious new feature on this
graph should be the addition of green stripes - this is enabled with the
grid_back_stripe
option and the colour can be set using
grid_back_stripe_colour
. The stripes are drawn from the major grid
lines on the Y-axis.
The next change is on the Y-axis, where it is using a logarithmic scale. This is
enabled with the log_axis_y
option, and the base for the logarithm
can be set using log_axis_y_base
. I've added some extra documentation
about using the log scale on the axis
and grid options page.
TagCanvas 2.1.2
A small update to TagCanvas this time, all it does is scale the cursor position in browser or screen pixels to match the pixels in the canvas. That doesn't sound very interesting, but it means that using CSS to change the size of the canvas will no longer mean that the mouse doesn't select the tags properly.
This does not mean that you can use CSS to set the canvas size without using the
canvas element's width
and height
attributes - they
are still required to set up the size of the canvas in pixels. If you use CSS to
change the size of a canvas, it will use the width and height given by these
attributes internally.
This means that increasing the size of a canvas using CSS is likely to cause aliasing, so try to set the width and height attributes as close to the actual size as possible or it might not look very good.
JPEG Saver 4.8.1
There are a few bugs fixed in this new version of JPEG Saver. A couple of them were small issues I found myself while writing the new online JPEG Saver documentation, but the worst was an intermittent crashing that didn't seem to be caused by any particular image or option. In the end I had to compile in support for creating a mini-dump when JPEG Saver crashes so I could find out where the crash happened.
The crash dump support is still compiled in to version 4.8.1 - if you think JPEG Saver is crashing, please contact me and I'll do my best to find and fix the problem. Crash dumps are only created when you set an option in the config file, otherwise JPEG Saver will try to crash quietly and leave you alone.
Other changes in this version are added support for loading CMYK JPEG images (very unusual - I've only found one in the time I've been working on JPEG Saver), some very simple support for using the Windows Pictures library folder when there are no folders already set up, and some improvements in the dialogs to prevent setting options that won't work. As usual, the new version is available from the downloads page.
SVGGraph 2.11
This new version of SVGGraph contains some quite major changes, mainly to support a new method of specifying the data to show on the graphs. I've called the new data format “structured data” and you can read about it on the new structured data page.
The main advantage of the new structured data format is that it allows for bundling other information along with the data fields. At the moment this is limited to tooltips, colours, labels, links and the text shown on the X-axis, but I plan to add more support in future.
JPEG Saver 4.8
The main changes to this version of JPEG Saver are in the resizing options, though they are a bit more obvious than the previous changes I made there in version 4.7.1. I've split the resizing options up so that you can specify a maximum size for images to be scaled down to, and a minimum size for images to be scaled up to. You can choose a different resizing method for smaller and larger images as well.
Also new to the resizing options section is the choice over whether to resize by percentage or pixels. The percentage method is the old way, where 100% means that the image is scaled to fit the screen by width or height depending on the shape of the image and screen. Resizing by pixels scales the image to fit its longest edge to the given length in pixels. Resizing by pixels also allows you to specify a size that is larger than your screen, instead of being limited to 100% in percentage mode.
I've also made improvements to the way the border item works. If you are resizing by percentage, then the border sizes are taken into account when calculating the new image size to keep the borders on the screen. There are also some new options available to specify which edges are drawn for the borders, and how the lines end.