NameDateSize

..28-Aug-202125

JamfileH A D29-Apr-20191.1 KiB

JPEG2000Translator.cppH A D30-Sep-202232.3 KiB

JPEG2000Translator.hH A D09-Dec-20174.8 KiB

JPEG2000Translator.rdefH A D22-Nov-2012271

READMEH A D22-Nov-20121.7 KiB

README

1JPEG2000 Translator v1.0
2©2003 by Marcin 'Shard' Konicki
3shard@beosjournal.org
4http://shard.beosjournal.org
5
6TranslationKit add-on for JPEG 2000 files.
7
8It's based on JasPer library (http://www.ece.uvic.ca/~mdadams/jasper/). I used ImageMagick jp2 codec as a kind of tutorial for how to implement library (http://www.imagemagick.org/).
9
10
11A little explanation ("what is what"):
12
13To install translator drag & drop "JPEG2000Translator" file onto "Drag JPEG2000Translator here" folder.
14
15When You run DataTranslations application and go to JPEG2000 translator settings, You'll see 3 tabs:
16- Write
17- Read
18- About
19
20Write tab shows settings used for writing jpeg 2000 files:
21
22Output quality let's You chose how much output image will be similar to original image. Less quality means worse output image. There is a scale from 1 to 100 but from i've seen so far 25-35 is superb quality, more percent only will make output file bigger without any noticable image quality changes.
23
24Write Black&White images as RGB24 tells translator to write B_GRAY1 images as rgb jpeg. If it's turned off, translator will write them as greyscale.
25
26Output only codestream (.jpc) tells translator to write jpeg 2000 codestream to file instead of jp2 structure (jp2, except codestream, also includes color space type for example).
27
28
29Read tab shows settings used for reading jpeg files:
30
31Read Greyscale images as RGB32 makes translator to read greyscale images as they have been color. Most applications on BeOS can't "understand" greyscale images from translation properly (i've tried ShowImage, ViewImage, Gobe Productive 2, NetPositive, and ArtPaint - only NetPositive can understand them).
32
33
34About tab shows info about this translator.
35
36
37Shard