1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
|
\documentclass[a4paper,final,twoside]{book}
\usepackage[latin1] {inputenc}
\usepackage{hyperref}
\usepackage{graphics}
\usepackage{a4wide}
\title{Manual\\JIU -- The Java Imaging Utilities}
\author{Marco Schmidt\\ \\{\tt http://schmidt.devlib.org/jiu/}}
\date{\today}
\newif\ifpdf
\pdffalse
\ifx\pdfoutput\undefined
\else
\ifx\pdfoutput\relax
\else
\ifcase\pdfoutput
\else
\pdftrue
\fi
\fi
\fi
\ifpdf
\pdfcompresslevel 9
\pdfstringdef\infotitle{JIU -- The Java Imaging Utilities -- Manual}
\pdfstringdef\infosubject{A manual for developers using the JIU library}
\pdfstringdef\infokeywords{manual, documentation, JIU, Java Imaging Utilities, imaging library, image processing, Java, software development}
\pdfinfo
{ /Title (\infotitle)
/Author (Marco Schmidt)
/Subject (\infosubject)
/Keywords (\infokeywords)
}
\fi
%\raggedbottom
\newcommand{\class}[1]{{\tt #1}}
\newcommand{\code}[1]{{\tt #1}}
\newcommand{\interface}[1]{{\tt #1}}
\newcommand{\jiu}[0]{{\sl JIU}}
\newcommand{\package}[1]{{\tt #1}}
\begin{document}
%\begin {onecolumn}
\maketitle
\thispagestyle{empty}
\pagestyle{headings}
\newpage
\tableofcontents
\newpage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter {Introduction}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{About JIU}
I started the \jiu{} (\emph{Java Imaging Utilities}) project \cite{jiuhome}
in late 2000 in order to learn about algorithms for image processing, editing,
analysis and compression and implement codecs for some file formats.\\
All code is written in the \emph{Java programming language}.
\jiu\ is supposed to run with Java runtime environments version 1.1 and higher.
This has the advantage of working under most operating systems
in use today, 1.1-compatible virtual machines have been written for
about any platform.
A minor disadvantage is the lack of interesting classes from any higher Java
versions, such as the \class{Iterator} class introduced in 1.2.
Some (seemingly) basic functionality like sorting had to be rewritten because
it was not yet available in Java 1.1.\\
JIU is distributed under the \emph{GNU General Public License} version 2.\\
I still consider JIU as beta software.
Not only is it not heavily tested, but I know that I will make changes to it,
including its package structure.\\
{\bf So please, do not rely on JIU for any mission-critical parts of your project!}
\section{About this manual}
This manual is a work in progress, just like \jiu\ itself.
Both are very dependent on my spare time.
I started writing the manual on October 17th, 2001.\\
It is written for \LaTeX, so that DVI, PostScript and PDF documents can be
generated from it.
The text file that is the basis for this manual ({\tt manual.tex}) is also
included in the source code distribution of \jiu.
\section{Why Java?}
It seems that image processing algorithms demand more resources---CPU cycles and
memory---than many other fields of computing.
So why use Java, which seems to be so high-level and wasteful with these
resources?
It's not like I \emph{had to} use that particular language, I could have implemented
the library in C, C++, Haskell, Ada, Delphi, whatever.
When I started this section, I had separated parts for advantages and disadvantages.
I gave that up and will just list points of interest in regard to picking Java.
For some of these points, it is simply not clear whether they are a true
advantage or disadvantage.
\begin{itemize}
\item \emph{Cross-platform}.
Java and its bytecode concept lead to true cross-platform development--no more
ifdefs to differentiate between platforms with different-sized integer types, etc.
\item \emph{Availability}
Especially in its 1.1 version, which is used by \jiu, Java is available on most platforms.
C and C++ may still have an advantage there, but Java also covers almost all systems from PDAs to high-end servers.
\item \emph{Runtime library}.
Java's runtime library is very rich.
From lists and hashes to Unicode support and other features for i18n, the developer does not have to reinvent the wheel.
\item \emph{Built-in cross-platform GUI}
Actually, this is more of a combination of points already mentioned.
But writing a GUI application that will not look, but at least mostly work the same on very different platforms,
is great when dealing with images.
\item \emph{Object-orientation}.
It is true that OOP is not a panacea, but it helps enforcing good design.
Encapsulation, polymorphism and inheritance and the well-known patterns often lead to more elegant solutions.
Unfortunately, Java---at least in its current version(s)---lacks a few features of a true OOP language.
As an example, there are primitive types that are not derived from \class{Object}.
\end{itemize}
TODO
\section{Why another Java library for imaging?}
Okay, so there are reasons to use Java.
But why start a completely new thing?
There is Sun's own Java extension for imaging, \emph{Java Advanced Imaging} (JAI),
as well as a couple of other projects, with full source code availability
and a user base.
Why not implement for one of those libraries instead of starting from scratch?
TODO
\section{Credits}
\begin{itemize}
\item Thanks to SourceForge \cite{sourceforge} for hosting the \jiu{} project!
\end{itemize}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter {\jiu{} basics for developers}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
This chapter is for people who don't know \jiu{} and want to learn the basics.
\section{Image data types}
\subsection{Interfaces}
The package \package{net.sourceforge.jiu.data} contains interfaces for the most
basic types of images that get typically used in image processing.
In the same package you will find implementations of those interfaces that
store image data completely in memory.
This will work nicely with images that fit well into the system's memory.
\begin{itemize}
\item \interface{BilevelImage} for images with the two colors black and white (e.g. faxes).
\item \interface{Gray8Image} for images with shades of gray (e.g. photographs).
\item \interface{Paletted8Image} for color images that have 256 or less different colors.
\item \interface{RGB24Image} for truecolor image in RGB color space.
\end{itemize}
More on the topic of the various classes and interfaces dealing with image data
types can be found in chapter \ref{imagedatatypes}.
\subsection{Classes}
As was said before, for all these interfaces data types exist that implement them
by storing the complete image in memory.
The names of those classes start with \code{Memory} and then simply copy the
name of the interface that they are implementing.
Examples: \class{MemoryBilevelImage}, \class{MemoryRGB24Image}.
In order to create a new image object, simply call the constructor with width and height
as arguments.
If you want an RGB truecolor image, this would be it:
\begin{verbatim}
import net.sourceforge.jiu.data.*;
...
MemoryRGB24Image image = new MemoryRGB24Image(1200, 800);
\end{verbatim}
See the API docs of the interfaces for code examples to get and set pixels.
\subsection{AWT image data types}
What about Java's existing image classes, \class{java.awt.Image} and its children?
You can convert between them and \jiu{}'s own image data classes, but you cannot use them directly.
Conversion is done with \jiu{}'s \class{ImageCreator} class.
Example:
\begin{verbatim}
import java.awt.*;
import net.sourceforge.jiu.gui.awt.*;
...
PixelImage jiuImage = ...; // initialize
java.awt.Image awtImage = ImageCreator.convertToAwtImage(jiuImage);
// and back
RGB24Image anotherJiuImage = ImageCreator.convertImageToRGB24Image(awtImage);
\end{verbatim}
As the conversion method from AWT to \jiu{} uses AWT's \class{PixelGrabber} (which works
on 24 bit pixels in RGB color space) you will always get back an \class{RGB24Image}.
\section{Loading images from files}
Most of the time, images will be loaded from a file, processed and then saved back to a file.
\jiu{} comes with a number of codecs that can do exactly that.
In addition, \jiu{} can use \class{java.awt.Toolkit} to reuse the image loading functionality
built into the Java Runtime Environment.
That makes it possible to load images from JPEG, GIF and PNG files.
\begin{verbatim}
import net.sourceforge.jiu.gui.awt.*;
...
PixelImage image = ToolkitLoader.loadViaToolkitOrCodecs("filename.jpg");
\end{verbatim}
This basically just tries all \jiu{} codecs plus \class{java.awt.Toolkit}.
If you use codecs directly, you can retrieve additional information, make the codec
load another image than the first one, make the codec load only part of an image, etc.
But the easiest method of loading an image is the one-liner you see above.
If you must avoid AWT for some reason (the bug that keeps an AWT thread from terminating,
missing X server, etc.), use the class \class{ImageLoader} from the package
\package{net.sourceforge.jiu.codecs}.
It will try all codecs that are part of \jiu{}:
\begin{verbatim}
import net.sourceforge.jiu.codecs.ImageLoader;
...
PixelImage image = ImageLoader.load("filename.bmp");
\end{verbatim}
\section{Operations}
Now that you've created or loaded the image you will probably want to do something with it.
In \jiu{}, you'll need an \emph{operation} class to do that (all classes that extend \class{Operation} are operations).
Many operations are not derived directly from \class{Operation} but from \class{ImageToImageOperation},
which requires that the operation takes an input image and produces an output image.
\jiu{}'s operations are put into different packages, depending on the type of operation.
\subsection{Creation and usage}
Running operations always follows the same pattern:
\begin{itemize}
\item Create an object of the operation's class.
\item Give all necessary parameters to that object (via methods whose names start with \code{set}).
Read the API documentation of the operation class to learn about what parameters exist for a given
operation, if they are mandatory or optional and what the default values are.
Most of the time you will also find a code snippet that demonstrates the usage.
\item Call the \code{process()} method of that object, catching all exceptions that may be thrown
(\class{OperationFailedException} or children of that exception class).
\item Retrieve any output that the operation might have produced (via methods whose names start with \code{get}).
Again, refer to the API documentation of the specific operation that you are trying to use.
\end{itemize}
As an example, let's say that you have just loaded \code{image} from a file, as seen in the previous section.
Now you want to make the image brighter and decide for a 30\% brightness increase.
There is a class \class{Brightness} in the package \package{net.sourceforge.jiu.color.adjustment}.
\begin{verbatim}
import net.sourceforge.jiu.color.adjustment.*;
...
Brightness brightness = new Brightness();
brightness.setInputImage(image);
brightness.setBrightness(30);
brightness.process();
PixelImage adjustedImage = brightness.getOutputImage();
\end{verbatim}
Just in case you wonder - \interface{PixelImage} is the most basic interface for image data.
Everything in \jiu{} that stores an image must implement it.
Because \class{ImageToImageOperation} does not make any assumptions about the types of image data classes
that its extensions will deal with, both \code{getInputImage} and \code{setInputImage} deal with this interface.
\subsection{Exceptions}
Not all errors made when using operations can be determined at compile time.
As an example, if you give an image to an operation which is not supported by
that operation, this will be determined only after \code{process} has been called.
Also, some operations may fail under specific circumstances only -- not enough memory,
a particular file does not exist, etc.
For these errors the \code{process()} method of \class{Operation} can throw exceptions of type \class{OperationFailedException}.
Catch these exceptions to find out about what went wrong, they contain textual descriptions in English:
\begin{verbatim}
Operation operation = ...; // initialize
try
{
operation.process();
}
catch (OperationFailedException ofe)
{
System.err.println("Operation failed: " + ofe.toString());
}
\end{verbatim}
\section{Saving images to files}
There is no class like \class{ImageLoader} to do saving with a single line of code.
But saving works pretty much the same with all of \jiu{}'s codecs.
Here is an example that uses \class{PNMCodec} (which supports PBM, PGM and PPM).
It will save \code{image} to a file \code{output.pnm}:
\begin{verbatim}
import net.sourceforge.jiu.codecs.*;
...
PNMCodec codec = new PNMCodec();
codec.setFile("output.pnm", CodecMode.SAVE);
codec.setImage(image); // image to be saved
codec.process();
codec.close();
\end{verbatim}
Except for the first line where the codec object is created, the rest of the code can be used
with \class{BMPCodec}, \class{PalmCodec} or any of the other codecs that support saving.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter {Terminology}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
This chapter defines some terminology to be used throughout this manual, other parts of the
library's documentation and its source code.
It clarifies language for those with background knowledge on the field of image processing and
introduces concepts to beginners.
\section{Images}
Images are at the core of this library.
They are data structures storing color dots arranged in a two-dimensional grid of a fixed size.
An \emph{image} is defined as a sequence of \emph{rows}.
The number of rows in an image is called its \emph{height}.
Rows are numbered from top to bottom from $0$ to $height - 1$.
Each row of an image is a sequence of \emph{pixels}.
The number of pixels in a row is called its \emph{width}.
All rows of an image must have the same width.
Pixels within a row are numbered from left to right from $0$ to $width-1$.
Given these definitions, every pixel can be uniquely addressed
using a pair of integer numbers: its zero-based horizontal and vertical position.
When stating a pixel position, this library names the horizontal position followed by
the vertical position: $(x, y)$.
Note: this is somewhat different from mathematical notation with regard to matrices, which
is usually defined the other way around, vertical before horizontal.
A pixel is a single color point.
It is made up of one or more \emph{samples}.
All pixels of an image have the same number of samples.
The samples of a single pixel define its color.
Behind every image there is a color model which defines how to get from
a pixel's samples to that pixel's color.
There has been no mentioning yet of what a sample really is.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter {Image data types}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\label{imagedatatypes}
There are quite a few interfaces and classes for image types in \jiu{}.
In fact, enough to be a bit confusing for someone trying to get a first impression of the library.
This chapter is about both about the image classes from the Java runtime library
and those introduced by \jiu{}.
\section{Accessing image data with the AWT classes}
As I wrote in the first chapter, one of my reasons for writing \jiu{} was that I cannot
agree with some of the design decisions made in the runtime library with regard to imaging.
The lack of different image class types in the AWT (Abstract Windowing Toolkit, the
package \package{java.awt} and everything in it) is one of them.
A single abstract \class{Image} class with almost no methods is nice if all
you do with images is load them from somewhere and display them in your GUI application.
Which is exactly what imaging was like in Java 1.0.
Remember applets?
However, once you want to manipulate images, there really should be some methods to access data.
With \class{ImageProducer}, \class{ImageConsumer} and the various filter classes in \package{java.awt.image}
there was a way to manipulate data, but not a straight-forward one.
Besides, the setPixels method takes a byte array and a color model as parameters.
You cannot just put a green pixel at position (x, y).
Or a grey value with 16 bits of precision.
Only with Java 1.2 an image class was introduced (\class{BufferedImage}) that comes with getter and setter methods for pixels.
Unfortunately, these access methods are restricted to RGB pixels with 24 bits which must be encoded as \class{int} values for some reason.
Each RGB pixel must be put together using shift and or operations, requiring to specify a transparency value as well.
Not straight-forward.
There isn't even a helper encoder and decoder class for those ARGB values.
You can also access the data buffers of a \class{BufferedImage} object, but again, you better know what types were used
and that data is stored top to bottom, and in each row from left to right.
Also, it's not easy to find out how to manipulate a palette (color map) for an image with 256 distinct colors.
To summarize--a single (or two) classes aren't enough to represent the wide variety of image types in use.
Faxes, medical imaging, satellite data, photos, image data suitable for printing all need different data types.
Being forced to have knowledge on how things are done internally is bad design.
\section{Image data interfaces in \jiu{}}
This gives an overview of the most important image data interfaces and their implementations.
You might also want to look into the source code of \package{net.sourceforge.jiu.data}--it's relatively little and, hopefully, readable.
\subsection{PixelImage}
\jiu{}'s base pixel image data interface is \interface{PixelImage}.
It only knows about its resolution (width and height) and the number of channels that it consists of.
The smallest common denominator.
A \emph{sample} is a single value in one channel at a certain position.
A \emph{pixel} is the combination of all samples from all channels at the same position.
If an image has only one channel, the terms sample and pixel can be used interchangeably.
\subsection{IntegerImage}
Derived from \interface{PixelImage} is \interface{IntegerImage}.
It only adds the restriction that each sample must be an integer value between $0$ and $2^{31}-1$ (also known
as \code{Integer.MAX\_VALUE}) so that it can be stored in Java's \code{int} type (which is a signed
32 bit integer type).
Note that this still does not make any assumptions on how those integer values are interpreted as colors.
A value of 0 at a certain position in a one-channel image has no meaning yet.
\subsection{GrayImage, RGBImage, PalettedImage}
The meaning of what the numbers represent comes with this set of interfaces.
Note that they are not derived from any other interface.
\begin{itemize}
\item \interface{GrayImage} is for images with one channel where values go from black over various shades of gray
(the number depends on the available precision) to white.
\item \interface{RGBImage} is for truecolor images using the RGB color space.
It requires three channels for the color components red, green and blue.
\item \interface{PalettedImage} is for images that store index values into a
list of colors, the palette.
This image type always has only one channel.
\end{itemize}
\subsection{GrayIntegerImage, RGBIntegerImage, PalettedIntegerImage}
This layer of interfaces combines \interface{IntegerImage} and the three interfaces
from the previous section which define the meaning of an image type's content.
\begin{itemize}
\item \interface{GrayIntegerImage} is for grayscale images that use integer values
up to \code{int} as samples.
\item \interface{PalettedIntegerImage} is for paletted images that use \code{int} samples.
\item \interface{RGBIntegerImage} - same here, each of the three components stores
\code{int} samples.
\end{itemize}
Although these interfaces describe the meaning, it is still unclear what
interval a sample must be from.
Values must fit into 32 bits because of the super interface \interface{IntegerImage}, so
there is an upper limit.
But samples can be smaller, and for efficiency reasons there are types that
use less space than an int for each sample.
\subsection{BilevelImage, Gray8Image, Gray16Image, RGB24Image, Paletted8Image}
These four interfaces are derived from the aforementioned three interfaces and
define the number of bits for each sample.
\begin{itemize}
\item \interface{BilevelImage} extends \interface{GrayIntegerImage} and its pixels have only two
possible values -- black and white.
\item \interface{Gray8Image} also extends \interface{GrayIntegerImage} and uses
eight bits per sample, allowing for 256 shades of gray.
\item \interface{Gray16Image} also extends \interface{GrayIntegerImage} and uses
sixteen bits per sample, allowing for 65536 shades of gray.
\item \interface{Paletted8Image} is a \interface{PalettedIntegerImage} that uses
eight bits for the index values.
Thus, it can be used for palettes with up to 256 entries.
\item \interface{RGB24Image} uses eight bits for each of its three channels, for a total of 24 bits.
\end{itemize}
\section{Implementations of the image interfaces}
Keep in mind that the previous section introduced a lot of types, but they were all interfaces.
You will need an implementation of them to actually work on real images.
Right now, there is only an in-memory implementation of them.
It is planned to provide disk-based implementations as well.
In combination with a caching system this will enable the processing of very large images.
\subsection{In-memory: MemoryBilevelImage, MemoryGray8Image, MemoryRGB24Image, MemoryPaletted8Image}
These are in-memory implementations of the four interfaces described in the previous section.
A byte array that is large enough will be allocated for each channel.
This will allow fast and random access to samples.
However, resolution is limited by the system's main memory (or more precisely, the amount of
memory given to a virtual machine).
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter {Demo program \code{jiuawt}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\jiu{} comes with a GUI (graphical user interface) program that lets you play with
its various features.
The program is based on AWT (the Abstract Windowing Toolkit), not Swing, so that
more people can run it (Swing has only been part of Java since version 1.2).
All that is required is an installed Java 1.1 Runtime Environment and a system
that can be put into some sort of graphics mode.
If you have downloaded the non-core version of \jiu{}, you should have a JAR
archive called \code{jiu.jar} in the ZIP archive that you downloaded.
Let's say that you have extracted that JAR archive from the ZIP archive.
There are several ways to start the jiuawt application.
\begin{itemize}
\item With some Java Runtime Environments (JREs), it is enough to double-click on the
JAR archive in some file manager, e.g. the file explorer under Windows.
\item If double-clicking doesn't work for you, open a shell (sometimes it's called
console, or command prompt, DOS prompt, etc.).
Some window where you can enter commands.
Change to the directory where the JAR archive is stored.
Start the program by typing \code{java -jar jiu.jar}.
Under Windows, \code{start jiu.jar} might work as well.
\item If your JRE is a bit older, the \code{-jar} switch may be unknown.
In that case, change to the directory in the shell and type
\code{java -cp jiu.jar net.sourceforge.jiu.apps.jiuawt}.
\end{itemize}
The jiuawt program requires quite a bit of memory, depending on the size of
the images that are processed in it.
Java virtual machines often do not give all of the available memory to a
running program.
In order to give an application more than the default amount, use the \code{-mx}
switch of the \code{java} program.
Example: \code{java -mx128m -jar jiu.jar}.
This will give 128 MB to the virtual machine.
Make sure that the \code{-mx} switch is the first argument to the VM.
If you are planning to use jiuawt on a regular basis, you might want to create a link to the program.
Under Windows, try calling it with \code{javaw.exe} instead of \code{java.exe}.
That way, you will not have a DOS box popping up.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter {An overview of built-in classes}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
This chapter is a reference of all classes that are part of JIU.
These classes can be classified more or less to belong into the categories
operations, data classes and helper classes.
\emph{UNFINISHED}
\section{Image data}
\package{net.sourceforge.jiu.data} contains interfaces and classes for the storage of image data,
maybe the most essential package of \jiu{} -- after all, operations work on image data.
\section{Operations}
\package{net.sourceforge.jiu.ops} has the base operation classes, plus exceptions
for most typical failures that can occur in operations.
An interface for progress notification is also provided here.
\section{Codecs}
Codecs are classes to read images from and write them to files (or in some cases, more
generally, streams).
The package \package{net.sourceforge.jiu.codecs} provides the base codec class
\class{ImageCodec} and codecs for several image file formats.
\begin{description}
\item[ImageCodec] Abstract base class for image I/O operations. Supports progress notification
and bounds definitions to load or save only part of an image.
\end{description}
\section{Color}
\package{net.sourceforge.jiu.color} offers operations that modify or analyze the color of an image.
\subsection{Analyzing color}
\begin{description}
\item[AutoDetectColorType] (\ref{autodetectcolortype}) Checks if an image can
be converted to an image type that uses less memory without losing information.
Can perform that conversion if wanted.
\item[TextureAnalysis] Takes the co-occurrence matrix
of an image and computes several properties based on it.
\end{description}
\subsection{Decreasing color depth}
Several operations deal with the process of converting images in a way so that
they will be of a different color type.
The following operation deal with conversions that will lead to a loss of information,
which usually also means that less memory will be required for the new version of the
image.
\begin{description}
\item[ErrorDiffusionDithering] (\ref{brightness}) Adjust the brightness of an image, from -100
percent (resulting image is black) to 100 percent (resulting image is white).
\item[OrderedDither] (\ref{brightness}) Adjust the brightness of an image, from -100
percent (resulting image is black) to 100 percent (resulting image is white).
\item[RgbToGrayConversion] (\ref{brightness}) Adjust the brightness of an image, from -100
percent (resulting image is black) to 100 percent (resulting image is white).
\end{description}
\section{Other color modifications}
\begin{description}
\item[Brightness] (\ref{brightness}) Adjust the brightness of an image, from -100
percent (resulting image is black) to 100 percent (resulting image is white).
\item[Invert] Replace each pixel with its negative counterpart -
light becomes dark, and vice versa. For color images, each channel is processed
independent from the others. For paletted images, only the palette is inverted.
\end{description}
\section{Filters}
The \package{net.sourceforge.jiu.filters} package has support for convolution kernel
filters and a few non-linear filters.
\section{Transformations}
The \package{net.sourceforge.jiu.transform} package provides common transformation
operations, including scaling, rotating, shearing, cropping, flipping and mirroring.
\section{Color data}
A set of interfaces and classes for histograms, co-occurrence matrices and
co-occurrence frequency matrices.
Operations to create and initialize these data classes can be found in the color package.
\section{Color quantization}
\package{net.sourceforge.jiu.color.quantization} provides interfaces and classes
for dealing with color quantization, the lossy process of reducing the number of unique
colors in a color image.
There are enough classes related to this field of color operations to justify a package
of its own.
\section{Applications}
\jiu{} comes with a couple of demo applications.
The package \package{net.sourceforge.jiu.apps} contains these applications as well
as classes with functionality used by all demo applications.
\section{GUI - AWT}
The \package{net.sourceforge.jiu.gui.awt} hierarchy contains all classes that
rely on the Abstract Windowing Toolkit (AWT), the packages from the
\package{java.awt} hierarchy of the Java core libraries.
If you don't use this part of JIU, your application will not be dependent on
a target system having an X Window server installed, or any other GUI capabilities.
This package provides classes for interoperability of \jiu{} and AWT
classes like \class{java.awt.Image}.
\section{GUI - AWT dialogs}
\package{net.sourceforge.jiu.gui.awt.dialogs} contains a set of dialog classes that
are used by the AWT demo application \class{jiuawt}.
\section{Utility class}
\package{net.sourceforge.jiu.util} holds everything that didn't fit
elsewhere.
Right now, this includes things as different as sorting, getting system
information and operations on arrays.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter {Writing operations}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\label{writingoperations}
\section{Basics}
The base class for all classes performing analysis, modification and
serialization of images or image-related data is
\class{net.sourceforge.jiu.ops.Operation}.
Any new operation will have to be directly or indirectly derived from
that ancestor class.\\
If you are going to contribute your code to \jiu\ itself, contact the maintainers,
describe the operation and ask if it is of interest for \jiu.
Maybe somebody is already writing this sort of operation, or maybe
it does not fit into \jiu.
If you contribute to \jiu, read the coding conventions (chapter \ref{codingconventions}
on page \pageref{codingconventions}ff) first.
Use some package from the \package{net.sourceforge.jiu} hierarchy (also ask the
maintainers for a suitable package; maybe a new one has to be created).\\
Instead of directly extending \class{Operation}, study some of its child
classes, maybe it is more suitable to extend one of them.
\begin{itemize}
\item \class{ImageCodec} -- An operation to load or save images from or to streams or
files. Chapter \ref{writingimagecodecs} is dedicated completely to image codecs.
\item \class{ImageToImageOperation} -- Any operation that takes one or more input
images and produces one or more output images.
See \ref{usingimagetoimageoperation} for more information.
\item \class{LookupTableOperation} -- An extension of \class{ImageToImageOperation}
that takes an input image of type \class{IntegerImage} and some tables and
produces an output image of the same type by looking up each sample of each channel
of the input image in the appropriate table and writing the value found that way to the output
image at the same position in the same channel.\\
This is the right choice for operations that process each sample independent from
all other samples of the same pixel and all other pixels of the image.
As a side effect, it is---at least in theory---easy to parallelize these kinds of
operations, in order to take advantage of a multi-processor system.
This kind of optimization is not implemented in JIU (yet).\\
Note that looking up a value in an array is relatively expensive.
If the operation in question is just a simple addition, you might want to compute the result
instead of looking it up.
It depends on the Java Virtual Machine, the hardware and the exact nature of the operation
which approach is faster.
You might want to do some tests.
\end{itemize}
\section{Using \class{ImageToImageOperation}}
\label{usingimagetoimageoperation}
As mentioned before, \class{ImageToImageOperation} takes one or more input images and
produces one or more output images.
\section{Exceptions}
The \code{Operation.process()} method has one exception in its \code{throws} clause:
\class{OperationFailedException}.
That exception class is the base for all exceptions to be thrown during the execution
of \code{process}.
\section{Progress notification}
In some cases, operations might get used in end user applications.
Human beings tend to be impatient or fear that the computer has locked up if nothing
happens on the screen for a longer time.
That is why the \class{Operation} class supports the concept of \emph{progress notification}.\\
All objects that want to be notified about the progress status (in terms of
percentage of completion) of an operation must implement the
\class{ProgressListener} interface.
The objects must then be registered with the \class{Operation} by giving
them as arguments to \code{Operation.addProgressListener}.\\
An operation supporting the progress notification concept must call one of the the
\code{setProgress} methods in regular intervals.
The \code{setProgress} methods of \class{Operation} are very simple---they
go over all registered \class{ProgressListener} objects and call their
respective \code{setProgress} methods with the same progress argument(s).
This could lead to a progress bar being updated in a GUI environment, or
a dot printed on the console.\\
Also see the API docs of
\begin{itemize}
\item \class{Operation} and
\item \class{ProgressListener}
\end{itemize}
and check out some operation classes that use \code{setProgress}.
Most of the time, it will be called after each row that has been processed,
with the current row number of the total number of rows as parameters.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter {Writing image codecs}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\label{writingimagecodecs}
\section{Introduction}
The package {\tt net.sourceforge.jiu.codecs} is responsible for loading images from and saving
them to files or arbitrary streams.
\class{ImageCodec} is the ancestor class for all operations loading or saving images.
It extends JIU's base class for operations, {\tt net.sourceforge.jiu.ops.Operation}.
This section of the manual describes how to write a new codec that fits into JIU.
Looking at the source code of an existing codec should help, too, although this section
will contain code examples.
It is recommended to read chapter \ref{writingoperations} on writing operations first.
If the codec is supposed to be included into JIU itself (which is not necessary,
everybody is free to use JIU as long as the licensing rules are obeyed when distributing
JIU itself as part of a product), the JIU maintainer(s) should be contacted first and
asked whether a new codec for a particular file format is already in the making and
if that file format is of interest for JIU.
If the codec will become part of JIU, its coding conventions (see chapter
\ref{codingconventions})
must be used to maintain overall readability of the source code.
\section{Basics}
If the codec will be part of JIU, it must be put into the package
{\tt net.sourceforge.jiu.codecs}.
When writing a new codec, you will have to override the {\tt ImageCodec} class.
Let's say you want to implement the (fictional) ACME image file format.
The class name should be assembled from the file format's name (its short form,
for brevity reasons) and {\tt ImageCodec} at the end of the name, so in this case:
\begin{verbatim}
public class ACMEImageCodec extends ImageCodec { ... }
\end{verbatim}
\subsection{Format name}
Override the method {\tt getFormatName} and make it return a short String containing the name
of the file format with the most popular file extension in parentheses:
\begin{verbatim}
public void getFormatName()
{
return "ACME Inc. (ACM)";
}
\end{verbatim}
Do not include \emph{file format} or \emph{image file format} in that description
so that the format name can be used in programs with other natural languages
than English.
\subsection{File extensions}
Override the method {\tt getFileExtensions} and make it return all
file extensions that are typical for the file format in lowercase.
In case of our fictional ACME file format, this could be:
\begin{verbatim}
public void getFileExtensions()
{
return new String[] {".acm", ".acme"};
}
\end{verbatim}
Override the method {\tt suggestFileExtension(PixelImageimage)} to return a file extension that
is most appropriate for the argument image object.
In most cases, a file format only has one typical file extension anyway.
However, some formats (like Portable Anymap) have a different file extension for every image type
(grayscale will use {\tt .pgm}, color {\tt .ppm} etc.).
For the sake of simplicity, let's say that ACME uses {\tt .acm} most of the time, so:
\begin{verbatim}
public String suggestFileExtension(PixelImageimage)
{
return ".acm";
}
\end{verbatim}
This does not have to take into account that the argument image may not be supported at all.
That will be checked elsewhere.
\subsection{Supported actions}
Override the methods \code{isLoadingSupported} and \code{isSavingSupported}
to indicate whether loading and saving are supported.
\section{Usage example}
For a moment, let's get away from writing a codec and take a look at how it
will be used.
Minimum code example for loading an image:
\begin{verbatim}
ACMEImageCodec codec = new ACMEImageCodec();
codec.setFile("image.acm", CodecMode.LOAD);
codec.process();
PixelImage image = codec.getImage();
codec.close();
\end{verbatim}
Minimum code example for saving an image:
\begin{verbatim}
PixelImage image = ...; // this image is to be saved, initialize it somehow
ACMEImageCodec codec = new ACMEImageCodec();
codec.setImage(image);
codec.setFile("image.acm", CodecMode.SAVE);
codec.process();
codec.close();
\end{verbatim}
To sum it up, the following steps are relevant for anybody using the codec:
\begin{enumerate}
\item Create an object of the codec class, using the constructor with an empty
argument list.
\item Call the \code{setFile} method with the file name and the appropriate
\class{CodecMode} object (\code{CodecMode.LOAD} or \class{CodecMode.SAVE}).
\item Give input parameters to it if they are necessary.
Most of the time all you have to do is provide an image if you want to
save to a file.
Other parameters are possible, but they either depend on the file format
or are not essential for the codec to work (e.g. defining bounds or dealing
with progress notification).
\item Call the \code{process()} method which will do the actual work.
\item Call the \code{close()} method, which will close any input or output streams
or files that have been specified.
Maybe process itself calls \code{close()}, but calling it a second time shouldn't
do any harm.
Not closing streams can become a problem when very many streams are used
in a program, e.g. in a batch converter.
\item This step is optional: get results, output parameters.
The most obvious example for this is a \class{PixelImage} object when loading.
The codec must provide get methods for all possible results, e.g. \code{getImage}
for an image that was loaded in \code{process}.
\end{enumerate}
This will be reflected in the codec itself.
\section{The {\tt process} method}
It is the core of any \class{Operation} implementation and does the actual work.
\class{ImageCodec} extends \class{Operation}, so this remains true.
As the inner workings of an image codec can become quite complex, having
additional methods is a good idea--one huge process method is probably
unreadable, unless it is a very simple file format.
All methods (except for process and set and get methods to
be used to provide and query information) of the new codec \emph{must be declared
private}.
They are implementation details and of no relevance to the user of the codec.
\section{Checking parameters}
The first thing to do in any \code{process} method is checking the parameters.
\begin{itemize}
\item Are the mandatory parameters available?
If not, throw a {\tt MissingParameterException}.
\item Are all parameters that have been specified valid?
If not, throw a WrongParameterException (if the parameters type is
wrong etc.) or a an UnsupportedTypeException (if a compression type
to be used for saving is not supported by your codec etc.).
\end{itemize}
For all optional parameters that are missing, initialize them to their default values.
Note that some errors can only be detected later in the process.
Example: when loading an image, you will have to do some decoding
before you find out that, as an example, the file uses a compression method
that you do not support.
\section{Load or save}
Now, find out whether you will have to load or save an image.
Call \class{initModeFromIOObjects()}, it will find out whether to
load or save from the kinds of I/O objects that have been given
to the codec.
If no I/O objects have been specified, that method will throw
an appropriate exception.
Then get the {\tt CodecMode} using {\tt getMode()}.
If the resulting mode---either {\tt CodecMode.LOAD} or {\tt CodecMode.SAVE}---is not
supported by your implementation, throw an {\tt UnsupportedTypeException}
with a descriptive error message.
\section{I/O}
{\tt ImageCodec} provides set methods to specify input and output objects
so that the codec can read or write data.
The codec knows the following classes, in ascending order of their abilities:
\begin{itemize}
\item \class{InputStream} and \class{OutputStream} which only let you read and
write byte(s) in a linear way without random access.
\item Everything implementing \class{DataInput} and \class{DataOutput}, which
let you do the same as \class{InputStream} and \class{OutputStream} but can
also read and write types like \code{int} or
\code{short} in network byte order (big endian).
\item \class{RandomAccessFile} which implements both \class{DataInput} and
\class{DataOutput}, thus offering everything these two do plus random access--you
will be able to seek to any offset in the file and continue to read or write there.
\end{itemize}
If you can choose which of these classes you will use, pick the most primitive ones that will work for you.
This will make it possible to use your codec in more environments.
If your codec is alright with having an \class{InputStream}, it will not only work on
files (\class{FileInputStream}) but also on network and other streams.
However, some file formats like TIFF need \class{RandomAccessFile}.
For some file formats it may be necessary to wrap \class{InputStream} and \class{OutputStream}
into some other I/O classes.
As an example, to read or write text (as used in some subformat of Portable Anymap),
\class{BufferedReader} and \class{BufferedWriter} are very convenient.
To improve speed, put your \class{InputStream} and \class{OutputStream} objects into a
\class{BufferedInputStream} or \class{BufferedOutputStream} object.
If your codec works with the interfaces \class{DataInput} and \class{DataOutput},
you will be able to cover the most cases.
Try to do this whenever possible.
Call the method \code{getInputAsDataInput} and you will be given either a \class{DataInput}
object (if you directly specified one), or a \code{DataInputStream} (created from
an \class{InputStream} if you specified one), or a \code{RandomAccessFile} object.
All of them implement \class{DataInput}.
That works with \class{DataOutput} as well, if you are saving an image.
Anyway, make sure that you have I/O objects and that they are of the correct type.
If not, throw a \class{MissingParameterException}.
\section{Reading and writing primitive values}
Normally, image file formats demand that you read a lot of \code{byte}, \code{short}
and \code{int} values in a certain order that you will have to interpret as, e.g.,
image width, color depth or compression type.
Instead of calling \code{read()} or \code{readInt()} each time you have to read a
primitive value, load the complete header to a byte array.
Then get the interesting primitives from that array using the class
\class{net.sourceforge.jiu.util.ArrayConverter}.
The following example will read 32 bytes and get bytes 12, 13, 14 and 15 as an
\code{int} value in little endian byte order:
\begin{verbatim}
byte[] header = new byte[32];
in.readFully(header);
int width = ArrayConverter.getIntLE(12);
\end{verbatim}
This approach will restrict the number of places for I/O errors to one, the call to the method that reads all the bytes
(in the example \code{readFully}).
Also, you don't have to skip over values that you don't care about -- you just
read everything and interpret only those places of the array that are necessary.
The same approach can also be used when writing an array.
Create an array (it will by default be filled with zeroes), call the appropriate
put methods of \class{ArrayConverter} and write the complete array to output.
\section{Bounds}
After you have read image width and height from the image, deal with the bounds.
Check if bounds have been defined by querying {\tt hasBounds()}.
If there are no bounds, set them to the complete image:
\begin{verbatim}
setBounds(0, 0, width - 1, height - 1);
\end{verbatim}
If there are bounds and you don't want to support them for
whatever reason, throw an \class{OperationFailedException}.
If the bounds do not match image width and height, throw an
\class{WrongParameterException} (the bounds parameters were false).
\section{Loading}
After you have parsed the input stream for information, you can do some more checks.
If the image file format that you support in your new codec can have multiple
images in one stream, call \code{getImageIndex} to find out which one to
load.
If the index is invalid (if there are not enough images in the stream), throw an
\class{InvalidImageIndexException}.
Next, check if the image type, compression method etc. are supported by your codec
and throw an \class{UnsupportedTypeException} otherwise.
Also check if the bounds---if present---fit the actual image resolution.
Create an image object of the right type and resolution.
If you are regarding the bounds, use \code{getBoundsWidth} and
\code{getBoundsHeight} instead of width and height as found in the stream.
Load the image and try to use progress notification via the \code{setProgress}
methods.
Do not use more memory than necessary.
As an example, do not load an uncompressed image into a large byte array,
that will require twice the memory of the uncompressed image.
Instead, create a row buffer, read row by row and put those rows
into the image.
\section{Performance issues}
Even nicer than correct codecs (which read and write image files according to
the specifications) are correct \emph{and} fast codecs.
Whatever fast means...
Correctness should be prefered to speed, but higher speed can sometimes be
reached by very simple means.
\begin{itemize}
\item The caller should use \class{BufferedInputStream} and
\class{BufferedOutputStream} when giving streams to the codec.
The codecs should not create buffered versions, that is the job of the caller.
\item Instead of single bytes, process several bytes at a time.
As an example, read a complete row and put a complete row into the image
using \code{putSamples} instead of \code{putSample}.
\end{itemize}
\section{Documentation}
As for any other operation, create javadoc-compatible documentation for
your image codec.
Specify
\begin{itemize}
\item whether both loading and saving are supported,
\item which I/O objects the codec can work with,
\item which image types the codec can work with,
\item which flavors of the file format are supported (e.g. compression types),
\item whether the bounds concept of ImageCodec is supported,
\item whether the progress notification concept of ImageCodec is supported,
\item a description of all parameters new to this codec - what
can be done with them, are they optional etc. and
\item some background information on the file format if available---who
created it and why, where is it used, etc.
\end{itemize}
For external HTML links in your documentation, use the \code{target} attribute
with the value \code{\_top}:
\begin{verbatim}
<a target="_top" href="http://somesite.com">Some site</a>
\end{verbatim}
This way, a website will be displayed in the complete browser, not only
the frame on the right side that previously held the class documentation.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter {Coding conventions}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\label{codingconventions}
This chapter is of interest for everybody who wants to contribute code to \jiu.
It is described here how code is to be formatted.
Having the code follow certain rules consistently throughout all of \jiu's packages is
important for readability and maintainability.
\section{Import statements}
All classes that are used in a class must be explicitly imported, except for classes from the \code{java.lang} package.
Each imported class gets its own line, no empty lines between import statements.
Do not use the asterisk to import a complete package like in \code{java.io.*}.
Sort imports in ascending order, first by package name, then by the class (or interface) name.
\section{Indentation}
Use tab characters to express indentation.
The tabs should be interpreted as four space characters.
\section{Avoid large indentation levels}
In order to make code more readable, avoid large levels of indentation.
If quite a few lines are at level 4, 5, 6 or higher, you probably want to put
that code in another method and call that method instead.
Nested loops often lead to high indentation levels.
If statements with else cases at the end of methods should be rewritten if one of the cases includes little
and the other one much code.
if (a < 0)
{
a = 0;
}
else
{
// a lot of code
}
// end of method
should become
if (a < 0)
{
a = 0;
return;
}
// a lot of code
// end of method
\section{Identifier names}
\label{identifiernames}
Use meaningful names for identifiers.
An exception to this can be made for local variables, especially when they are names of loop variables.
Use only English as natural language.
Do not use any characters but \code{a} to \code{z}, \code{A} to \code{Z} and digits \code{0} to \code{9} (so, no underscore character \code{\_}).
Avoid the digits whenever possible.
Variable and method names must start with a lowercase letter (exception: final variable names, see \ref{finalvarnames}).
Class and interface names must start with an uppercase letter.
Method names should start with a verb (get, set, is, etc.).
Use capitalization to make reading names easier, e.g. {\tt maxValue} instead of {\tt maxvalue}.
Avoid suffixes like \code{Interface} or \code{Impl} to express that a class is an interface or an implementation of some interface.
\section{Final variable names}
\label{finalvarnames}
The letters in names of variables that are declared final must all be uppercase.
This makes it of course impossible to use capitalization as suggested in \ref{identifiernames}.
That is why the use of the underscore is allowed and encouraged in the names
of final variables to separate words: {\tt MAX\_VALUE}.
\section{Methods sorted by name}
All methods of a class must be sorted by their names in ascending order,
no matter what the access modifier of a method is.
\section{Thrown exceptions in method signatures}
Do not explicitly specify exceptions that extend \code{RuntimeException}, e.g. \code{IllegalArgumentException}.
However, do document them.
\section{Declaration of fields in classes}
All fields, no matter whether they are class or instance variables, public or private, must be declared at the beginning of a class, in one block.
\section{Declaration of fields in interfaces}
All fields in interfaces must be declared without any access modifiers like \code{public} or \code{static}.
\section{No debug or error messages to System.out or System.err}
Writing warning or error messages to \code{System.out} or \code{System.err} is forbidden.
Whenever errors occur, the exception system must be used, exceptions can carry textual messages in them.
\section{Opening braces}
Always give opening braces a line of their own:
\begin{verbatim}
while (i > 12)
{
System.out.println("i is now " + i);
i--;
}
\end{verbatim}
Do not write:
\begin{verbatim}
while (i > 12) {
System.out.println("i is now " + i);
i--;
}
\end{verbatim}
\section{One line statement blocks}
In \code{if} statements and \code{while} and \code{for} loops, always include
single line statements in braces:
\begin{verbatim}
if (i > 0)
{
i++;
}
\end{verbatim}
Do not write:
\begin{verbatim}
if (i > 0)
i++;
\end{verbatim}
Also do not write:
\begin{verbatim}
if (i > 0) i++;
\end{verbatim}
\section{Conditional operator}
Avoid the ternary conditional operator \code{?:}, use an if statement instead:
\begin{verbatim}
if (i >= 0 && i < array.length)
{
return array[i];
}
else
{
return "Not a valid index: " + i;
}
\end{verbatim}
Do not write:
\begin{verbatim}
return (i >= 0 && i < ARRAY.length) ? ARRAY[i] : "?";
\end{verbatim}
An exception to this can be made when the argument to a constructor must be picked from
two alternatives within a constructor (\code{this} or \code{super}).
Example:
\begin{verbatim}
public class MyFrame extends Frame
{
public MyFrame(String title)
{
super(title == null ? "Untitled" : title, true);
...
}
}
\end{verbatim}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{thebibliography}{HMNA98b}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\bibitem [jiu00] {jiuhome} Java Imaging Utilities homepage, \href{http://schmidt.devlib.org/jiu/}{http://schmidt.devlib.org/jiu/}.
\bibitem [sou00] {sourceforge} SourceForge homepage, \href{http://www.sourceforge.net/}{http://www.sourceforge.net/}.
\end{thebibliography}
\end{document}
|