Welcome to the very first Easter edition of Java desktop links of the week :-)
I hope you all had a great easter, had a chance to spend time with family, and didn't eat too much chocolate. Perhaps because of the short week, there has been far less news this week than normal. Let's get started:
Swing
- The Limewire blog has a post on how to create thumbnails of images faster than the generally recommended getFasterScaledInstance() approach by firstly sub-sampling the image to strip out some data. As they state, subsampling is a process of reading every nth pixel in every nth line. I integrated this code into some of my projects, and whilst I don't have any exact values, it does feel faster.
- Kirill Grouchnikov (@kirillcool ) notes that recently the Nimbus designer was moved into the OpenJDK trunk . However, following this there was discussion around the inclusion of some binary jar files that are not allowed , and so at this point the commit has been reversed .
JavaFX
- Danny Coward (@theplanetarium ) has an interview with Tor Norbye, discussing Tor's thoughts regarding JavaFX . Tor recently shifted into the JavaFX team, so it is good to hear his thoughts from a newbies perspective.
- Danny Coward posts about work going on to improve the performance of JavaFX , and includes links to tips that you can use to improve your JavaFX applications.
- Following on from this, Jim Connor has a blog post about reducing the node count in JavaFX applications as a means of improving performance .
- Another performance article, this time by Jeff Frieson , offers a means to reduce memory footprint by using a CustomNode alternative .
- Another post by Jeff Frieson continues his series of posts exploring the JavaFX API . This post focuses on the JavaFX media, GUI construction, and effects APIs.
- Jim Weaver (@JavaFXpert ) has a post about using the singleton design pattern in JavaFX to share a model .
- Additionally, Jim Weaver has a post about invoking JavaFX functions from Java .
- Alexandr Scherbatiy has a post that demonstrates how he has created a simple function plotter in JavaFX . Given the simplicity of the code, this is an impressive demo!
- Rakesh Menon has a post detailing how to load images in JavaFX .
That's it for another week. Have a great week and keep up the hard work in whatever you're passionate about! :-)
Thoughts on “Java desktop links of the week, April 13”