mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-03 03:25:28 -04:00
Updated done.
This commit is contained in:
parent
43cc440e67
commit
41b8080683
@ -1,18 +1,19 @@
|
|||||||
- Get vendor name/version for SPIs from manifest.
|
|
||||||
Package pkg = getClass().getPackage();
|
|
||||||
version = pkg.getImplementationVersion();
|
|
||||||
vendor = pkg.getImplementationVendor();
|
|
||||||
specTitle = pkg.getSpecificationTitle();
|
|
||||||
|
|
||||||
- Consider creating a raw ImageReader (or util class?) that can read raw bitmaps:
|
- Consider creating a raw ImageReader (or util class?) that can read raw bitmaps:
|
||||||
o Interleaved (A)RGB (as in BMP, PICT, IFF PBM etc) -> A1R1G1B1, A2R2G2B2, ..., AnRnGnNn
|
o Interleaved (A)RGB (as in BMP, PICT, IFF PBM etc) -> A1R1G1B1, A2R2G2B2, ..., AnRnGnNn
|
||||||
o Channeled (A)RGB (as in Photoshop) -> A1A2...An, R1R2...Rn, G1G2...Gn, B1B2...Bn
|
o Channeled (A)RGB (as in Photoshop) -> A1A2...An, R1R2...Rn, G1G2...Gn, B1B2...Bn
|
||||||
o Planar RGB (as in IFF ILBM) -> ....
|
o Planar RGB (as in IFF ILBM) -> ....
|
||||||
Formats that internally have these structures could delegate to an instance of this class.
|
Formats that internally have these structures could delegate to an instance of this class.
|
||||||
Could also be interesting to allow for raw reading using a RawImageReader.
|
Could also be interesting to allow for raw reading using a RawImageReader.
|
||||||
o Would need to specify width, height
|
o Would need to specify width, height
|
||||||
o bit depth
|
o bit depth
|
||||||
o Pixel layout (planar, channeled, interleaved)
|
o Pixel layout (planar, channeled, interleaved)
|
||||||
o Channel order
|
o Channel order
|
||||||
o Compression? RLE/PackBits/LZW/ZIP?
|
o Compression? RLE/PackBits/LZW/ZIP?
|
||||||
o IndexColorModel?
|
o IndexColorModel?
|
||||||
|
|
||||||
|
DONE:
|
||||||
|
- Get vendor name/version for SPIs from manifest.
|
||||||
|
Package pkg = getClass().getPackage();
|
||||||
|
version = pkg.getImplementationVersion();
|
||||||
|
vendor = pkg.getImplementationVendor();
|
||||||
|
specTitle = pkg.getSpecificationTitle();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user