Image filters
Image filters can be plugged in to enhance images during album generation, adding watermarking, logos etc.
Image filters can be applied to closeup images, thumbnail images or both. Several filters can be chained to produce the desired effect. Imagine first applying red-eye reduction, then sharpening images and finally adding your logo to a corner. Well, all these filters are not written at the moment, but I expect them to show up: An open API and source code example are provided so developers easily can add new filters. Currently there is no graphical user interface for image filters, but with some fairly simple settings in the "User defined variables" section of the Advanced page, they can be controlled.
Quick example
Learning by example is powerful, so let's start by applying a grayscale filter to each thumbnail and add a copyright notice to the corner of each closeup image. (For a formal description of available filter features, see below.)
Start JAlbum and prepare a project for album creation. Now go to the Advanced page of JAlbum. There you will find a section called "User defined variables". We will use this section to set the properties of our filters. Enter exactly as this example shows. Pay attention to capitalization, ("GrayscaleFilter" is different to Grayscalefilter").
Setting filter properties on the Advanced page
Now go to the Main page and press "Rebuild all" to have the album generated and filters applied. (Pressing "Rebuild all" is important as pressing "Make album" does not process images if they already exist from a previous album generation.) The resulting thumbnails and closeup images should now look something like this:
Thumbnail and closeup images processed through grayscale and text filters
The filters are applied in the order they are numbered (filter1, filter2 etc). The filter settings gets saved with the album project so don't forget to save your project when you are happy with your settings.
The filters
Below is a list of the initially provided filters and their properties (features). New filters can be installed by putting their Java class files inside the plugins directory of JAlbum. All filters require the class property to be specified as filter identifier. All filters accept the thumbnails and closeups property that controls if the filter is to be applied to thumbnails only, closeups only or both. Default is both.
Missing a filter in this list? Please also look for filters made by JAlbum users in the forum.
Grayscale filter

Converts images to grayscale.
Property |
Values |
Comment |
class |
GrayscaleFilter |
Identifying filter name (required) |
thumbnails |
true|false |
Apply to thumbnails? |
closeups |
true|false |
Apply to closeups? |
prescale |
true|false |
Apply filter before scaling? |
Example: class=GrayscaleFilter
Applies the grayscale filter to both thumbnails and closeups.
Tint filter

Adjusts the color of an image.
Property |
Values |
Comment |
class |
TintFilter |
Identifying filter name (required) |
thumbnails |
true|false |
Apply to thumbnails? |
closeups |
true|false |
Apply to closeups? |
prescale |
true|false |
Apply filter before scaling? |
redPercent |
Strength in percent |
Red tone (100) |
greenPercent |
Strength in percent |
Green tone (100) |
bluePercent |
Strength in percent |
Blue tone (100) |
Example: class=TintFilter redPercent=100 greenPercent=60 bluePercent=60
Applies a redish tint to images
You can get interresting effects by combining the tint filter with the grayscale filter.
Logotype filter

Adds image/logotype of your choice on top of album images.
Property |
Values |
Comment |
class |
LogoFilter |
Identifying filter name (required) |
thumbnails |
true|false |
Apply to thumbnails? |
closeups |
true|false |
Apply to closeups? |
prescale |
true|false |
Apply filter before scaling? |
src |
URL to jpeg or gif image |
Any valid URL will do (http:// file:/// etc) |
align |
left|center|right |
Horizontal alignment of logotype (left) |
valign |
top|center|bottom |
Vertical alignment of logotype. (top) |
margin |
Margin in pixels |
Distance from edge of logotype to edge of image. (0) |
offset |
Horizontal offset in pixels |
Fine tuning of placement. (0) |
voffset |
Vertical offset in pixels |
Fine tuning of placement. (0) |
Example: class=LogoFilter src="http://jalbum.net/images/cup.png" valign="bottom" closeups
Add the JAlbum logo from the JAlbum web site to the right corner of closeups.
Another example: class=LogoFilter src="file:///C:/adir/anotherdir/animage.jpg" closeups
Pick an image from the local hard disk instead from a remote location
The PNG image type supports variable transparency which makes PNG files perfect candidates for superimposing logotypes onto images without getting jagged edges
Text filter

Adds texts to album images.
Property |
Values |
Comment |
class |
TextFilter |
Identifying filter name (required) |
thumbnails |
true|false |
Apply to thumbnails? |
closeups |
true|false |
Apply to closeups? |
prescale |
true|false |
Apply filter before scaling? |
text |
Text to display |
Allows JAlbum $variables like $originalDate and $comment to be embedded for dynamic content |
color |
HTML color definition |
Understands common Netscape and Explorer color names like "pink", #rrggbb and r,g,b,a format |
face |
Name of font |
Valid font names from your system like "Helvetica", "Verdana", "Courier New" etc |
style |
plain|bold|italic|bolditalic |
Font style (bold) |
size |
Font size in pixels |
(16) |
antialias |
true|false |
Antialiasing gives smoother edges. (true) |
align |
left|center|right |
Horizontal alignment of text (left) |
valign |
top|center|bottom |
Vertical alignment of text. (top) |
margin |
Margin in pixels |
Distance from edge of text to edge of image. (5) |
offset |
Horizontal offset in pixels |
Fine tuning of placement. (0) |
voffset |
Vertical offset in pixels |
Fine tuning of placement. (0) |
Example: class=TextFilter text="Date: $fileDate" size=20 color=#aaffaa closeups
Add the file date of the image on top of the image in a light green color
Shadow text filter

Like text filter but also adds a drop shadow.
Extended properties (see TextFilter for the others):
Property |
Values |
Comment |
class |
ShadowTextFilter |
Identifying filter name (required) |
shadowColor |
HTML color definition |
Color of shadow. Understands common Netscape and Explorer color names like "pink", #rrggbb and r,g,b,a format |
shadowDistance |
Distance in pixels |
(2) |
Example: class=ShadowTextFilter text="Date: $fileDate" size=20 color=#aaffaa closeups
Add the file date of the image on top of the image in a light green color with a black shadow
Watermark filter

Like text filter but with a watermark effect.
Extended properties (see TextFilter for the others):
Property |
Values |
Comment |
class |
WatermarkFilter |
Identifying filter name (required) |
strengthPercent |
Strength in percent |
Controls watermark visibility. (20) |
Example: class=WatermarkFilter text="JAlbum" size=30 closeups valign=bottom margin=0
Add a "JAlbum" watermark to the lower left edge
Zoom filter

Zooms into images. Good for making thumbnails more interpretable.
Property |
Values |
Comment |
class |
ZoomFilter |
Identifying filter name (required) |
zoomPercent |
How far to zoom into center of image |
(30) |
thumbnails |
true|false |
Apply to thumbnails? |
closeups |
true|false |
Apply to closeups? |
prescale |
true|false |
Apply filter before scaling? Highly recommended |
Example: class=ZoomFilter prescale thumbnails zoomPercent=30
Applies the zoom filter to thumbnails. Note the very important prescale attribute
Fixed shape filter

Crops images if needed so they exactly fit the dimensions set for "thumbnail size" or "max image size"
in the user interface. This makes all images and/or thumbnails the same shape (portrait, squary etc).
Note: When integrated with a skin for fixed shape thumbnails, the skin should no longer specify $thumbWidth
and $thumbHeight, as those are invalid (the html pages are generated before images are processed, in this case maybe cropped). Use
$maxThumbWidth and $maxThumbHeight instead. Please see the "Lone tree" skin for a great example of its use and how
to have it automatically installed and activated with the skin.
Property |
Values |
Comment |
class |
FixedShapeFilter |
Identifying filter name (required) |
thumbnails |
true|false |
Apply to thumbnails? |
closeups |
true|false |
Apply to closeups? |
prescale |
true|false |
Apply filter before scaling? Highly recommended |
Example: class=FixedShapeFilter prescale thumbnails
Applies the fixed shape filter to thumbnails. Note the very important prescale attribute
Sharpen filter

Sharpen images.
Property |
Values |
Comment |
class |
SharpenFilter |
Identifying filter name (required) |
thumbnails |
true|false |
Apply to thumbnails? |
closeups |
true|false |
Apply to closeups? |
prescale |
true|false |
Apply filter before scaling? |
Example: class=SharpenFilter closeups
Applies the sharpen filter to closeups.
Blur filter

Blur images.
Property |
Values |
Comment |
class |
BlurFilter |
Identifying filter name (required) |
thumbnails |
true|false |
Apply to thumbnails? |
closeups |
true|false |
Apply to closeups? |
prescale |
true|false |
Apply filter before scaling? |
Example: class=BlurFilter closeups
Applies the blur filter to closeups.
Rotation filter

Rotates images a specified degree or a random degree (per image)
Note: The size of the rotated image is not the same as the original image, so don't specify fixed image widths and heights based on, for example $imageWidth along with the <img> tags in the template pages.
Property |
Values |
Comment |
class |
RotationFilter |
Identifying filter name (required) |
thumbnails |
true|false |
Apply to thumbnails? |
closeups |
true|false |
Apply to closeups? |
prescale |
true|false |
Apply filter before scaling? Recommended for smoother edges |
angle |
Angle in degrees |
Angle to rotate images (or bounds for random rotation if random is set) (15) |
random |
true|false |
If to rotate each image individually at a random degree (bounded by the angle attribute) |
Example: class=RotationFilter angle=10 random thumbnails prescale
Rotates thumbnails -10 to 10 degrees randomly
eXtended Border filter
Adds borders. frames and shadows of your choice on album images.
The latest version can be downloaded from
the forum. There you're also able to download more extensive documentation on this very flexible filter
Property |
Values |
Comment |
class |
XBorderFilter |
Identifying filter name (required) |
thumbnails |
true|false |
Apply to thumbnails? |
closeups |
true|false |
Apply to closeups? |
prescale |
true|false |
Apply filter before scaling? |
bgCol |
HTML color definition |
background color for tranparent parts of shadows and frames |
bgFile |
URL to jpeg, png or gif image |
background graphics file to use for tranparent parts of shadows and frames |
bgOffX |
x offset in pixels |
x Offset for bgFile (new with V0.95 β) |
bgOffY |
y offset in pixels |
y Offset for bgFile (new with V0.95 β) |
boBlend |
true|false |
Blending color bands on or off? |
boClip |
border clip radius in pixels |
the border may have rounded corners |
boCol |
(list of) HTML color definition(s) |
Understands common Netscape and Explorer color names like "pink", #rrggbb |
boMargin |
border margin in pixels |
margin between image edges and border |
boTrans |
(list of) frame transpareny(ies) |
0 is opaque, 100 fully transparent (invisible) |
boWidth |
border width in pixels |
all directions are set to the same value |
boWidthE |
eastern border width in pixels |
only E |
boWidthN |
nothern border width in pixels |
only N |
boWidthS |
southern border width in pixels |
only S |
boWidthW |
western border width in pixels |
only W |
brCol |
bracket line color |
(new with V0.96) |
brStyle |
bracket style |
(new with V0.96) |
brThick |
bracket line thickness |
(new with V0.96) |
brX |
horizontal bracket length |
(new with V0.96) |
brY |
vertical bracket length |
(new with V0.96) |
clip |
clip radius in pixels |
a rounded corner |
debug |
enables debug output |
for developers only |
frBlend |
true|false |
Blending color bands on or off? |
frCol |
(list of) HTML color definition(s) |
Understands common Netscape and Explorer color names like "pink" and #rrggbb |
frTrans |
(list of) frame transpareny(ies) |
0 is opaque, 100 fully transparent (invisible) |
frWidth |
frame width in pixels |
all directions are set to the same value |
frWidthE |
eastern frame width in pixels |
only E |
frWidthN |
northern frame width in pixels |
only N |
frWidthS |
southern frame width in pixels |
only S |
frWidthW |
western frame width in pixels |
only W |
shCol |
HTML color definition |
Understands common Netscape and Explorer color names like "pink" and #rrggbb |
shDir |
NE|SE|NW|SW |
shadow direction |
shDrop |
hard|norm|soft |
shadow drop falloff |
shTrans |
minimum shadow transparency |
shadow transparency near the edge of the image |
shWidth |
shadow width in pixels |
both directions are set to the same value |
shWidthX |
x shadow width in pixels |
only x |
shWidthY |
y shadow width in pixels |
only y |
shExX |
x shadow excess in pixels |
excess shadow with on the opposite side |
shExY |
y shadow excess in pixels |
excess shadow width on the opposite side |
Example: class=XBorderFilter frWidth=20 frCol=ivory shWidth=15 closeups
Adds a frame and a drop shadow to your closeups.
Another example: class=XBorderFilter boWidth=20 boCol=ivory closeups
Adds a border to your closeups.
Adding filters to skins
Skins can be configured to automatically use certain filter settings. Simply save a project containing suitable filter settings in the "User defined variables" section, then rename the project file to hints.jap and put it in the skin folder. JAlbum will now load filter settings from this file when such a skin is selected. Remember to also strip the hints file from other settings that you don't want to be applied.
Developing filters
This section is for Java programmers who wish to extend JAlbum with new image filters.
JAlbum image filters are java classes added to the plugins directory that implement the small se.datadosen.jalbum.JAFilter interface. A JAlbum filter should also adhere to the JavaBean specification, meaning:
- Provide a no-args constructor
- Getters and setter methods should follow the JavaBean naming convention.
- The filter should be serializable
A se.datadosen.jalbum.JAFilter interface must provide getter methods for name and description pretty much like an Applet. The third method is the filter method that takes a BufferedImage and a java.util.Map as arguments and returns a modified BufferedImage . A filter is allowed to directly manipulate the passed BufferedImage . The Map object contains JAlbum $variables that may be useful for the filter implementer.
The preferred way to pass parameters to a filter is to implement setter methods for them. By using a smart BeanShell script in the init.hsh file in the JAlbum program directory, JAlbum is capable of passing attributes from the user defined variables section of the Advanced tab page to the corresponding setter method of a filter.
The plugins JAlbum directory contains not only the filter classes but also the source code for the filters described on this page. Feel free to use them as base for your own filters. You will probably find the SimpleFilter below a good base for your own filters. The plugins folder also contains a compile.bat file that simplifies compilation for you. As you develop filters, please note that you do not need to restart JAlbum in order to refresh the filter classes as they are dynamically loaded every time an album is being processed. Finally, if you make a cool filter, please send it to me for inclusion.
Sample filter source code
The following simple filter adds a JAlbum logo to the corner of images:
import se.datadosen.jalbum.JAFilter;
import java.awt.*;
import java.awt.image.BufferedImage;
import javax.swing.ImageIcon;
/**
* JAlbum simple image filter adding a JAlbum logo to the
* corner of images
* @author David Ekholm
* @version 1.0
*/
public class SimpleFilter implements JAFilter {
// Implements JAFilter
public String getName() {
return "Simple filter";
}
// Implements JAFilter
public String getDescription() {
return "Add a JAlbum logo to the corner of images";
}
// Implements JAFilter
public BufferedImage filter(BufferedImage bi, java.util.Map vars) {
Graphics2D g = bi.createGraphics();
ImageIcon windowIcon =
new ImageIcon(se.datadosen.jalbum.JAlbumFrame.class.getResource(
"smallicon.gif"));
g.drawImage(windowIcon.getImage(), 0, 0, null);
return bi;
}
}
|