aboutsummaryrefslogtreecommitdiff
path: root/java/README
diff options
context:
space:
mode:
Diffstat (limited to 'java/README')
-rw-r--r--java/README8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/README b/java/README
index 8b6f5bc..0146ed3 100644
--- a/java/README
+++ b/java/README
@@ -4,12 +4,12 @@ TurboJPEG/OSS JNI Wrapper
TurboJPEG/OSS can optionally be built with a Java Native Interface wrapper,
which allows the TurboJPEG/OSS dynamic library to be loaded and used directly
from Java applications. The Java front end for this is defined in
-turbojpeg.java, which should be located in the same directory as this README
-file. turbojpeg.java is licensed under a BSD-style license, so it can be
+TurboJPEG.java, which should be located in the same directory as this README
+file. TurboJPEG.java is licensed under a BSD-style license, so it can be
incorporated directly into both open source and proprietary projects without
restriction.
-tjexample.java, which should also be located in the same directory as this
+TJExample.java, which should also be located in the same directory as this
README file, demonstrates how to use the TurboJPEG/OSS Java front end to
compress and decompress JPEG images in memory.
@@ -48,5 +48,5 @@ convention of MinGW, and it also avoids a filename conflict when the GCC and
Visual C++ versions of the libjpeg-turbo SDK are installed on the same system.
However, the TurboJPEG/OSS JNI wrapper will not work on Windows unless the DLL
is named turbojpeg.dll. You can work around this by renaming the DLL or by
-simply changing the LoadLibrary() calls in turbojpeg.java so that they load
+simply changing the LoadLibrary() calls in TurboJPEG.java so that they load
"libturbojpeg" instead of "turbojpeg".