Depth24Image.st
author Claus Gittinger <cg@exept.de>
Thu, 24 Apr 1997 17:57:54 +0200
changeset 1657 f3d8ceac748a
parent 1629 7735e52e84f0
child 1666 c3db5aafbe32
permissions -rw-r--r--
pixel accessing methods cleaned up
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
     1
"
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
81
4ba554473294 *** empty log message ***
claus
parents: 66
diff changeset
     3
	      All Rights Reserved
3
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
     4
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
     5
 This software is furnished under a license and may be used
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
     6
 only in accordance with the terms of that license and with the
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
     8
 be provided or otherwise made available to, or used by, any
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
     9
 other person.  No title to or ownership of the software is
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
    10
 hereby transferred.
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
    11
"
1
304f026e10cd Initial revision
claus
parents:
diff changeset
    12
304f026e10cd Initial revision
claus
parents:
diff changeset
    13
Image subclass:#Depth24Image
579
e381761190c4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
    14
	instanceVariableNames:''
e381761190c4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
    15
	classVariableNames:''
e381761190c4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
    16
	poolDictionaries:''
e381761190c4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
    17
	category:'Graphics-Images'
1
304f026e10cd Initial revision
claus
parents:
diff changeset
    18
!
304f026e10cd Initial revision
claus
parents:
diff changeset
    19
1167
4998857f7a9a new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 938
diff changeset
    20
!Depth24Image class methodsFor:'documentation'!
46
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    21
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    22
copyright
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    23
"
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    24
 COPYRIGHT (c) 1993 by Claus Gittinger
81
4ba554473294 *** empty log message ***
claus
parents: 66
diff changeset
    25
	      All Rights Reserved
3
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
    26
46
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    27
 This software is furnished under a license and may be used
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    28
 only in accordance with the terms of that license and with the
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    29
 inclusion of the above copyright notice.   This software may not
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    30
 be provided or otherwise made available to, or used by, any
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    31
 other person.  No title to or ownership of the software is
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    32
 hereby transferred.
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    33
"
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    34
!
3
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
    35
46
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    36
documentation
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    37
"
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    38
    this class represents true-color (24 bit / pixel) images.
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    39
    It mainly consists of methods already implemented in Image,
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    40
    reimplemented here for more performance.
611
e0442439a3c6 documentation
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
    41
798
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
    42
    Only the #rgb format is supported here.
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
    43
611
e0442439a3c6 documentation
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
    44
    [author:]
e0442439a3c6 documentation
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
    45
        Claus Gittinger
e0442439a3c6 documentation
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
    46
e0442439a3c6 documentation
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
    47
    [see also:]
e0442439a3c6 documentation
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
    48
        Depth1Image Depth2Image Depth4Image Depth8Image Depth16Image
e0442439a3c6 documentation
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
    49
        ImageReader
46
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    50
"
7b331e9012fd *** empty log message ***
claus
parents: 38
diff changeset
    51
! !
3
c0aaded4ef28 *** empty log message ***
claus
parents: 1
diff changeset
    52
1167
4998857f7a9a new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 938
diff changeset
    53
!Depth24Image class methodsFor:'queries'!
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
    54
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
    55
defaultPhotometric
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
    56
    "return the default photometric pixel interpretation"
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
    57
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
    58
    ^ #rgb
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
    59
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
    60
    "Created: 10.6.1996 / 18:08:25 / cg"
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
    61
!
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
    62
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
    63
imageDepth
579
e381761190c4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
    64
    "return the depth of images represented by instances of
e381761190c4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
    65
     this class - here we return 24"
e381761190c4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
    66
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
    67
    ^ 24
579
e381761190c4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
    68
e381761190c4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
    69
    "Modified: 20.4.1996 / 23:39:50 / cg"
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
    70
! !
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
    71
1657
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
    72
!Depth24Image methodsFor:'accessing - pixels'!
1
304f026e10cd Initial revision
claus
parents:
diff changeset
    73
1657
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
    74
colorAtX:x y:y
1
304f026e10cd Initial revision
claus
parents:
diff changeset
    75
    "retrieve a pixel at x/y; return a color.
304f026e10cd Initial revision
claus
parents:
diff changeset
    76
     Pixels start at x=0 , y=0 for upper left pixel, end at
304f026e10cd Initial revision
claus
parents:
diff changeset
    77
     x = width-1, y=height-1 for lower right pixel"
304f026e10cd Initial revision
claus
parents:
diff changeset
    78
38
2652fc96e660 *** empty log message ***
claus
parents: 35
diff changeset
    79
    |index "{ Class: SmallInteger }"
2652fc96e660 *** empty log message ***
claus
parents: 35
diff changeset
    80
     rVal gVal bVal|
1
304f026e10cd Initial revision
claus
parents:
diff changeset
    81
304f026e10cd Initial revision
claus
parents:
diff changeset
    82
    index := 1 + (((width * y) + x) * 3).
304f026e10cd Initial revision
claus
parents:
diff changeset
    83
    rVal := bytes at:(index).
304f026e10cd Initial revision
claus
parents:
diff changeset
    84
    gVal := bytes at:(index + 1).
304f026e10cd Initial revision
claus
parents:
diff changeset
    85
    bVal := bytes at:(index + 2).
304f026e10cd Initial revision
claus
parents:
diff changeset
    86
304f026e10cd Initial revision
claus
parents:
diff changeset
    87
    photometric ~~ #rgb ifTrue:[
805
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    88
        ^ super atX:x y:y
1
304f026e10cd Initial revision
claus
parents:
diff changeset
    89
    ].
1350
3fced8a1576c *** empty log message ***
ca
parents: 1237
diff changeset
    90
    ^ Color redByte:rVal greenByte:gVal blueByte:bVal
1657
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
    91
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
    92
    "Created: 24.4.1997 / 17:32:47 / cg"
1
304f026e10cd Initial revision
claus
parents:
diff changeset
    93
!
304f026e10cd Initial revision
claus
parents:
diff changeset
    94
1657
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
    95
colorAtX:x y:y put:aColor
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
    96
    "set the pixel at x/y to aColor.
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
    97
     Pixels start at x=0 , y=0 for upper left pixel, end at
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
    98
     x = width-1, y=height-1 for lower right pixel."
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
    99
1657
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   100
    |index "{ Class: SmallInteger }"|
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   101
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   102
    index := 1 + (((width * y) + x) * 3).
1657
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   103
    bytes at:(index) put:(aColor redByte).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   104
    bytes at:(index + 1) put:(aColor greenByte).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   105
    bytes at:(index + 2) put:(aColor blueByte).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   106
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   107
    "Created: 24.4.1997 / 17:32:59 / cg"
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   108
!
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   109
1657
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   110
pixelAtX:x y:y
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   111
    "retrieve a pixel at x/y; return a color.
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   112
     Pixels start at x=0 , y=0 for upper left pixel, end at
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   113
     x = width-1, y=height-1 for lower right pixel"
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   114
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   115
    |index "{ Class: SmallInteger }"
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   116
     rVal  "{ Class: SmallInteger }"
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   117
     gVal  "{ Class: SmallInteger }"
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   118
     bVal  "{ Class: SmallInteger }"|
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   119
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   120
    index := 1 + (((width * y) + x) * 3).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   121
    rVal := bytes at:(index).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   122
    gVal := bytes at:(index + 1).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   123
    bVal := bytes at:(index + 2).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   124
    ^ (((rVal bitShift:8) bitOr:gVal) bitShift:8) bitOr:bVal
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   125
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   126
    "Created: 24.4.1997 / 16:06:34 / cg"
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   127
!
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   128
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   129
pixelAtX:x y:y put:aPixelValue
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   130
    "set a pixel at x/y to aPixelValue, which is 24 bits RGB.
304f026e10cd Initial revision
claus
parents:
diff changeset
   131
     Pixels start at x=0 , y=0 for upper left pixel, end at
304f026e10cd Initial revision
claus
parents:
diff changeset
   132
     x = width-1, y=height-1 for lower right pixel"
304f026e10cd Initial revision
claus
parents:
diff changeset
   133
304f026e10cd Initial revision
claus
parents:
diff changeset
   134
    |index "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
   135
     val   "{ Class: SmallInteger }" |
304f026e10cd Initial revision
claus
parents:
diff changeset
   136
304f026e10cd Initial revision
claus
parents:
diff changeset
   137
    index := 1 + (((width * y) + x) * 3).
304f026e10cd Initial revision
claus
parents:
diff changeset
   138
    val := aPixelValue.
304f026e10cd Initial revision
claus
parents:
diff changeset
   139
    bytes at:(index + 2) put:(val bitAnd:16rFF).
304f026e10cd Initial revision
claus
parents:
diff changeset
   140
    val := val bitShift:-8.
304f026e10cd Initial revision
claus
parents:
diff changeset
   141
    bytes at:(index + 1) put:(val bitAnd:16rFF).
304f026e10cd Initial revision
claus
parents:
diff changeset
   142
    val := val bitShift:-8.
304f026e10cd Initial revision
claus
parents:
diff changeset
   143
    bytes at:(index) put:val.
1657
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   144
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   145
    "Created: 24.4.1997 / 17:06:33 / cg"
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   146
!
304f026e10cd Initial revision
claus
parents:
diff changeset
   147
1657
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   148
rowAt:rowIndex putAll:pixelArray
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   149
    "replace a single rows bits from bits in the pixelArray argument;
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   150
     Notice: row indexing starts at 0."
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   151
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   152
    |dstIdx pixel|
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   153
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   154
    dstIdx := (rowIndex * self bytesPerRow) + 1.
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   155
    1 to:width do:[:col |
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   156
        pixel := pixelArray at:col.
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   157
        bytes at:dstIdx put:((pixel bitShift:-16) bitAnd:16rFF).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   158
        bytes at:dstIdx+1 put:((pixel bitShift:-8) bitAnd:16rFF).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   159
        bytes at:dstIdx+2 put:(pixel bitAnd:16rFF).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   160
        dstIdx := dstIdx + 3.
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   161
    ].
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   162
    ^ pixelArray
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   163
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   164
    "Created: 24.4.1997 / 15:43:08 / cg"
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   165
!
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   166
1657
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   167
rowAt:rowIndex putAll:pixelArray startingAt:startIndex
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   168
    "store a single rows bits from bits in the pixelArray argument;
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   169
     Return the pixelArray.
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   170
     Notice: row indexing starts at 0."
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   171
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   172
    |dstIdx pixel|
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   173
1657
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   174
    dstIdx := (rowIndex * self bytesPerRow) + 1.
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   175
    1 to:width do:[:col |
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   176
        pixel := pixelArray at:(startIndex + col).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   177
        bytes at:dstIdx put:((pixel bitShift:-16) bitAnd:16rFF).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   178
        bytes at:dstIdx+1 put:((pixel bitShift:-8) bitAnd:16rFF).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   179
        bytes at:dstIdx+2 put:(pixel bitAnd:16rFF).
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   180
        dstIdx := dstIdx + 3.
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   181
    ].
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   182
    ^ pixelArray
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   183
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
   184
    "Created: 24.4.1997 / 15:50:27 / cg"
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   185
! !
304f026e10cd Initial revision
claus
parents:
diff changeset
   186
304f026e10cd Initial revision
claus
parents:
diff changeset
   187
!Depth24Image methodsFor:'converting rgb images'!
304f026e10cd Initial revision
claus
parents:
diff changeset
   188
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   189
asGrayFormOn:aDevice
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   190
    "return a grey form from the receiver.
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   191
     Redefined to use special code when converting to 8-bit
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   192
     greyScale displays."
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   193
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   194
    (aDevice visualType == #StaticGray) ifTrue:[
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   195
        aDevice depth == 8 ifTrue:[
816
6576c8242e5d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
   196
            ^ self makeDeviceGrayPixmapOn:aDevice depth:aDevice depth fromArray:(self threshold8BitGrayBits)
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   197
        ].
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   198
    ].
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   199
    ^ super asGrayFormOn:aDevice
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   200
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   201
    "Created: 10.6.1996 / 19:00:45 / cg"
