eXept Software AG Logo

Smalltalk/X Webserver

Documentation of class 'Depth16Image':

Home

everywhere
www.exept.de
for:
[back]

Class: Depth16Image


Inheritance:

   Object
   |
   +--Image
      |
      +--Depth16Image

Package:
stx:libview
Category:
Graphics-Images
Version:
rev: 1.15 date: 2009/11/05 14:37:15
user: stefan
file: Depth16Image.st directory: libview
module: stx stc-classLibrary: libview
Author:
Claus Gittinger

Description:


this class represents 16 bit images.
Only the minimum protocol is implemented here; much more is
needed for higher performance operations on depth16 images.
(however, 16bit images are seldom used, so falling back into the
slow general methods from Image should not hurt too much ..)


Related information:

    Depth1Image
    Depth2Image
    Depth4Image
    Depth8Image
    Depth24Image
    ImageReader

Class protocol:

queries
o  defaultPhotometric
return the default photometric pixel interpretation

o  imageDepth
return the depth of images represented by instances of
this class - here we return 16


Instance protocol:

accessing-pixels
o  pixelAtX: x y: y
retrieve a pixel at x/y; return a pixelValue.
Pixels start at x=0 , y=0 for upper left pixel, end at
x = width-1, y=height-1 for lower right pixel

o  pixelAtX: x y: y put: aPixelValue
set the pixel at x/y to aPixelValue.
Pixels start at x=0 , y=0 for upper left pixel, end at
x = width-1, y=height-1 for lower right pixel

o  rowAt: y putAll: pixelArray startingAt: startIndex
store a single rows bits from bits in the pixelArray argument;
Return the pixelArray.
Notice: row coordinate starts at 0.

initialization
o  initialize

magnification
o  magnifyRowFrom: srcBytes offset: srcStart into: dstBytes offset: dstStart factor: mX
magnify a single pixel row - can only magnify by integer factors

queries
o  bitsPerPixel
return the number of bits per pixel

o  bitsPerRow
return the number of bits in one scanline of the image

o  bytesPerRow
return the number of bytes in one scanline of the image



ST/X 6.1.1; WebServer 1.620 at exept:8081; Wed, 23 May 2012 08:48:53 GMT