devxlogo

April 8, 2008

Load an Image Using the JAI API

This tip shows you how to use the JAI API to load an image named myimage.jpg in just three lines of code: ParameterBlock parameterBlock=new ParameterBlock();parameterBlock.add(“myimage.jpg”);myimage=JAI.create(“fileload”,parameterBlock);…

Extending the Existing CLR Type

Yes, you read that right. With .NET 3.0, you can extend any existing CLR type by adding one or more public methods to it?without recompiling the library. These new members

Going Live with a Grails-Powered Blog

he DevX article Build Your First Grails Project: A Grails-Powered Blog showed how easy it is to create a purely functional web application using Grails. This article expands on the