1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
|
/* Copyright (C) 2001-2021 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 1305 Grant Avenue - Suite 200, Novato,
CA 94945, U.S.A., +1(415)492-9861, for further information.
*/
/* 16-bit-per-pixel "memory" (stored bitmap) device */
#include "memory_.h"
#include "gx.h"
#include "gxdevice.h"
#include "gxdevmem.h" /* semi-public definitions */
#include "gdevmem.h" /* private definitions */
#undef chunk
#define chunk byte
/* The 16 bits are divided 5 for red, 6 for green, and 5 for blue. */
/* Note that the bits must always be kept in big-endian order. */
/* Procedures */
declare_mem_map_procs(mem_true16_map_rgb_color, mem_true16_map_color_rgb);
declare_mem_procs(mem_true16_copy_mono, mem_true16_copy_color, mem_true16_fill_rectangle);
/* The device descriptor. */
const gx_device_memory mem_true16_device =
mem_device("image16", 16, 0, mem_dev_initialize_device_procs);
const gdev_mem_functions gdev_mem_fns_16 =
{
mem_true16_map_rgb_color,
mem_true16_map_color_rgb,
mem_true16_fill_rectangle,
mem_true16_copy_mono,
mem_true16_copy_color,
gx_default_copy_alpha,
gx_default_strip_tile_rectangle,
mem_default_strip_copy_rop2,
mem_get_bits_rectangle
};
/* Map a r-g-b color to a color index. */
static gx_color_index
mem_true16_map_rgb_color(gx_device * dev, const gx_color_value cv[])
{
return ((cv[0] >> (gx_color_value_bits - 5)) << 11) +
((cv[1] >> (gx_color_value_bits - 6)) << 5) +
(cv[2] >> (gx_color_value_bits - 5));
}
/* Map a color index to a r-g-b color. */
static int
mem_true16_map_color_rgb(gx_device * dev, gx_color_index color,
gx_color_value prgb[3])
{
ushort value = color >> 11;
prgb[0] = ((value << 11) + (value << 6) + (value << 1) + (value >> 4))
>> (16 - gx_color_value_bits);
value = (color >> 5) & 0x3f;
prgb[1] = ((value << 10) + (value << 4) + (value >> 2))
>> (16 - gx_color_value_bits);
value = color & 0x1f;
prgb[2] = ((value << 11) + (value << 6) + (value << 1) + (value >> 4))
>> (16 - gx_color_value_bits);
return 0;
}
/* Convert x coordinate to byte offset in scan line. */
#undef x_to_byte
#define x_to_byte(x) ((x) << 1)
/* Fill a rectangle with a color. */
static int
mem_true16_fill_rectangle(gx_device * dev,
int x, int y, int w, int h, gx_color_index color)
{
gx_device_memory * const mdev = (gx_device_memory *)dev;
#if ARCH_IS_BIG_ENDIAN
const ushort color16 = (ushort)color;
#else
const ushort color16 = (ushort)((color << 8) | (color >> 8));
#endif
declare_scan_ptr(dest);
fit_fill(dev, x, y, w, h);
setup_rect(dest);
if (w == 1) {
while (h-- > 0) {
*(ushort *)dest = color16;
inc_ptr(dest, draster);
}
} else if ((color16 >> 8) == (color16 & 0xff)) {
bytes_fill_rectangle(scan_line_base(mdev, y) + (x << 1), draster,
(byte)color, w << 1, h);
} else {
while (h-- > 0) {
ushort *pptr = (ushort *) dest;
int cnt = w;
for (; cnt >= 4; pptr += 4, cnt -= 4)
pptr[3] = pptr[2] = pptr[1] = pptr[0] = color16;
switch (cnt) {
case 3: pptr[2] = color16;
case 2: pptr[1] = color16;
case 1: pptr[0] = color16;
case 0: DO_NOTHING;
}
inc_ptr(dest, draster);
}
}
return 0;
}
/* Copy a monochrome bitmap. */
static int
mem_true16_copy_mono(gx_device * dev,
const byte * base, int sourcex, int sraster,
gx_bitmap_id id, int x, int y, int w, int h,
gx_color_index zero, gx_color_index one)
{
gx_device_memory * const mdev = (gx_device_memory *)dev;
#if ARCH_IS_BIG_ENDIAN
const ushort zero16 = (ushort)zero;
const ushort one16 = (ushort)one;
#else
ushort zero16 = ((uint) (byte) zero << 8) + ((ushort) zero >> 8);
ushort one16 = ((uint) (byte) one << 8) + ((ushort) one >> 8);
#endif
const byte *line;
int first_bit;
declare_scan_ptr(dest);
fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
setup_rect(dest);
line = base + (sourcex >> 3);
first_bit = 0x80 >> (sourcex & 7);
while (h-- > 0) {
register ushort *pptr = (ushort *) dest;
const byte *sptr = line;
register int sbyte = *sptr++;
register int bit = first_bit;
int count = w;
do {
if (sbyte & bit) {
if (one != gx_no_color_index)
*pptr = one16;
} else {
if (zero != gx_no_color_index)
*pptr = zero16;
}
if ((bit >>= 1) == 0)
bit = 0x80, sbyte = *sptr++;
pptr++;
}
while (--count > 0);
line += sraster;
inc_ptr(dest, draster);
}
return 0;
}
/* Copy a color bitmap. */
static int
mem_true16_copy_color(gx_device * dev,
const byte * base, int sourcex, int sraster, gx_bitmap_id id,
int x, int y, int w, int h)
{
gx_device_memory * const mdev = (gx_device_memory *)dev;
fit_copy(dev, base, sourcex, sraster, id, x, y, w, h);
mem_copy_byte_rect(mdev, base, sourcex, sraster, x, y, w, h);
return 0;
}
|