816
6576c8242e5d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 813
diff changeset
   202
    "Modified: 10.6.1996 / 20:10:19 / cg"
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   203
!
304f026e10cd Initial revision
claus
parents:
diff changeset
   204
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   205
asThresholdGrayImageDepth:depth
808
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   206
    "return an 8-bit grey image from the rgb picture.
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   207
     Pixel values are reduced to a 0..255 grey level."
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   208
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   209
    depth == 8 ifTrue:[
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   210
        photometric == #rgb ifTrue:[
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   211
            ^ Depth8Image
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   212
                width:width
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   213
                height:height
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   214
                fromArray:(self threshold8BitGrayBits)
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   215
        ]
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   216
    ].
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   217
    ^ super asThresholdGrayImageDepth:depth
808
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   218
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   219
    "
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   220
     |i|
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   221
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   222
     i := Image fromFile:'bitmaps/granite.tiff'.
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   223
     (i asThresholdGrayImageDepth:8) inspect.
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   224
     (i asThresholdGrayImageDepth:4) inspect.
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   225
     (i asThresholdGrayImageDepth:2) inspect.
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   226
     (i asThresholdGrayImageDepth:1) inspect.
808
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   227
    "
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   228
808
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   229
    "
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   230
     |i|
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   231
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   232
     i := Image fromFile:'bitmaps/granite.tiff'.
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   233
     ((i asThresholdGrayImageDepth:8) asOrderedDitheredGrayImageDepth:2) inspect
808
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   234
    "
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   235
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   236
    "
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   237
     |i|
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   238
808
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   239
     i := Image fromFile:'bitmaps/granite.tiff'.
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   240
     ((i asThresholdGrayImageDepth:8) asOrderedDitheredGrayImageDepth:4) inspect
808
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   241
    "
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   242
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   243
    "
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   244
     |i|
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   245
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   246
     i := Image fromFile:'bitmaps/granite.tiff'.
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   247
     (i asThresholdGrayImageDepth:8) asOrderedDitheredMonochromeImage inspect
808
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   248
    "
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   249
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
   250
    "Created: 8.6.1996 / 13:58:46 / cg"
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   251
    "Modified: 10.6.1996 / 19:11:18 / cg"
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   252
!
304f026e10cd Initial revision
claus
parents:
diff changeset
   253
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   254
rgbImageAsDitheredPseudoFormOn:aDevice
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   255
    "return a dithered pseudocolor form from the rgb-picture.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   256
     This method depends on fixColors being allocated (see Color>>getColors*)"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   257
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   258
    |ditherColors|
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   259
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   260
    (ditherColors := aDevice fixColors) notNil ifTrue:[
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   261
        ^ self 
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   262
                rgbImageAsDitheredPseudoFormOn:aDevice
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   263
                colors:ditherColors
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   264
                nRed:aDevice numFixRed
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   265
                nGreen:aDevice numFixGreen
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   266
                nBlue:aDevice numFixBlue
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   267
    ].
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   268
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   269
    ditherColors := Set new.
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   270
    ditherColors addAll:(aDevice ditherColors).
1629
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   271
    ditherColors addAll:(aDevice deviceColors).
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   272
    ditherColors := ditherColors asArray.
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   273
    ^ self 
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   274
        rgbImageAsDitheredPseudoFormOn:aDevice 
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   275
        colors:ditherColors.
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   276
1629
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   277
    "Modified: 22.4.1997 / 11:59:44 / cg"
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   278
!
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   279
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   280
rgbImageAsDitheredPseudoFormOn:aDevice colors:fixColors
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   281
    "return a dithered 8-bit pseudocolor form from the rgb-picture, using
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   282
     arbitrary fix colors in fixColors."
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   283
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   284
    |pseudoBits f
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   285
     h        "{ Class: SmallInteger }"
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   286
     w        "{ Class: SmallInteger }"
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   287
     numFix   "{Class: SmallInteger }"
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   288
     srcIndex "{ Class: SmallInteger }"
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   289
     dstIndex "{ Class: SmallInteger }"
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   290
     deviceDepth has8BitImage 
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   291
     fixIds fixRed fixGreen fixBlue failed cache idsUsed usedColors|
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   292
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   293
    numFix := fixColors size.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   294
    numFix == 256 ifTrue:[
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   295
        "/ algorithm below only handles 255 colors.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   296
        numFix := 255.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   297
    ].
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   298
    fixIds := (fixColors asArray collect:[:clr | clr colorId]) asByteArray.
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   299
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   300
    fixRed := (fixColors asArray collect:[:clr | clr redByte]) asByteArray.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   301
    fixGreen := (fixColors asArray collect:[:clr | clr greenByte]) asByteArray.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   302
    fixBlue := (fixColors asArray collect:[:clr | clr blueByte]) asByteArray.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   303
    cache := ByteArray new:(1 bitShift:14).
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   304
    cache atAllPut:16rFF.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   305
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   306
    deviceDepth := aDevice depth.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   307
    deviceDepth == 8 ifTrue:[
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   308
        has8BitImage := true.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   309
    ] ifFalse:[
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   310
        has8BitImage := false.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   311
        aDevice supportedImageFormats do:[:fmt |
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   312
            (fmt at:#bitsPerPixel) == 8 ifTrue:[
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   313
                has8BitImage := true.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   314
            ]
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   315
        ]
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   316
    ].
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   317
    has8BitImage ifFalse:[^ nil].
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   318
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   319
    idsUsed := ByteArray new:(fixIds size).
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   320
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   321
    'Depth24Image [info]: dithering ...' infoPrintCR.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   322
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   323
    pseudoBits := ByteArray uninitializedNew:(width * height).
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   324
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   325
    h := height.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   326
    w := width.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   327
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   328
%{
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   329
    int __x, __y, __numFix;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   330
    int __eR, __eG, __eB;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   331
    unsigned char *srcP, *dstP;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   332
    int pix;
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   333
    unsigned char *idP, *usedIdP, *redP, *greenP, *blueP, *cacheP;
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   334
    int __w = __intVal(w);
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   335
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   336
    if (__isByteArray(__INST(bytes))
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   337
     && __isSmallInteger(numFix)
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   338
     && __isByteArray(pseudoBits)
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   339
     && __isByteArray(cache)
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   340
     && __isByteArray(fixIds)
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   341
     && __isByteArray(idsUsed)
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   342
     && __isByteArray(fixRed)
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   343
     && __isByteArray(fixGreen)
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   344
     && __isByteArray(fixBlue) ) {
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   345
        failed = false;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   346
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   347
        srcP = __ByteArrayInstPtr(__INST(bytes))->ba_element;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   348
        dstP = __ByteArrayInstPtr(pseudoBits)->ba_element;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   349
        idP = __ByteArrayInstPtr(fixIds)->ba_element;
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   350
        usedIdP = __ByteArrayInstPtr(idsUsed)->ba_element;
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   351
        redP = __ByteArrayInstPtr(fixRed)->ba_element;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   352
        greenP = __ByteArrayInstPtr(fixGreen)->ba_element;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   353
        blueP = __ByteArrayInstPtr(fixBlue)->ba_element;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   354
        cacheP = __ByteArrayInstPtr(cache)->ba_element;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   355
        __numFix = __intVal(numFix);
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   356
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   357
        for (__y=__intVal(h); __y>0; __y--) {
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   358
            __eR = __eG = __eB = 0;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   359
            for (__x=__w; __x>0; __x--) {
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   360
                int cacheIdx, clrIdx;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   361
                int __wantR, __wantG, __wantB;
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   362
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   363
                __wantR = srcP[0] + __eR;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   364
                if (__wantR > 255) __wantR = 255;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   365
                else if (__wantR < 0) __wantR = 0;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   366
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   367
                __wantG = srcP[1] + __eG;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   368
                if (__wantG > 255) __wantG = 255;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   369
                else if (__wantG < 0) __wantG = 0;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   370
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   371
                __wantB = srcP[2] + __eB;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   372
                if (__wantB > 255) __wantB = 255;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   373
                else if (__wantB < 0) __wantB = 0;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   374
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   375
                /*
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   376
                 * compute cache index
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   377
                 */
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   378
                cacheIdx = ((__wantR & 0xF8) >> 3);
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   379
                cacheIdx = (cacheIdx << 5) | ((__wantG & 0xF8) >> 3);
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   380
                cacheIdx = (cacheIdx << 4) | ((__wantB & 0xF0) >> 4);
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   381
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   382
                clrIdx = cacheP[cacheIdx];
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   383
                if (clrIdx == 0xFF) {   /* invalid slot */
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   384
                    unsigned minErr, minIdx;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   385
                    int i;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   386
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   387
                    /*
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   388
                     * must search ...
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   389
                     */
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   390
                    minErr = 0x7FFFFFF; minIdx = 0;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   391
                    for (i=0; i<__numFix; i++) {
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   392
                        unsigned cR, cG, cB, e;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   393
                        int eR, eG, eB;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   394
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   395
                        cR = redP[i]; cG = greenP[i]; cB = blueP[i];
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   396
                        eR = cR - __wantR;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   397
                        if (eR < 0) eR = -eR;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   398
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   399
                        eG = cG - __wantG;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   400
                        if (eG < 0) eG = -eG;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   401
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   402
                        eB = cB - __wantB;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   403
                        if (eB < 0) eB = -eB;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   404
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   405
                        e = eR + eG + eB;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   406
                        if (e < minErr) {
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   407
                            minErr = e;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   408
                            minIdx = i;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   409
                            if (e < 7) {
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   410
                                break;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   411
                            }
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   412
                        }
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   413
                    }
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   414
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   415
                    /*
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   416
                     * minIdx is now index into fixColors
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   417
                     */
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   418
                    cacheP[cacheIdx] = clrIdx = minIdx;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   419
/*
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   420
printf("want %d/%d/%d best: %d [%d/%d/%d]\n", __wantR, __wantG, __wantB, clrIdx, redP[clrIdx], greenP[clrIdx], blueP[clrIdx]);
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   421
*/
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   422
                }
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   423
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   424
                /*
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   425
                 * store the corresponding dither colorId
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   426
                 */
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   427
                *dstP++ = idP[clrIdx];
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   428
                usedIdP[clrIdx] = 1;
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   429
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   430
                srcP += 3;
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   431
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   432
                /*
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   433
                 * the new error:
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   434
                 */
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   435
                __eR = __wantR - redP[clrIdx]; 
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   436
                __eG = __wantG - greenP[clrIdx]; 
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   437
                __eB = __wantB - blueP[clrIdx]; 
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   438
            }
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   439
        }
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   440
    }
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   441
%}.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   442
    failed ifTrue:[
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   443
        self primitiveFailed.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   444
        ^ nil
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   445
    ].
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   446
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   447
    "/ not all colors may be really in use ...
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   448
    usedColors := fixColors copy.
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   449
    idsUsed keysAndValuesDo:[:idx :flag |
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   450
        flag == 0 ifTrue:[
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   451
            usedColors at:idx put:nil
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   452
        ]
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   453
    ].
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   454
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   455
    f := Form width:width height:height depth:aDevice depth on:aDevice.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   456
    f isNil ifTrue:[^ nil].
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   457
    f colorMap:usedColors.
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   458
    f initGC.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   459
    aDevice drawBits:pseudoBits bitsPerPixel:8 depth:aDevice depth
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   460
               width:width height:height
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   461
                   x:0 y:0
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   462
                into:(f id) x:0 y:0 width:width height:height with:(f gcId).
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   463
    ^ f
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   464
!
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   465
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   466
rgbImageAsDitheredPseudoFormOn:aDevice colors:fixColors nRed:nRed nGreen:nGreen nBlue:nBlue
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   467
    "return a dithered pseudocolor form from the rgb-picture,
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   468
     using colors from a colorCube for dithering."
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   469
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   470
    |pseudoBits f
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   471
     h        "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   472
     w        "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   473
"/     eR    "{Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   474
"/     eG    "{Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   475
"/     eB    "{Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   476
"/     wantR "{Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   477
"/     wantG "{Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   478
"/     wantB "{Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   479
     fixR  "{Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   480
     fixG  "{Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   481
     fixB  "{Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   482
     srcIndex "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   483
     dstIndex "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   484
     deviceDepth has8BitImage 
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   485
     fixIds idsUsed failed usedColors|
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   486
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   487
    fixR := nRed.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   488
    fixR == 0 ifTrue:[ ^ nil].
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   489
    fixG := nGreen.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   490
    fixG == 0 ifTrue:[ ^ nil].
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   491
    fixB := nBlue.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   492
    fixB == 0 ifTrue:[ ^ nil].
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   493
    "/ simple check
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   494
    (fixR * fixG * fixB) ~~ fixColors size ifTrue:[
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   495
        self error:'invalid color array passed'.
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   496
        ^ nil
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   497
    ].
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   498
    fixIds := (fixColors asArray collect:[:clr | clr colorId]) asByteArray.
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   499
    idsUsed := ByteArray new:(fixIds size).
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   500
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   501
    deviceDepth := aDevice depth.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   502
    deviceDepth == 8 ifTrue:[
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   503
        has8BitImage := true.
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   504
    ] ifFalse:[
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   505
        has8BitImage := false.
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   506
        aDevice supportedImageFormats do:[:fmt |
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   507
            (fmt at:#bitsPerPixel) == 8 ifTrue:[
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   508
                has8BitImage := true.
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   509
            ]
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   510
        ]
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   511
    ].
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   512
    has8BitImage ifFalse:[^ nil].
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   513
1167
4998857f7a9a new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 938
diff changeset
   514
    'Depth24Image [info]: dithering ...' infoPrintCR.
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   515
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   516
    pseudoBits := ByteArray uninitializedNew:(width * height).
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   517
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   518
    h := height.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   519
    w := width.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   520
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   521
%{
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   522
    int __x, __y;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   523
    int __eR, __eG, __eB;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   524
    int __wantR, __wantG, __wantB;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   525
    unsigned char *srcP, *dstP;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   526
    unsigned char *redP, *greenP, *blueP;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   527
    int pix;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   528
    unsigned char *idP;
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   529
    unsigned char *usedIdP;
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   530
    int __fR, __fG, __fB;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   531
    int iR, iG, iB;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   532
    int idx;
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   533
    int __w = __intVal(w);
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   534
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   535
    if (__isByteArray(__INST(bytes))
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   536
     && __isByteArray(pseudoBits)
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   537
     && __isByteArray(fixIds)
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   538
     && __isByteArray(idsUsed)
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   539
     && __bothSmallInteger(fixR, fixG)
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   540
     && __isSmallInteger(fixB)) {
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   541
        failed = false;
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   542
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   543
        srcP = __ByteArrayInstPtr(__INST(bytes))->ba_element;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   544
        dstP = __ByteArrayInstPtr(pseudoBits)->ba_element;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   545
        idP = __ByteArrayInstPtr(fixIds)->ba_element;
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   546
        usedIdP = __ByteArrayInstPtr(idsUsed)->ba_element;
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   547
        __fR = __intVal(fixR)-1;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   548
        __fG = __intVal(fixG)-1;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   549
        __fB = __intVal(fixB)-1;
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   550
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   551
        for (__y=__intVal(h); __y>0; __y--) {
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   552
            __eR = __eG = __eB = 0;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   553
            for (__x=__w; __x>0; __x--) {
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   554
                int __want;
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   555
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   556
                /*
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   557
                 * wR, wG and wB is the wanted r/g/b value;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   558
                 * compute the index into the dId table ..
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   559
                 * values: 0..255; scale to 0..fR-1, 0..fG-1, 0..fB-1
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   560
                 *
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   561
                 * bad kludge: knows how to index into FixColor table
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   562
                 */
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   563
                __wantR = __want = srcP[0] + __eR;
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   564
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   565
                if (__want > 255) __want = 255;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   566
                else if (__want < 0) __want = 0;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   567
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   568
                iR = __want * __fR / 128;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   569
                iR = (iR / 2) + (iR & 1);
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   570
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   571
                __wantG = __want = srcP[1] + __eG;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   572
                if (__want > 255) __want = 255;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   573
                else if (__want < 0) __want = 0;
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   574
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   575
                iG = __want * __fG / 128;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   576
                iG = (iG / 2) + (iG & 1);
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   577
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   578
                __wantB = __want = srcP[2] + __eB;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   579
                if (__want > 255) __want = 255;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   580
                else if (__want < 0) __want = 0;
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   581
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   582
                iB = __want * __fB / 128;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   583
                iB = (iB / 2) + (iB & 1);
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   584
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   585
                idx = iR * (__fG+1);
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   586
                idx = (idx + iG) * (__fB+1);
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   587
                idx = idx + iB;
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   588
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   589
                /*
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   590
                 * store the corresponding dither colorId
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   591
                 */
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   592
                *dstP++ = idP[idx];
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   593
                usedIdP[idx] = 1;
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   594
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   595
                srcP += 3;
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   596
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   597
                /*
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   598
                 * the new error:
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   599
                 */
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   600
                __eR = __wantR - (iR * 256 / __fR); 
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   601
                __eG = __wantG - (iG * 256 / __fG); 
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   602
                __eB = __wantB - (iB * 256 / __fB); 
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   603
            }
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   604
        }
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   605
    }
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   606
%}.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   607
    failed ifTrue:[
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   608
        self primitiveFailed.
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   609
        ^ nil
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   610
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   611
"/ for non-C programmers:
1218
2d7c79e5965f oops - dont limit myself on Display
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
   612
"/     the above code is (roughly) equivalent to:
2d7c79e5965f oops - dont limit myself on Display
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
   613
"/     (but it is just as ugly looking as the above ;-)
2d7c79e5965f oops - dont limit myself on Display
Claus Gittinger <cg@exept.de>
parents: 1177
diff changeset
   614
"/
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   615
"/    srcIndex := 1.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   616
"/    dstIndex := 1.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   617
"/    1 to:h do:[:y |
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   618
"/        eR := eG := eB := 0.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   619
"/        1 to:w do:[:x |
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   620
"/            |pixel "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   621
"/             clr 
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   622
"/             idx   "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   623
"/             iR    "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   624
"/             iG    "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   625
"/             iB    "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   626
"/             wR    "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   627
"/             wG    "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   628
"/             wB    "{ Class: SmallInteger }" |
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   629
"/
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   630
"/            wantR := ((bytes at:srcIndex) + eR). srcIndex := srcIndex + 1.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   631
"/            wantG := ((bytes at:srcIndex) + eG). srcIndex := srcIndex + 1.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   632
"/            wantB := ((bytes at:srcIndex) + eB). srcIndex := srcIndex + 1.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   633
"/            wR := wantR.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   634
"/            wR > 255 ifTrue:[wR := 255] ifFalse:[wR < 0 ifTrue:[wR := 0]].
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   635
"/            wG := wantG.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   636
"/            wG > 255 ifTrue:[wG := 255] ifFalse:[wG < 0 ifTrue:[wG := 0]].
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   637
"/            wB := wantB.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   638
"/            wB > 255 ifTrue:[wB := 255] ifFalse:[wB < 0 ifTrue:[wB := 0]].
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   639
"/
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   640
"/            iR := wR * (fixR-1) // 128.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   641
"/            iR := (iR // 2) + (iR bitAnd:1).
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   642
"/            iG := wG * (fixG-1) // 128.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   643
"/            iG := (iG // 2) + (iG bitAnd:1).
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   644
"/            iB := wB * (fixB-1) // 128.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   645
"/            iB := (iB // 2) + (iB bitAnd:1).
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   646
"/            idx := (iR * fixR + iG) * fixB + iB + 1.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   647
"/
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   648
"/            clr := fixColors at:idx.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   649
"/
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   650
"/            eR := wantR - (clr red * 2) asInteger.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   651
"/            eG := wantG - (clr green * 2) asInteger.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   652
"/            eB := wantB - (clr blue * 2) asInteger.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   653
"/
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   654
"/            pixel := clr colorId.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   655
"/            pseudoBits at:dstIndex put:pixel.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   656
"/
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   657
"/            dstIndex := dstIndex + 1
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   658
"/        ].
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   659
    ].
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   660
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   661
    "/ not all colors may be really in use ...
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   662
    usedColors := fixColors copy.
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   663
    idsUsed keysAndValuesDo:[:idx :flag |
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   664
        flag == 0 ifTrue:[
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   665
            usedColors at:idx put:nil
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   666
        ]
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   667
    ].
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   668
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   669
    f := Form width:width height:height depth:aDevice depth on:aDevice.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   670
    f isNil ifTrue:[^ nil].
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   671
    f colorMap:usedColors.
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   672
    f initGC.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   673
    aDevice drawBits:pseudoBits bitsPerPixel:8 depth:aDevice depth
858
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   674
               width:width height:height
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   675
                   x:0 y:0
5eb598185858 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 856
diff changeset
   676
                into:(f id) x:0 y:0 width:width height:height with:(f gcId).
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   677
    ^ f
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   678
!
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
   679
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   680
rgbImageAsPseudoFormOn:aDevice
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   681
    "return a pseudocolor form from the rgb-picture.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   682
     If a colorCube is used, pass the work on to the cube-dither
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   683
     code. Otherwise, allocate as many colors as possible, then
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   684
     use those for dithering. 
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   685
     Could be improved, by searching for (& allocating)
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   686
     heavily used colors and/or min-max colors first."
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   687
304f026e10cd Initial revision
claus
parents:
diff changeset
   688
    |pseudoBits f
304f026e10cd Initial revision
claus
parents:
diff changeset
   689
     r        "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
   690
     g        "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
   691
     b        "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
   692
     srcIndex "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
   693
     dstIndex "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
   694
     rMask    "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
   695
     gMask    "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
   696
     bMask    "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
   697
     redArray greenArray blueArray
304f026e10cd Initial revision
claus
parents:
diff changeset
   698
     dataSize "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
   699
     nColors  "{ Class: SmallInteger }"
1629
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   700
     fit fitMap colors color ditherColors
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   701
     fast
304f026e10cd Initial revision
claus
parents:
diff changeset
   702
     colorIndex "{ Class: SmallInteger }"
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   703
     depth nColorCells deep nColorsNeeded|
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   704
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   705
    aDevice fixColors notNil ifTrue:[
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   706
        "/ no need to look for used colors - dithering anyway ...
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   707
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   708
        f := self rgbImageAsDitheredPseudoFormOn:aDevice.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   709
        f notNil ifTrue:[^ f].
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   710
    ].
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   711
304f026e10cd Initial revision
claus
parents:
diff changeset
   712
    "find used colors; build color-tree"
304f026e10cd Initial revision
claus
parents:
diff changeset
   713
304f026e10cd Initial revision
claus
parents:
diff changeset
   714
    fit := false.                       
304f026e10cd Initial revision
claus
parents:
diff changeset
   715
    fitMap := false.
304f026e10cd Initial revision
claus
parents:
diff changeset
   716
    depth := aDevice depth.
304f026e10cd Initial revision
claus
parents:
diff changeset
   717
    nColorCells := aDevice ncells.
304f026e10cd Initial revision
claus
parents:
diff changeset
   718
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   719
    deep := (depth > 8).
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   720
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   721
    rMask := 2r11111111.
304f026e10cd Initial revision
claus
parents:
diff changeset
   722
    gMask := 2r11111111.
304f026e10cd Initial revision
claus
parents:
diff changeset
   723
    bMask := 2r11111111.
304f026e10cd Initial revision
claus
parents:
diff changeset
   724
1167
4998857f7a9a new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 938
diff changeset
   725
    'Depth24Image [info]: allocating colors ...' infoPrintCR.
66
398cf6bfb241 *** empty log message ***
claus
parents: 54
diff changeset
   726
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   727
    [fit] whileFalse:[
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   728
        [fitMap] whileFalse:[
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   729
            srcIndex := 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   730
            redArray := Array new:256.
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   731
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   732
            "
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   733
             find used colors, build [r][g][b] 3-dimensional array
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   734
             containing true for used colors
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   735
            "
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   736
            nColors := 0.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   737
            srcIndex := 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   738
            dataSize := bytes size.
1629
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   739
            [(srcIndex < dataSize)
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   740
             and:[nColors <= nColorCells]] whileTrue:[
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   741
%{
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   742
                if (__isByteArray(_INST(bytes))) {
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   743
                    int sI = _intVal(srcIndex);
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   744
                    unsigned char *cp = _ByteArrayInstPtr(_INST(bytes))->ba_element;
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   745
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   746
                    r = __MKSMALLINT((cp[sI - 1] & _intVal(rMask)) + 1);
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   747
                    g = __MKSMALLINT((cp[sI]     & _intVal(gMask)) + 1);
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   748
                    b = __MKSMALLINT((cp[sI + 1] & _intVal(bMask)) + 1);
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   749
                    srcIndex = __MKSMALLINT(sI + 3);
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   750
                    fast = true;
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   751
                } else {
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   752
                    fast = false;
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   753
                }
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   754
%}
304f026e10cd Initial revision
claus
parents:
diff changeset
   755
.
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   756
                fast ifFalse:[
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   757
                    r := bytes at:srcIndex.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   758
                    r := (r bitAnd:rMask) + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   759
                    srcIndex := srcIndex + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   760
                    g := bytes at:srcIndex.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   761
                    g := (g bitAnd:gMask) + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   762
                    srcIndex := srcIndex + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   763
                    b := bytes at:srcIndex.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   764
                    b := (b bitAnd:bMask) + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   765
                    srcIndex := srcIndex + 1
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   766
                ].
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   767
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   768
                greenArray := redArray at:r.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   769
                greenArray isNil ifTrue:[
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   770
                    greenArray := Array new:256.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   771
                    redArray at:r put:greenArray
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   772
                ].
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   773
                blueArray := greenArray at:g.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   774
                blueArray isNil ifTrue:[
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   775
                    deep ifTrue:[blueArray := Array new:256]
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   776
                    ifFalse:[blueArray := ByteArray new:256].
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   777
                    greenArray at:g put:blueArray
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   778
                ].
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   779
                (blueArray at:b) == 0 ifTrue:[
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   780
                    blueArray at:b put:1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   781
                    nColors := nColors + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   782
                    (nColors > nColorCells) ifTrue:[
1177
e89408c15bb5 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
   783
                        'Depth24Image [info]: more than ' infoPrint. nColorCells infoPrint. ' colors' infoPrintCR.
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   784
                        srcIndex := dataSize + 1
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   785
                    ]
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   786
                ]
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   787
            ].
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   788
            nColorsNeeded isNil ifTrue:[
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   789
                nColorsNeeded := nColors
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   790
            ].
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   791
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   792
            "again with less color bits if it does not fit colormap"
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   793
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   794
            (nColors <= nColorCells) ifTrue:[
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   795
                fitMap := true
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   796
            ] ifFalse:[
1629
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   797
                "/ must try again - cutting off some bits
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   798
                "/ blue bits are snipped off faster.
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   799
                (bMask == 2r11111111) ifTrue:[
1629
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   800
                    bMask := 2r11111100
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   801
                ] ifFalse:[
1629
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   802
                    (bMask == 2r11111100) ifTrue:[
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   803
                        bMask := 2r11110000
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   804
                    ] ifFalse:[
1629
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   805
                        (rMask == 2r11111111) ifTrue:[
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   806
                            rMask := 2r11111100.
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   807
                            gMask := 2r11111100.
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   808
                        ] ifFalse:[
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   809
                            rMask := (rMask bitShift:1) bitAnd:2r11111111.
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   810
                            gMask := (gMask bitShift:1) bitAnd:2r11111111.
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   811
                            bMask := (bMask bitShift:1) bitAnd:2r11111111
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   812
                        ]
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   813
                    ]
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   814
                ].
1167
4998857f7a9a new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 938
diff changeset
   815
                'Depth24Image [info]: too many colors; retry with less color resolution' infoPrintCR.
38
2652fc96e660 *** empty log message ***
claus
parents: 35
diff changeset
   816
"
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   817
    'masks:' print. rMask print. ' ' print. gMask print. ' ' print.
304f026e10cd Initial revision
claus
parents:
diff changeset
   818
    bMask printNewline
38
2652fc96e660 *** empty log message ***
claus
parents: 35
diff changeset
   819
"
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   820
            ]
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   821
        ].
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   822
1167
4998857f7a9a new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 938
diff changeset
   823
        'Depth24Image [info]: ' infoPrint. nColors infoPrint. ' colors used' infoPrintCR.
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   824
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   825
        colors := Array new:nColors.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   826
        colorIndex := 1.
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   827
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   828
        "
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   829
         now, we have reduced things to the number of colors
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   830
         which are theoretically supported by the devices colormap.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   831
         allocate all used colors in walking over true entries in
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   832
         the [r][g][b] table - this may still fail,
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   833
         if we run out of device colors.
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   834
        "
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   835
        fit := true.
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   836
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   837
        r := 0.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   838
        redArray do:[:greenArray |
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   839
            (fit and:[greenArray notNil]) ifTrue:[
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   840
                g := 0.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   841
                greenArray do:[:blueArray |
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   842
                    (fit and:[blueArray notNil]) ifTrue:[
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   843
                        b := 0.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   844
                        blueArray do:[:present |
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   845
                            |id|
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   846
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   847
                            (fit and:[present ~~ 0]) ifTrue:[
1237
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1218
diff changeset
   848
                                color := Color redByte:r
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1218
diff changeset
   849
                                             greenByte:g
15848ece8b95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1218
diff changeset
   850
                                              blueByte:b.
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   851
                                color := color on:aDevice.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   852
                                (id := color colorId) isNil ifTrue:[
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   853
                                    fit := false
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   854
                                ] ifFalse:[
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   855
                                    colors at:colorIndex put:color.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   856
                                    colorIndex := colorIndex + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   857
                                    blueArray at:(b + 1) put:id
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   858
                                ]
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   859
                            ].
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   860
                            b := b + 1
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   861
                        ]
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   862
                    ].
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   863
                    g := g + 1
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   864
                ]
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   865
            ].
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   866
            r := r + 1
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   867
        ].
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   868
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   869
        "again with less color bits if we did not get all colors"
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   870
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   871
        fit ifFalse:[
1167
4998857f7a9a new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 938
diff changeset
   872
            'Depth24Image [info]: could not allocate color(s)' infoPrintCR.
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   873
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   874
            "free the allocated colors"
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   875
            colors atAllPut:nil.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   876
            "a kludge - force immediate freeing of colors"
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   877
            ObjectMemory scavenge; finalize.
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   878
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   879
            "cut off one more color-bit - cut off blue first"
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   880
            (bMask == 2r11111111) ifTrue:[
1629
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   881
                bMask := 2r11111100
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   882
            ] ifFalse:[
1629
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   883
                (bMask == 2r11111100) ifTrue:[
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   884
                    bMask := 2r11110000
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   885
                ] ifFalse:[
1629
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   886
                    (rMask == 2r11111111) ifTrue:[
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   887
                        rMask := 2r11111100.
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   888
                        gMask := 2r11111100.
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   889
                    ] ifFalse:[
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   890
                        rMask := (rMask bitShift:1) bitAnd:2r11111111.
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   891
                        gMask := (gMask bitShift:1) bitAnd:2r11111111.
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   892
                        bMask := (bMask bitShift:1) bitAnd:2r11111111
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   893
                    ]
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   894
                ]
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   895
            ].
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   896
            fitMap := false.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   897
            redArray := nil
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   898
        ]
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   899
    ].
304f026e10cd Initial revision
claus
parents:
diff changeset
   900
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   901
    (nColors ~~ nColorsNeeded) ifTrue:[
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   902
        "/ mhmh - did not get all colors ...
1607
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   903
        "/ add existing colors and dither.
4eb60ce558db when dithering rgb images:
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   904
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   905
        'Depth24Image [info]: only got ' infoPrint. nColors infoPrint. ' out of ' infoPrint.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   906
        nColorsNeeded infoPrint. ' image colors.' infoPrintCR.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   907
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   908
        "/
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   909
        "/ dither using those we got ...
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   910
        "/
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   911
        DitherAlgorithm == #floydSteinberg ifTrue:[
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   912
            colors := colors asSet.
1629
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   913
"/            ditherColors := aDevice availableDitherColors.
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   914
"/            ditherColors notNil ifTrue:[
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   915
"/                colors addAll:ditherColors.
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   916
"/            ].
7735e52e84f0 earlier break out of color allocation loop
Claus Gittinger <cg@exept.de>
parents: 1607
diff changeset
   917
            colors addAll:aDevice deviceColors.
1597
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   918
            colors := colors asArray.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   919
            f := self rgbImageAsDitheredPseudoFormOn:aDevice colors:colors.
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   920
            f notNil ifTrue:[^ f].
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   921
        ].
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   922
    ].
019f40ecbe64 added dither code for no-colorCube case.
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
   923
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   924
    "create pseudocolor bits and translate"
304f026e10cd Initial revision
claus
parents:
diff changeset
   925
304f026e10cd Initial revision
claus
parents:
diff changeset
   926
    pseudoBits := ByteArray uninitializedNew:(width * height).
304f026e10cd Initial revision
claus
parents:
diff changeset
   927
304f026e10cd Initial revision
claus
parents:
diff changeset
   928
    srcIndex := 1.
304f026e10cd Initial revision
claus
parents:
diff changeset
   929
    dstIndex := 1.
304f026e10cd Initial revision
claus
parents:
diff changeset
   930
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   931
    (rMask == 2r11111111
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   932
     and:[gMask == 2r11111111
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   933
     and:[bMask == 2r11111111]]) ifTrue:[
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   934
        [srcIndex < dataSize] whileTrue:[
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   935
            r := bytes at:srcIndex.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   936
            srcIndex := srcIndex + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   937
            g := bytes at:srcIndex.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   938
            srcIndex := srcIndex + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   939
            b := bytes at:srcIndex.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   940
            srcIndex := srcIndex + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   941
            greenArray := redArray at:(r + 1).
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   942
            blueArray := greenArray at:(g + 1).
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   943
            pseudoBits at:dstIndex put:(blueArray at:(b + 1)).
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   944
            dstIndex := dstIndex + 1
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   945
        ]
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   946
    ] ifFalse:[
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   947
        [srcIndex < dataSize] whileTrue:[
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   948
            r := bytes at:srcIndex.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   949
            r := r bitAnd:rMask.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   950
            srcIndex := srcIndex + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   951
            g := bytes at:srcIndex.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   952
            g := g bitAnd:gMask.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   953
            srcIndex := srcIndex + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   954
            b := bytes at:srcIndex.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   955
            b := b bitAnd:bMask.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   956
            srcIndex := srcIndex + 1.
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   957
            greenArray := redArray at:(r + 1).
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   958
            blueArray := greenArray at:(g + 1).
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   959
            pseudoBits at:dstIndex put:(blueArray at:(b + 1)).
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   960
            dstIndex := dstIndex + 1
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   961
        ]
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   962
    ].
304f026e10cd Initial revision
claus
parents:
diff changeset
   963
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   964
    f := Form width:width height:height depth:depth on:aDevice.
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   965
    f isNil ifTrue:[^ nil].
304f026e10cd Initial revision
claus
parents:
diff changeset
   966
    f colorMap:colors.
304f026e10cd Initial revision
claus
parents:
diff changeset
   967
    f initGC.
89
ea2bf46eb669 *** empty log message ***
claus
parents: 81
diff changeset
   968
    aDevice drawBits:pseudoBits bitsPerPixel:8 depth:depth
938
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   969
               width:width height:height
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   970
                   x:0 y:0
1926ecac24b5 fixColor and ditherColor stuff moved from Color
Claus Gittinger <cg@exept.de>
parents: 886
diff changeset
   971
                into:(f id) x:0 y:0 width:width height:height with:(f gcId).
1
304f026e10cd Initial revision
claus
parents:
diff changeset
   972
    ^ f
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   973
!
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   974
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   975
rgbImageAsTrueColorFormOn:aDevice
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   976
    "return a truecolor form from the rgb-picture."
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   977
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   978
    |bestFormat usedDeviceDepth usedDeviceBitsPerPixel depth
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   979
     myDepth form imageBits destIndex srcIndex 
856
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
   980
     rightShiftR rightShiftG rightShiftB shiftRed shiftGreen shiftBlue|
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   981
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   982
    bestFormat := self bestSupportedImageFormatFor:aDevice.
236
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   983
    usedDeviceDepth := bestFormat at:#depth.
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   984
    usedDeviceBitsPerPixel := bestFormat at:#bitsPerPixel.
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   985
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   986
    rightShiftR := (8 - aDevice bitsRed).
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   987
    rightShiftG := (8 - aDevice bitsGreen).
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   988
    rightShiftB := (8 - aDevice bitsBlue).
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   989
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   990
    shiftRed := aDevice shiftRed.
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   991
    shiftGreen := aDevice shiftGreen.
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   992
    shiftBlue := aDevice shiftBlue.
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   993
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   994
    "/
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   995
    "/ for now, only a few formats are supported
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   996
    "/
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   997
    myDepth := self bitsPerPixel.
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
   998
    myDepth == usedDeviceBitsPerPixel ifTrue:[
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
   999
        "/
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1000
        "/ first, the trivial case, where the depths match
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1001
        "/ 24 bit/pixel
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1002
        "/
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1003
        imageBits := bytes.
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1004
    ] ifFalse:[
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1005
        "/
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1006
        "/ 16 bit/pixel ...
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1007
        "/
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1008
        (usedDeviceBitsPerPixel == 16) ifTrue:[
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1009
            imageBits := ByteArray uninitializedNew:(width * height * 2).
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1010
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1011
            "/ now, walk over the image and compose 16bit values from the r/g/b triples
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1012
856
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1013
%{
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1014
            if (__bothSmallInteger(_INST(height),_INST(width))
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1015
             && __bothSmallInteger(rightShiftR, shiftRed)
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1016
             && __bothSmallInteger(rightShiftG, shiftGreen)
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1017
             && __bothSmallInteger(rightShiftB, shiftBlue)
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1018
             && __isByteArray(_INST(bytes))
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1019
             && __isByteArray(imageBits)) {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1020
                int rShRed = __intVal(rightShiftR),
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1021
                    rShGreen = __intVal(rightShiftG),
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1022
                    rShBlue = __intVal(rightShiftB),
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1023
                    lShRed = __intVal(shiftRed),
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1024
                    lShGreen = __intVal(shiftGreen),
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1025
                    lShBlue = __intVal(shiftBlue);
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1026
                int x, y, w;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1027
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1028
                unsigned char *srcPtr = _ByteArrayInstPtr(_INST(bytes))->ba_element;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1029
                char *dstPtr = _ByteArrayInstPtr(imageBits)->ba_element;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1030
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1031
                w = __intVal(_INST(width));
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1032
                if ((rShRed == 0) && (rShGreen == 0) && (rShBlue == 0)) {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1033
                    for (y=__intVal(_INST(height)); y > 0; y--) {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1034
                        for (x=w; x > 0; x--) {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1035
                            unsigned v;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1036
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1037
                            v = srcPtr[0] << lShRed;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1038
                            v |= (srcPtr[1] << lShGreen);
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1039
                            v |= (srcPtr[2] << lShBlue);
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1040
# ifdef MSBFIRST
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1041
                            ((short *)dstPtr)[0] = v;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1042
# else
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1043
                            dstPtr[0] = (v>>8) & 0xFF;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1044
                            dstPtr[1] = (v) & 0xFF;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1045
# endif
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1046
                            dstPtr += 2;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1047
                            srcPtr += 3;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1048
                        }
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1049
                    }
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1050
                } else {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1051
                    for (y=__intVal(_INST(height)); y > 0; y--) {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1052
                        for (x=w; x > 0; x--) {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1053
                            unsigned r, g, b, v;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1054
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1055
                            r = srcPtr[0] >> rShRed;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1056
                            g = srcPtr[1] >> rShGreen;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1057
                            b = srcPtr[2] >> rShBlue;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1058
                            v = r << lShRed;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1059
                            v |= (g << lShGreen);
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1060
                            v |= (b << lShBlue);
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1061
# ifdef MSBFIRST
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1062
                            ((short *)dstPtr)[0] = v;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1063
# else
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1064
                            dstPtr[0] = (v>>8) & 0xFF;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1065
                            dstPtr[1] = (v) & 0xFF;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1066
# endif
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1067
                            dstPtr += 2;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1068
                            srcPtr += 3;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1069
                        }
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1070
                    }
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1071
                }
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1072
            }
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1073
%}.
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1074
        ] ifFalse:[
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1075
            "/
856
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1076
            "/ 32 bits/pixel ...
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1077
            "/
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1078
            (usedDeviceBitsPerPixel == 32) ifTrue:[
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1079
                imageBits := ByteArray uninitializedNew:(width * height * 4).
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1080
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1081
                "/ now, walk over the image and compose 32bit values from the r/g/b triples
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1082
856
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1083
%{       
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1084
                if (__bothSmallInteger(_INST(height), _INST(width))
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1085
                 && __bothSmallInteger(rightShiftR, shiftRed)
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1086
                 && __bothSmallInteger(rightShiftG, shiftGreen)
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1087
                 && __bothSmallInteger(rightShiftB, shiftBlue)
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1088
                 && __isByteArray(_INST(bytes))
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1089
                 && __isByteArray(imageBits)) {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1090
                    int rShRed = __intVal(rightShiftR),
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1091
                        rShGreen = __intVal(rightShiftG),
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1092
                        rShBlue = __intVal(rightShiftB),
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1093
                        lShRed = __intVal(shiftRed),
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1094
                        lShGreen = __intVal(shiftGreen),
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1095
                        lShBlue = __intVal(shiftBlue);
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1096
                    int x, y, w;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1097
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1098
                    unsigned char *srcPtr = _ByteArrayInstPtr(_INST(bytes))->ba_element;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1099
                    char *dstPtr = _ByteArrayInstPtr(imageBits)->ba_element;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1100
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1101
                    w = __intVal(_INST(width));
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1102
                    if ((rShRed == 0) && (rShGreen == 0) && (rShBlue == 0)) {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1103
                        for (y=__intVal(_INST(height)); y > 0; y--) {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1104
                            for (x=w; x > 0; x--) {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1105
                                unsigned v;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1106
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1107
                                v = srcPtr[0] << lShRed;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1108
                                v |= (srcPtr[1] << lShGreen);
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1109
                                v |= (srcPtr[2] << lShBlue);
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1110
# ifdef MSBFIRST
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1111
                                ((int *)dstPtr)[0] = v;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1112
# else
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1113
                                dstPtr[0] = (v>>24) & 0xFF;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1114
                                dstPtr[1] = (v>>16) & 0xFF;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1115
                                dstPtr[2] = (v>>8) & 0xFF;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1116
                                dstPtr[3] = (v) & 0xFF;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1117
# endif
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1118
                                dstPtr += 4;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1119
                                srcPtr += 3;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1120
                            }
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1121
                        }
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1122
                    } else {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1123
                        for (y=__intVal(_INST(height)); y > 0; y--) {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1124
                            for (x=w; x > 0; x--) {
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1125
                                unsigned r, g, b, v;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1126
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1127
                                r = srcPtr[0] >> rShRed;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1128
                                g = srcPtr[1] >> rShGreen;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1129
                                b = srcPtr[2] >> rShBlue;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1130
                                v = r << lShRed;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1131
                                v |= (g << lShGreen);
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1132
                                v |= (b << lShBlue);
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1133
# ifdef MSBFIRST
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1134
                                ((int *)dstPtr)[0] = v;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1135
# else
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1136
                                dstPtr[0] = (v>>24) & 0xFF;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1137
                                dstPtr[1] = (v>>16) & 0xFF;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1138
                                dstPtr[2] = (v>>8) & 0xFF;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1139
                                dstPtr[3] = (v) & 0xFF;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1140
# endif
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1141
                                dstPtr += 4;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1142
                                srcPtr += 3;
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1143
                            }
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1144
                        }
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1145
                    }
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1146
                }
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1147
%}.
856
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1148
            ] ifFalse:[
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1149
                "/
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1150
                "/ 8 bits/pixel ...
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1151
                "/
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1152
                (usedDeviceBitsPerPixel == 8) ifTrue:[
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1153
                    imageBits := ByteArray uninitializedNew:(width * height).
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1154
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1155
                    "/ now, walk over the image and compose 8bit values from the r/g/b triples
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1156
856
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1157
%{              
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1158
                    if (__bothSmallInteger(_INST(height), _INST(width))
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1159
                     && __bothSmallInteger(rightShiftR, shiftRed)
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1160
                     && __bothSmallInteger(rightShiftG, shiftGreen)
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1161
                     && __bothSmallInteger(rightShiftB, shiftBlue)
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1162
                     && __isByteArray(_INST(bytes))
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1163
                     && __isByteArray(imageBits)) {
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1164
                        int rShRed = __intVal(rightShiftR),
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1165
                            rShGreen = __intVal(rightShiftG),
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1166
                            rShBlue = __intVal(rightShiftB),
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1167
                            lShRed = __intVal(shiftRed),
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1168
                            lShGreen = __intVal(shiftGreen),
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1169
                            lShBlue = __intVal(shiftBlue);
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1170
                        int x, y, w;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1171
856
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1172
                        unsigned char *srcPtr = _ByteArrayInstPtr(_INST(bytes))->ba_element;
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1173
                        char *dstPtr = _ByteArrayInstPtr(imageBits)->ba_element;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1174
856
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1175
                        w = __intVal(_INST(width));
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1176
                        if ((rShRed == 0) && (rShGreen == 0) && (rShBlue == 0)) {
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1177
                            for (y=__intVal(_INST(height)); y > 0; y--) {
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1178
                                for (x=w; x > 0; x--) {
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1179
                                    unsigned v;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1180
856
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1181
                                    v = srcPtr[0] << lShRed;
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1182
                                    v |= (srcPtr[1] << lShGreen);
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1183
                                    v |= (srcPtr[2] << lShBlue);
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1184
                                    dstPtr[0] = v;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1185
856
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1186
                                    dstPtr += 1;
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1187
                                    srcPtr += 3;
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1188
                                }
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1189
                            }
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1190
                        } else {
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1191
                            for (y=__intVal(_INST(height)); y > 0; y--) {
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1192
                                for (x=w; x > 0; x--) {
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1193
                                    unsigned r, g, b, v;
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1194
856
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1195
                                    r = srcPtr[0] >> rShRed;
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1196
                                    g = srcPtr[1] >> rShGreen;
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1197
                                    b = srcPtr[2] >> rShBlue;
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1198
                                    v = r << lShRed;
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1199
                                    v |= (g << lShGreen);
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1200
                                    v |= (b << lShBlue);
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1201
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1202
                                    dstPtr[0] = v;
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1203
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1204
                                    dstPtr += 1;
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1205
                                    srcPtr += 3;
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1206
                                }
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1207
                            }
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1208
                        }
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1209
                    }
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1210
%}.
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1211
                ]
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1212
            ].
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1213
        ]
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1214
    ].
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1215
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1216
    imageBits isNil ifTrue:[            
856
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1217
        'IMAGE: unimplemented trueColor depth in #rgbImageAsTrueColorFormOn: ' errorPrint.
9f802d4d0c1a support 8-bit rgb displays
Claus Gittinger <cg@exept.de>
parents: 842
diff changeset
  1218
        usedDeviceBitsPerPixel errorPrintCR.
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1219
        ^ self asMonochromeFormOn:aDevice
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1220
    ].
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1221
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1222
    form := Form width:width height:height depth:usedDeviceDepth on:aDevice.
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1223
    form isNil ifTrue:[
1177
e89408c15bb5 newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 1167
diff changeset
  1224
        'Depth24Image [warning]: display bitmap creation failed' errorPrintCR.
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1225
        ^ nil
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1226
    ].
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1227
    form initGC.
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1228
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1229
    form 
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1230
        copyBitsFrom:imageBits bitsPerPixel:usedDeviceBitsPerPixel depth:usedDeviceDepth 
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1231
               width:width height:height 
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1232
                   x:0 y:0 toX:0 y:0. 
194
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1233
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1234
    ^ form
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1235
Claus Gittinger <cg@exept.de>
parents: 151
diff changeset
  1236
    "Modified: 21.10.1995 / 19:30:11 / cg"
810
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1237
! !
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1238
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1239
!Depth24Image methodsFor:'dither helpers'!
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1240
842
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1241
floydSteinbergDitheredBitsDepth:depth
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1242
    "return the bitmap for a dithered depth bitmap from the image.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1243
     Redefined to make use of knowing that pixels are 24 bit r/g/b"
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1244
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1245
    |dstIndex        "{Class: SmallInteger }"
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1246
     nextDst         "{Class: SmallInteger }"
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1247
     bytesPerRow     "{Class: SmallInteger }"
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1248
     bytesPerOutRow  "{Class: SmallInteger }"
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1249
     outBits greyMap1 greyMap2 greyLevels 
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1250
     errorArray
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1251
     errorArray1
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1252
     e t v
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1253
     w               "{Class: SmallInteger }"
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1254
     h               "{Class: SmallInteger }"
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1255
     bitCnt          "{Class: SmallInteger }"
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1256
     byte            "{Class: SmallInteger }" 
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1257
     grey dT 
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1258
     eR eRB eB eLB |
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1259
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1260
    (samplesPerPixel ~~ 3
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1261
    or:[bitsPerSample ~= #(8 8 8)]) ifTrue:[
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1262
        ^ super floydSteinbergDitheredBitsDepth:depth
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1263
    ].
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1264
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1265
    w := width.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1266
    h := height.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1267
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1268
    bytesPerRow := self bytesPerRow.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1269
    bytesPerOutRow := ((w * depth) + 7) // 8.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1270
    outBits := ByteArray uninitializedNew:(bytesPerOutRow * h).
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1271
    (outBits isNil or:[bytes isNil]) ifTrue:[
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1272
        ^ nil
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1273
    ].
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1274
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1275
    greyLevels := (1 bitShift:depth) - 1.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1276
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1277
    greyMap1 := Array new:256.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1278
    greyMap2 := Array new:256.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1279
    1 to:256 do:[:i |
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1280
        v := (greyLevels / 255 * (i-1)).
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1281
        greyMap1 at:i put:v.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1282
        greyMap2 at:i put:v.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1283
    ].
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1284
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1285
    greyMap1 := (greyMap1 collect:[:b | b isNil ifTrue:[
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1286
                                            0
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1287
                                        ] ifFalse:[
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1288
                                            b truncated
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1289
                                        ]
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1290
                                  ]) asByteArray.      
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1291
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1292
    greyMap2 := (greyMap2 collect:[:el | 
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1293
                                        el isNil ifTrue:[
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1294
                                            0
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1295
                                        ] ifFalse:[
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1296
                                            ((el - el truncated)  "/ the error (0..1)
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1297
                                            * 255) rounded
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1298
                                        ]]) asByteArray.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1299
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1300
    errorArray := ByteArray new:(w + 2) * 2.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1301
    errorArray1 := ByteArray new:(w + 2) * 2.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1302
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1303
%{
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1304
    int __byte;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1305
    int __dT, __err, __e16, __eR, __eB, __eRB, __eLB;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1306
    int __depth = __intVal(depth);
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1307
    int __dstIdx = 0;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1308
    int __srcIdx = 0;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1309
    int __bitCnt;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1310
    int __grey;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1311
    int __w = __intVal(w);
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1312
    int __h = __intVal(h);
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1313
    int __x;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1314
    int __y;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1315
    int __nextDst;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1316
    int __nextSrc;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1317
    int __bytesPerRow = __intVal(bytesPerRow);
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1318
    int __bytesPerOutRow = __intVal(bytesPerOutRow);
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1319
    int __pixel;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1320
    int __greyLevels = __intVal(greyLevels);
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1321
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1322
    char *__outBits = __ByteArrayInstPtr(outBits)->ba_element;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1323
    unsigned char *__bytes = __ByteArrayInstPtr(__INST(bytes))->ba_element;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1324
    unsigned char *__greyMap1 = __ByteArrayInstPtr(greyMap1)->ba_element;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1325
    unsigned char *__greyMap2 = __ByteArrayInstPtr(greyMap2)->ba_element;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1326
    short *__errorArray = (short *)(__ByteArrayInstPtr(errorArray)->ba_element);
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1327
    short *__errorArray1 = (short *)(__ByteArrayInstPtr(errorArray1)->ba_element);
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1328
    short *__t;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1329
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1330
    bzero(errorArray1, (__w+2) * 2);
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1331
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1332
    __bitCnt = 8;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1333
    for (__y=0; __y<__h; __y++) {
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1334
        __nextDst = __dstIdx + __bytesPerOutRow;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1335
        __nextSrc = __srcIdx + __bytesPerRow;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1336
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1337
        __byte = 0;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1338
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1339
        __t = __errorArray;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1340
        __errorArray = __errorArray1;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1341
        __errorArray1 = __t;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1342
        bzero(errorArray1, (__w+2) * 2);
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1343
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1344
        for (__x=0; __x<__w; __x++) {
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1345
            __grey = (__bytes[__srcIdx] * 3)           /* 0.3*r + 0.6*g + b -> 0..2550 */
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1346
                     + (__bytes[__srcIdx+1] * 6)
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1347
                     + __bytes[__srcIdx+2];   
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1348
            __grey = __grey / 10;                      /* 0 .. 255 */
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1349
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1350
            __pixel = __greyMap1[__grey];            /* 0..(greyLevels-1) */
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1351
            __err = __greyMap2[__grey];              /* 0.. 255 - error) */
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1352
            __err += __errorArray[__x+1];
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1353
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1354
            if (__err > 127) {                        /* dither says: next pixel */
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1355
               if ( __pixel != __greyLevels)
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1356
                    __pixel++;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1357
                __err = __err - 255;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1358
            } else {
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1359
            }
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1360
            if (__err) {
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1361
                __e16 = __err >> 4;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1362
                __eR = __e16 * 7;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1363
                __eRB = __e16 * 1;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1364
                __eB = __e16 * 5;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1365
                __eLB = __err - __eR - __eRB - __eB;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1366
                
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1367
                __errorArray [__x+1+1] += __eR;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1368
                __errorArray1[__x+1+1] += __eRB;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1369
                __errorArray1[__x+1  ] += __eB;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1370
                __errorArray1[__x+1-1] += __eLB;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1371
            }
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1372
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1373
            __srcIdx += 3;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1374
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1375
            __byte = (__byte << __depth) | __pixel;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1376
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1377
            __bitCnt = __bitCnt - __depth;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1378
            if (__bitCnt == 0) {
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1379
                __outBits[__dstIdx] = __byte;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1380
                __dstIdx++;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1381
                __byte = 0;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1382
                __bitCnt = 8;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1383
            }
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1384
        }
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1385
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1386
        if (__bitCnt != 8) {
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1387
            __byte = __byte << __bitCnt;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1388
            __outBits[__dstIdx] = __byte;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1389
            __bitCnt = 8;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1390
        }
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1391
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1392
        __srcIdx = __nextSrc;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1393
        __dstIdx = __nextDst;
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1394
    }
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1395
%}.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1396
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1397
    ^ outBits
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1398
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1399
    "Created: 10.6.1996 / 13:28:22 / cg"
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1400
    "Modified: 10.6.1996 / 15:09:07 / cg"
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1401
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1402
!
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1403
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1404
floydSteinbergDitheredMonochromeBits
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1405
    "return the bitmap for a dithered monochrome bitmap from the image.
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1406
     Redefined to make use of knowing that pixels are 24 bit r/g/b"
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1407
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1408
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1409
    ^ self floydSteinbergDitheredBitsDepth:1
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1410
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1411
    "Created: 10.6.1996 / 22:55:59 / cg"
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1412
!
dc8aa9127b49 added conversion for rgb -> greyScale using floyd-steinberg dither
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
  1413
810
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1414
orderedDitheredBitsWithDitherMatrix:ditherMatrix ditherWidth:dW depth:depth
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1415
    "return the bitmap for a dithered depth-bitmap from the image;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1416
     with a constant ditherMatrix, this can be used for thresholding.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1417
     Redefined to make use of knowing that pixels are 24-bit values."
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1418
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1419
    |f dH nDither v range  
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1420
     greyMap1 greyMap2 greyLevels outBits
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1421
     bytesPerOutRow  "{Class: SmallInteger }"
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1422
     bytesPerRow     "{Class: SmallInteger }"
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1423
     w               "{Class: SmallInteger }"
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1424
     h               "{Class: SmallInteger }"|
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1425
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1426
    photometric ~~ #rgb ifTrue:[
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1427
        self error:'invalid format'.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1428
        ^ nil
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1429
    ].
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1430
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1431
    nDither := ditherMatrix size.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1432
    dH := nDither / dW.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1433
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1434
    w := width.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1435
    h := height.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1436
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1437
    greyLevels := 1 bitShift:depth.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1438
    bytesPerRow := self bytesPerRow.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1439
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1440
    bytesPerOutRow := (w * depth + 7) // 8.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1441
    outBits := ByteArray uninitializedNew:(bytesPerOutRow * h).
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1442
    (outBits isNil or:[bytes isNil]) ifTrue:[
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1443
        ^ nil
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1444
    ].
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1445
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1446
    greyMap1 := Array new:256.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1447
    greyMap2 := Array new:256.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1448
    range := greyLevels-1.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1449
    1 to:256 do:[:i |
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1450
        v := (range / 255 * (i-1)).
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1451
        greyMap1 at:i put:v.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1452
        greyMap2 at:i put:v.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1453
    ].
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1454
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1455
    greyMap1 := (greyMap1 collect:[:b | b isNil ifTrue:[
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1456
                                            0
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1457
                                        ] ifFalse:[
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1458
                                            b truncated
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1459
                                        ]
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1460
                                  ]) asByteArray.      
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1461
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1462
    greyMap2 := (greyMap2 collect:[:el | 
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1463
                                        el isNil ifTrue:[
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1464
                                            0
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1465
                                        ] ifFalse:[
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1466
                                            ((el - el truncated)  "/ the error (0..1)
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1467
                                            * nDither) rounded
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1468
                                        ]]) asByteArray.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1469
%{
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1470
    int __dW = __intVal(dW);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1471
    int __dH = __intVal(dH);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1472
    int __byte;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1473
    int __nDither = __intVal(nDither);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1474
    int __dT, __dO;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1475
    int __depth = __intVal(depth);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1476
    int __dstIdx = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1477
    int __srcIdx = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1478
    int __bitCnt;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1479
    int __grey;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1480
    int __w = __intVal(w);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1481
    int __h = __intVal(h);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1482
    int __x;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1483
    int __y;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1484
    int __oX, __oY, __dY;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1485
    int __nextDst;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1486
    int __nextSrc;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1487
    int __bytesPerRow = __intVal(bytesPerRow);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1488
    int __bytesPerOutRow = __intVal(bytesPerOutRow);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1489
    int __pixel;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1490
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1491
    char *__outBits = __ByteArrayInstPtr(outBits)->ba_element;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1492
    unsigned char *__ditherMatrix = __ByteArrayInstPtr(ditherMatrix)->ba_element;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1493
    unsigned char *__bytes = __ByteArrayInstPtr(__INST(bytes))->ba_element;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1494
    unsigned char *__greyMap1 = __ByteArrayInstPtr(greyMap1)->ba_element;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1495
    unsigned char *__greyMap2 = __ByteArrayInstPtr(greyMap2)->ba_element;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1496
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1497
    __oY = __dY = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1498
    for (__y=0; __y<__h; __y++) {
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1499
        __nextDst = __dstIdx + __bytesPerOutRow;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1500
        __nextSrc = __srcIdx + __bytesPerRow;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1501
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1502
        __byte = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1503
        __bitCnt = 8;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1504
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1505
        __oX = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1506
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1507
        for (__x=0; __x<__w; __x++) {
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1508
            __grey = (__bytes[__srcIdx] * 3)           /* 0.3*r + 0.6*g + b -> 0..2550 */
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1509
                     + (__bytes[__srcIdx+1] * 6)
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1510
                     + __bytes[__srcIdx+2];   
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1511
            __grey = __grey / 10;                      /* 0 .. 255 */
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1512
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1513
            __pixel = __greyMap1[__grey];            /* 0..(greyLevels-1) */
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1514
            __dO    = __greyMap2[__grey];            /* 0.. nDither-1) */
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1515
            __dT = __ditherMatrix[__dY + __oX];
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1516
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1517
            if (__dO > __dT)                         /* dither says: next pixel */
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1518
                __pixel++;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1519
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1520
            __srcIdx += 3;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1521
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1522
            __oX++;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1523
            if (__oX == __dW) __oX = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1524
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1525
            __byte = (__byte << __depth) | __pixel;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1526
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1527
            __bitCnt = __bitCnt - __depth;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1528
            if (__bitCnt == 0) {
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1529
                __outBits[__dstIdx] = __byte;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1530
                __dstIdx++;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1531
                __byte = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1532
                __bitCnt = 8;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1533
            }
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1534
        }
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1535
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1536
        if (__bitCnt != 8) {
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1537
            __byte = __byte << __bitCnt;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1538
            __outBits[__dstIdx] = __byte;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1539
        }
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1540
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1541
        __oY++; __dY += __dW;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1542
        if (__oY == __dH) {
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1543
            __oY = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1544
            __dY = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1545
        }
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1546
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1547
        __srcIdx = __nextSrc;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1548
        __dstIdx = __nextDst;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1549
    }
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1550
%}.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1551
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1552
    ^ outBits
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1553
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1554
    "
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1555
     |i|
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1556
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1557
     i := Image fromFile:'bitmaps/granite.tiff'.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1558
     i asOrderedDitheredMonochromeImage inspect.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1559
     i asOrderedDitheredDepth2GrayImage inspect.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1560
     i asOrderedDitheredDepth4GrayImage inspect.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1561
     i asOrderedDitheredDepth8GrayImage inspect.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1562
    "
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1563
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1564
    "Created: 7.6.1996 / 10:48:06 / cg"
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1565
    "Modified: 7.6.1996 / 11:08:50 / cg"
808
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1566
!
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1567
810
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1568
orderedDitheredMonochromeBitsWithDitherMatrix:ditherMatrix ditherWidth:dW
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1569
    "return the dithered monochrome bits for the receiver image;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1570
     with a constant ditherMatrix, this can be used for thresholding.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1571
     Redefined to make use of knowing that pixels are 24-bit values."
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1572
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1573
    |f dH nDither   
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1574
     greyMap monoBits
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1575
     bytesPerMonoRow "{Class: SmallInteger }"
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1576
     bytesPerRow     "{Class: SmallInteger }"
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1577
     w               "{Class: SmallInteger }"
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1578
     h               "{Class: SmallInteger }"|
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1579
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1580
    photometric ~~ #rgb ifTrue:[
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1581
        self error:'invalid format'.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1582
        ^ nil
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1583
    ].
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1584
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1585
    nDither := ditherMatrix size.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1586
    dH := nDither / dW.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1587
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1588
    w := width.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1589
    h := height.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1590
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1591
    bytesPerRow := self bytesPerRow.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1592
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1593
    bytesPerMonoRow := w + 7 // 8.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1594
    monoBits := ByteArray uninitializedNew:(bytesPerMonoRow * h).
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1595
    (monoBits isNil or:[bytes isNil]) ifTrue:[
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1596
        ^ nil
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1597
    ].
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1598
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1599
%{
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1600
    int __dW = __intVal(dW);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1601
    int __dH = __intVal(dH);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1602
    int __byte;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1603
    int __nDither = __intVal(nDither);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1604
    int __dT;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1605
    int __dstIdx = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1606
    int __srcIdx = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1607
    int __bitCnt;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1608
    int __grey;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1609
    int __w = __intVal(w);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1610
    int __h = __intVal(h);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1611
    int __x;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1612
    int __y;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1613
    int __oX, __oY, __dY;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1614
    int __nextDst;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1615
    int __nextSrc;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1616
    int __bytesPerRow = __intVal(bytesPerRow);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1617
    int __bytesPerMonoRow = __intVal(bytesPerMonoRow);
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1618
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1619
    char *__monoBits = __ByteArrayInstPtr(monoBits)->ba_element;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1620
    unsigned char *__ditherMatrix = __ByteArrayInstPtr(ditherMatrix)->ba_element;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1621
    unsigned char *__bytes = __ByteArrayInstPtr(__INST(bytes))->ba_element;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1622
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1623
    __oY = __dY = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1624
    for (__y=0; __y<__h; __y++) {
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1625
        __nextDst = __dstIdx + __bytesPerMonoRow;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1626
        __nextSrc = __srcIdx + __bytesPerRow;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1627
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1628
        __byte = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1629
        __bitCnt = 8;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1630
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1631
        __oX = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1632
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1633
        for (__x=0; __x<__w; __x++) {
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1634
            __grey = (__bytes[__srcIdx] * 3)           /* 0.3*r + 0.6*g + b -> 0..2550 */
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1635
                     + (__bytes[__srcIdx+1] * 6)
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1636
                     + __bytes[__srcIdx+2];   
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1637
            __grey = __grey * (__nDither+1) / 2550;    /* 0 .. nDither+1 */
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1638
            __srcIdx += 3;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1639
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1640
            __dT = __ditherMatrix[__dY + __oX];
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1641
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1642
            __oX++;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1643
            if (__oX == __dW) __oX = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1644
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1645
            __byte = __byte << 1;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1646
            if (__grey > __dT) {
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1647
                __byte = __byte | 1;                   /* white */
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1648
            }
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1649
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1650
            __bitCnt--;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1651
            if (__bitCnt == 0) {
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1652
                __monoBits[__dstIdx] = __byte;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1653
                __dstIdx++;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1654
                __byte = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1655
                __bitCnt = 8;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1656
            }
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1657
        }
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1658
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1659
        if (__bitCnt != 8) {
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1660
            __byte = __byte << __bitCnt;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1661
            __monoBits[__dstIdx] = __byte;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1662
        }
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1663
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1664
        __oY++; __dY += __dW;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1665
        if (__oY == __dH) {
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1666
            __oY = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1667
            __dY = 0;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1668
        }
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1669
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1670
        __srcIdx = __nextSrc;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1671
        __dstIdx = __nextDst;
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1672
    }
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1673
%}.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1674
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1675
    ^ monoBits
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1676
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1677
    "
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1678
     |i f|
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1679
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1680
     i := Image fromFile:'bitmaps/granite.tiff'.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1681
     f := i asOrderedDitheredMonochromeFormOn:Display.
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1682
    "
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1683
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1684
    "Created: 7.6.1996 / 10:48:06 / cg"
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1685
    "Modified: 7.6.1996 / 11:08:50 / cg"
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1686
!
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1687
9789d836dbc4 more dithering
Claus Gittinger <cg@exept.de>
parents: 808
diff changeset
  1688
threshold8BitGrayBits
808
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1689
    "return the bits for an 8-bit grey image from the receiver.
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1690
     Special code, since this is a common case."
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1691
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1692
    |greyBits
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1693
     srcIndex "{ Class: SmallInteger }"
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1694
     dstIndex "{ Class: SmallInteger }"|
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1695
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1696
    greyBits := ByteArray uninitializedNew:(width * height).
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1697
%{
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1698
    register unsigned char *srcPtr, *dstPtr;
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1699
    register __v;
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1700
    register i;
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1701
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1702
    if ((__Class(__INST(bytes)) == ByteArray)
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1703
     && (__Class(greyBits) == ByteArray)) {
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1704
        srcPtr = __ByteArrayInstPtr(__INST(bytes))->ba_element;
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1705
        dstPtr = __ByteArrayInstPtr(greyBits)->ba_element;
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1706
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1707
        i = __intVal(__INST(height)) * __intVal(__INST(width));
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1708
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1709
        for (; i > 0; i--) {
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1710
            __v = (srcPtr[0] * 3);     /* 3*r + 6*g + b ; 0 .. 2550 */
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1711
            __v += (srcPtr[1] * 6);
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1712
            __v += srcPtr[2];
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1713
            srcPtr += 3;
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1714
            __v /= 10;                 /* 0..255 */
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1715
            *dstPtr++ = __v ;
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1716
        }
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1717
    }
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1718
%}.
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1719
    ^ greyBits
f548a3c6ca8c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 807
diff changeset
  1720
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1721
! !
304f026e10cd Initial revision
claus
parents:
diff changeset
  1722
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1723
!Depth24Image methodsFor:'enumerating'!
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1724
798
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1725
colorsAtY:y from:xLow to:xHigh do:aBlock
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1726
    "perform aBlock for each pixel from x1 to x2 in row y.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1727
     The block is passed the color at each pixel.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1728
     This method allows slighly faster processing of an
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1729
     image than using atX:y:, since some processing can be
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1730
     avoided when going from pixel to pixel. However, for
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1731
     real image processing, specialized methods should be written."
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1732
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1733
    |srcIndex "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1734
     x1       "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1735
     x2       "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1736
     rVal     "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1737
     gVal     "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1738
     bVal     "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1739
     lastR lastG lastB lastColor|
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1740
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1741
    photometric ~~ #rgb ifTrue:[
805
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1742
        ^ super colorsAtY:y from:xLow to:xHigh do:aBlock.
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1743
    ].
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1744
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1745
    x1 := xLow.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1746
    x2 := xHigh.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1747
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1748
    srcIndex := 1 + (((width * y) + x1) * 3).
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1749
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1750
    x1 to:x2 do:[:x |
798
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1751
        rVal := bytes at:(srcIndex).
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1752
        gVal := bytes at:(srcIndex + 1).
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1753
        bVal := bytes at:(srcIndex + 2).
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1754
        srcIndex := srcIndex + 3.
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1755
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1756
        (rVal == lastR and:[gVal == lastG and:[bVal == lastB]]) ifFalse:[
1350
3fced8a1576c *** empty log message ***
ca
parents: 1237
diff changeset
  1757
            lastColor := Color redByte:rVal greenByte:gVal blueByte:bVal * 100 / 255.
798
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1758
            lastR := rVal.
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1759
            lastG := gVal.
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1760
            lastB := bVal.
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1761
        ].
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1762
        aBlock value:x value:lastColor
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1763
    ]
798
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1764
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1765
    "Created: 7.6.1996 / 19:12:28 / cg"
805
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1766
    "Modified: 8.6.1996 / 10:16:51 / cg"
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1767
!
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1768
798
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1769
valuesAtY:y from:xLow to:xHigh do:aBlock
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1770
    "perform aBlock for each pixelValue from x1 to x2 in row y.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1771
     The block is passed the pixelValue at each pixel.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1772
     This method allows slighly faster processing of an
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1773
     image than using valueAtX:y:, since some processing can be
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1774
     avoided when going from pixel to pixel. However, for
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1775
     real image processing, specialized methods should be written.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1776
     Notice that the pixelValue is the r/g/b value packed into an integer
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1777
     (r bitShift:16) bitOr:(g bitSHift:8) bitOr:b"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1778
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1779
    |srcIndex "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1780
     x1       "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1781
     x2       "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1782
     r        "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1783
     g        "{ Class: SmallInteger }"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1784
     b        "{ Class: SmallInteger }"|
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1785
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1786
    x1 := xLow.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1787
    x2 := xHigh.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1788
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1789
    srcIndex := 1 + (((width * y) + x1) * 3).
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1790
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1791
    x1 to:x2 do:[:x |
798
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1792
        r := bytes at:(srcIndex).
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1793
        g := bytes at:(srcIndex + 1).
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1794
        b := bytes at:(srcIndex + 2).
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1795
        srcIndex := srcIndex + 3.
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1796
        aBlock value:x value:(((r bitShift:16) bitOr:(g bitShift:8)) bitOr:b)
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1797
    ]
798
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1798
31ed4a1d4b4a better dither
Claus Gittinger <cg@exept.de>
parents: 746
diff changeset
  1799
    "Created: 7.6.1996 / 19:09:40 / cg"
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1800
! !
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1801
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1802
!Depth24Image methodsFor:'magnification'!
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1803
1577
3d8eedcc0ad8 magnify mask as well.
Claus Gittinger <cg@exept.de>
parents: 1350
diff changeset
  1804
hardMagnifiedBy:scalePoint
3d8eedcc0ad8 magnify mask as well.
Claus Gittinger <cg@exept.de>
parents: 1350
diff changeset
  1805
    "return a new image magnified by scalePoint, aPoint.
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1806
     This is  the general magnification method, handling non-integral values"
304f026e10cd Initial revision
claus
parents:
diff changeset
  1807
304f026e10cd Initial revision
claus
parents:
diff changeset
  1808
    |mX mY
304f026e10cd Initial revision
claus
parents:
diff changeset
  1809
     newWidth  "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
  1810
     newHeight "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
  1811
     w         "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
  1812
     h         "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
  1813
     newImage newBytes
304f026e10cd Initial revision
claus
parents:
diff changeset
  1814
     value     "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
  1815
     srcRowIdx "{ Class: SmallInteger }"
304f026e10cd Initial revision
claus
parents:
diff changeset
  1816
     srcIndex  "{ Class: SmallInteger }"
1577
3d8eedcc0ad8 magnify mask as well.
Claus Gittinger <cg@exept.de>
parents: 1350
diff changeset
  1817
     dstIndex  "{ Class: SmallInteger }"
3d8eedcc0ad8 magnify mask as well.
Claus Gittinger <cg@exept.de>
parents: 1350
diff changeset
  1818
     newMask|
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1819
1577
3d8eedcc0ad8 magnify mask as well.
Claus Gittinger <cg@exept.de>
parents: 1350
diff changeset
  1820
    mX := scalePoint x.
3d8eedcc0ad8 magnify mask as well.
Claus Gittinger <cg@exept.de>
parents: 1350
diff changeset
  1821
    mY := scalePoint y.
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1822
    ((mX < 0) or:[mY < 0]) ifTrue:[^ nil].
304f026e10cd Initial revision
claus
parents:
diff changeset
  1823
    ((mX = 1) and:[mY = 1]) ifTrue:[^ self].
304f026e10cd Initial revision
claus
parents:
diff changeset
  1824
304f026e10cd Initial revision
claus
parents:
diff changeset
  1825
    newWidth := (width * mX) truncated.
304f026e10cd Initial revision
claus
parents:
diff changeset
  1826
    newHeight := (height * mY) truncated.
304f026e10cd Initial revision
claus
parents:
diff changeset
  1827
    newBytes := ByteArray uninitializedNew:(newWidth * 3 * newHeight).
304f026e10cd Initial revision
claus
parents:
diff changeset
  1828
1577
3d8eedcc0ad8 magnify mask as well.
Claus Gittinger <cg@exept.de>
parents: 1350
diff changeset
  1829
    mask notNil ifTrue:[
3d8eedcc0ad8 magnify mask as well.
Claus Gittinger <cg@exept.de>
parents: 1350
diff changeset
  1830
        newMask := (mask magnifiedBy:scalePoint)
3d8eedcc0ad8 magnify mask as well.
Claus Gittinger <cg@exept.de>
parents: 1350
diff changeset
  1831
    ].
3d8eedcc0ad8 magnify mask as well.
Claus Gittinger <cg@exept.de>
parents: 1350
diff changeset
  1832
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1833
    newImage := self species new.
886
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1834
    newImage 
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1835
        width:newWidth 
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1836
        height:newHeight 
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1837
        photometric:photometric 
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1838
        samplesPerPixel:samplesPerPixel 
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1839
        bitsPerSample:#(8 8 8) 
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1840
        colorMap:nil
1577
3d8eedcc0ad8 magnify mask as well.
Claus Gittinger <cg@exept.de>
parents: 1350
diff changeset
  1841
        bits:newBytes
3d8eedcc0ad8 magnify mask as well.
Claus Gittinger <cg@exept.de>
parents: 1350
diff changeset
  1842
        mask:newMask.
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1843
304f026e10cd Initial revision
claus
parents:
diff changeset
  1844
    "walk over destination image fetching pixels from source image"
304f026e10cd Initial revision
claus
parents:
diff changeset
  1845
304f026e10cd Initial revision
claus
parents:
diff changeset
  1846
    mY := mY asFloat.
304f026e10cd Initial revision
claus
parents:
diff changeset
  1847
    mX := mX asFloat.
304f026e10cd Initial revision
claus
parents:
diff changeset
  1848
%{
304f026e10cd Initial revision
claus
parents:
diff changeset
  1849
    REGISTER unsigned char *_dstP = _ByteArrayInstPtr(newBytes)->ba_element;
304f026e10cd Initial revision
claus
parents:
diff changeset
  1850
    unsigned char *_srcP = _ByteArrayInstPtr(_INST(bytes))->ba_element;
304f026e10cd Initial revision
claus
parents:
diff changeset
  1851
    unsigned char *_srcRowP, *sP;
304f026e10cd Initial revision
claus
parents:
diff changeset
  1852
    int _width3 = _intVal(_INST(width)) * 3;
304f026e10cd Initial revision
claus
parents:
diff changeset
  1853
    int _w = _intVal(newWidth) - 1;
304f026e10cd Initial revision
claus
parents:
diff changeset
  1854
    int _h = _intVal(newHeight) - 1;
304f026e10cd Initial revision
claus
parents:
diff changeset
  1855
    int _row, _col;
304f026e10cd Initial revision
claus
parents:
diff changeset
  1856
    double _mX = _floatVal(mX);
304f026e10cd Initial revision
claus
parents:
diff changeset
  1857
    double _mY = _floatVal(mY);
304f026e10cd Initial revision
claus
parents:
diff changeset
  1858
304f026e10cd Initial revision
claus
parents:
diff changeset
  1859
    for (_row = 0; _row <= _h; _row++) {
886
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1860
        _srcRowP = _srcP + (_width3 * (int)((double)_row / _mY));
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1861
        for (_col = 0; _col <= _w; _col++) {
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1862
            sP = _srcRowP + (((int)((double)_col / _mX)) * 3);
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1863
            _dstP[0] = sP[0];
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1864
            _dstP[1] = sP[1];
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1865
            _dstP[2] = sP[2];
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1866
            _dstP += 3;
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1867
        }
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1868
    }
304f026e10cd Initial revision
claus
parents:
diff changeset
  1869
%}
304f026e10cd Initial revision
claus
parents:
diff changeset
  1870
.
81
4ba554473294 *** empty log message ***
claus
parents: 66
diff changeset
  1871
"   the above C-code is equivalent to:
4ba554473294 *** empty log message ***
claus
parents: 66
diff changeset
  1872
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1873
    dstIndex := 1.
304f026e10cd Initial revision
claus
parents:
diff changeset
  1874
    w := newWidth - 1.
304f026e10cd Initial revision
claus
parents:
diff changeset
  1875
    h := newHeight - 1.
304f026e10cd Initial revision
claus
parents:
diff changeset
  1876
    0 to:h do:[:row |
886
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1877
        srcRowIdx := (width * 3 * (row // mY)) + 1.
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1878
        0 to:w do:[:col |
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1879
            srcIndex := srcRowIdx + ((col // mX) * 3).
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1880
            value := bytes at:srcIndex.
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1881
            newBytes at:dstIndex put:value.
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1882
            value := bytes at:(srcIndex + 1).
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1883
            newBytes at:(dstIndex + 1) put:value.
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1884
            value := bytes at:(srcIndex + 2).
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1885
            newBytes at:(dstIndex + 2) put:value.
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1886
            dstIndex := dstIndex + 3
04b88b61c640 tuned hardMagnify (there is more to tune there ...)
Claus Gittinger <cg@exept.de>
parents: 858
diff changeset
  1887
        ]
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1888
    ].
304f026e10cd Initial revision
claus
parents:
diff changeset
  1889
"
304f026e10cd Initial revision
claus
parents:
diff changeset
  1890
    ^ newImage
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1891
!
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1892
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1893
magnifyRowFrom:srcBytes offset:srcStart
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1894
	  into:dstBytes offset:dstStart factor:mX
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1895
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1896
    "magnify a single pixel row - can only magnify by integer factors"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1897
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1898
%{
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1899
    unsigned char *srcP, *dstP;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1900
    int _mag;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1901
    REGISTER int i;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1902
    REGISTER unsigned char byte1, byte2, byte3;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1903
    int _pixels;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1904
    OBJ w = _INST(width);
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1905
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1906
    if (__bothSmallInteger(srcStart, dstStart)
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1907
     && __bothSmallInteger(w, mX)
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1908
     && __isByteArray(srcBytes) && __isByteArray(dstBytes)) {
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1909
	_mag = _intVal(mX);
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1910
	srcP = _ByteArrayInstPtr(srcBytes)->ba_element - 1 + _intVal(srcStart);
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1911
	dstP = _ByteArrayInstPtr(dstBytes)->ba_element - 1 + _intVal(dstStart);
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1912
	_pixels = _intVal(w);
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1913
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1914
	while (_pixels--) {
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1915
	    byte1 = *srcP;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1916
	    byte2 = *(srcP+1);
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1917
	    byte3 = *(srcP+2);
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1918
	    srcP += 3;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1919
	    for (i=_mag; i>0; i--) {
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1920
		*dstP = byte1;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1921
		*(dstP+1) = byte2;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1922
		*(dstP+2) = byte3;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1923
		dstP += 3;
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1924
	    }
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1925
	}
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1926
	RETURN (self);
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1927
    }
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1928
%}
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1929
.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1930
    self primitiveFailed
1
304f026e10cd Initial revision
claus
parents:
diff changeset
  1931
! !
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1932
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1933
!Depth24Image methodsFor:'queries'!
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1934
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1935
bitsPerPixel
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1936
    "return the number of bits per pixel"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1937
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1938
    ^ 24
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1939
!
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1940
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1941
bitsPerRow
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1942
    "return the number of bits in one scanline of the image"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1943
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1944
    ^  width * 24
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1945
!
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1946
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1947
bitsPerSample
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1948
    "return the number of bits per sample.
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1949
     The return value is an array of bits-per-plane."
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1950
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1951
    bitsPerSample notNil ifTrue:[^ bitsPerSample].
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1952
    ^ #(8 8 8)
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1953
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  1954
    "Modified: 10.6.1996 / 18:02:33 / cg"
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1955
!
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1956
805
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1957
blueBitsOf:pixel
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1958
    ^ pixel bitAnd:16rFF.
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1959
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1960
    "Created: 8.6.1996 / 09:56:20 / cg"
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1961
!
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1962
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1963
blueComponentOf:pixel
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1964
    ^ (100.0 / 255.0) * (pixel bitAnd:16rFF)
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1965
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1966
    "Created: 8.6.1996 / 08:42:44 / cg"
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1967
    "Modified: 8.6.1996 / 09:57:41 / cg"
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1968
!
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1969
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1970
bytesPerRow
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1971
    "return the number of bytes in one scanline of the image"
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1972
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1973
    ^ width * 3
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1974
!
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  1975
805
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1976
greenBitsOf:pixel
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1977
    ^ (pixel bitShift:-8) bitAnd:16rFF.
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1978
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1979
    "Modified: 8.6.1996 / 08:56:28 / cg"
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1980
    "Created: 8.6.1996 / 09:56:30 / cg"
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1981
!
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1982
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1983
greenComponentOf:pixel
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1984
    ^ (100.0 / 255.0) * (pixel bitShift:-8) bitAnd:16rFF.
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1985
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1986
    "Created: 8.6.1996 / 08:42:37 / cg"
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1987
    "Modified: 8.6.1996 / 09:57:32 / cg"
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1988
!
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1989
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1990
redBitsOf:pixel
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1991
    ^ (pixel bitShift:-16) bitAnd:16rFF.
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1992
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1993
    "Modified: 8.6.1996 / 08:56:31 / cg"
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1994
    "Created: 8.6.1996 / 09:56:39 / cg"
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1995
!
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1996
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1997
redComponentOf:pixel
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1998
    ^ (100.0 / 255.0) * (pixel bitShift:-16) bitAnd:16rFF.
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  1999
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  2000
    "Created: 8.6.1996 / 08:42:25 / cg"
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  2001
    "Modified: 8.6.1996 / 09:57:23 / cg"
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  2002
!
5573c2078b73 specialized code relaxed
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
  2003
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  2004
samplesPerPixel
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  2005
    "return the number of samples per pixel in the image."
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  2006
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  2007
    samplesPerPixel notNil ifTrue:[^ samplesPerPixel].
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  2008
    ^ 3
813
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  2009
8bc17dba7a02 removed obsolete comversion stuff
Claus Gittinger <cg@exept.de>
parents: 810
diff changeset
  2010
    "Modified: 10.6.1996 / 18:03:09 / cg"
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  2011
! !
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  2012
1167
4998857f7a9a new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 938
diff changeset
  2013
!Depth24Image class methodsFor:'documentation'!
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  2014
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  2015
version
1657
f3d8ceac748a pixel accessing methods cleaned up
Claus Gittinger <cg@exept.de>
parents: 1629
diff changeset
  2016
    ^ '$Header: /cvs/stx/stx/libview/Depth24Image.st,v 1.48 1997-04-24 15:57:54 cg Exp $'
282
fe2d82f516f1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 236
diff changeset
  2017
! !