#include "tkInt.h"
#include <math.h>
#include <ctype.h>
extern _XInitImageFuncPtrs _ANSI_ARGS_((XImage *image));
#if defined(__STDC__) || defined(_AIX)
typedef signed char schar;
#else
# ifndef __CHAR_UNSIGNED__
typedef char schar;
# else
typedef short schar;
# endif
#endif
typedef unsigned int pixel;
#define MAX_PIXELS 65536
typedef struct {
Display *display;
Colormap colormap;
double gamma;
Tk_Uid palette;
} ColorTableId;
typedef struct ColorTable {
ColorTableId id;
int flags;
int refCount;
int liveRefCount;
int numColors;
XVisualInfo visualInfo;
pixel redValues[256];
pixel greenValues[256];
pixel blueValues[256];
unsigned long *pixelMap;
unsigned char colorQuant[3][256];
} ColorTable;
#define BLACK_AND_WHITE 1
#define COLOR_WINDOW 2
#define DISPOSE_PENDING 4
#define MAP_COLORS 8
typedef struct PhotoMaster {
Tk_ImageMaster tkMaster;
Tcl_Interp *interp;
Tcl_Command imageCmd;
int flags;
int width, height;
int userWidth, userHeight;
Tk_Uid palette;
double gamma;
char *fileString;
char *dataString;
char *format;
unsigned char *pix24;
int ditherX, ditherY;
TkRegion validRegion;
struct PhotoInstance *instancePtr;
} PhotoMaster;
#define COLOR_IMAGE 1
#define IMAGE_CHANGED 2
typedef struct PhotoInstance {
PhotoMaster *masterPtr;
Display *display;
Colormap colormap;
struct PhotoInstance *nextPtr;
int refCount;
Tk_Uid palette;
double gamma;
Tk_Uid defaultPalette;
ColorTable *colorTablePtr;
Pixmap pixels;
int width, height;
schar *error;
XImage *imagePtr;
XVisualInfo visualInfo;
GC gc;
} PhotoInstance;
struct SubcommandOptions {
int options;
char *name;
int fromX, fromY;
int fromX2, fromY2;
int toX, toY;
int toX2, toY2;
int zoomX, zoomY;
int subsampleX, subsampleY;
char *format;
};
#define OPT_FORMAT 1
#define OPT_FROM 2
#define OPT_SHRINK 4
#define OPT_SUBSAMPLE 8
#define OPT_TO 0x10
#define OPT_ZOOM 0x20
static char *optionNames[] = {
"-format",
"-from",
"-shrink",
"-subsample",
"-to",
"-zoom",
(char *) NULL
};
static int ImgPhotoCreate _ANSI_ARGS_((Tcl_Interp *interp,
char *name, int argc, char **argv,
Tk_ImageType *typePtr, Tk_ImageMaster master,
ClientData *clientDataPtr));
static ClientData ImgPhotoGet _ANSI_ARGS_((Tk_Window tkwin,
ClientData clientData));
static void ImgPhotoDisplay _ANSI_ARGS_((ClientData clientData,
Display *display, Drawable drawable,
int imageX, int imageY, int width, int height,
int drawableX, int drawableY));
static void ImgPhotoFree _ANSI_ARGS_((ClientData clientData,
Display *display));
static void ImgPhotoDelete _ANSI_ARGS_((ClientData clientData));
Tk_ImageType tkPhotoImageType = {
"photo",
ImgPhotoCreate,
ImgPhotoGet,
ImgPhotoDisplay,
ImgPhotoFree,
ImgPhotoDelete,
(Tk_ImageType *) NULL
};
#define DEF_PHOTO_GAMMA "1"
#define DEF_PHOTO_HEIGHT "0"
#define DEF_PHOTO_PALETTE ""
#define DEF_PHOTO_WIDTH "0"
static Tk_ConfigSpec configSpecs[] = {
{TK_CONFIG_STRING, "-data", (char *) NULL, (char *) NULL,
(char *) NULL, Tk_Offset(PhotoMaster, dataString), TK_CONFIG_NULL_OK},
{TK_CONFIG_STRING, "-format", (char *) NULL, (char *) NULL,
(char *) NULL, Tk_Offset(PhotoMaster, format), TK_CONFIG_NULL_OK},
{TK_CONFIG_STRING, "-file", (char *) NULL, (char *) NULL,
(char *) NULL, Tk_Offset(PhotoMaster, fileString), TK_CONFIG_NULL_OK},
{TK_CONFIG_DOUBLE, "-gamma", (char *) NULL, (char *) NULL,
DEF_PHOTO_GAMMA, Tk_Offset(PhotoMaster, gamma), 0},
{TK_CONFIG_INT, "-height", (char *) NULL, (char *) NULL,
DEF_PHOTO_HEIGHT, Tk_Offset(PhotoMaster, userHeight), 0},
{TK_CONFIG_UID, "-palette", (char *) NULL, (char *) NULL,
DEF_PHOTO_PALETTE, Tk_Offset(PhotoMaster, palette), 0},
{TK_CONFIG_INT, "-width", (char *) NULL, (char *) NULL,
DEF_PHOTO_WIDTH, Tk_Offset(PhotoMaster, userWidth), 0},
{TK_CONFIG_END, (char *) NULL, (char *) NULL, (char *) NULL,
(char *) NULL, 0, 0}
};
static Tcl_HashTable imgPhotoHash;
static int imgPhotoHashInitialized;
static Tcl_HashTable imgPhotoColorHash;
static int imgPhotoColorHashInitialized;
#define N_COLOR_HASH (sizeof(ColorTableId) / sizeof(int))
static Tk_PhotoImageFormat *formatList = NULL;
static int ImgPhotoCmd _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, int argc, char **argv));
static int ParseSubcommandOptions _ANSI_ARGS_((
struct SubcommandOptions *optPtr,
Tcl_Interp *interp, int allowedOptions,
int *indexPtr, int argc, char **argv));
static void ImgPhotoCmdDeletedProc _ANSI_ARGS_((
ClientData clientData));
static int ImgPhotoConfigureMaster _ANSI_ARGS_((
Tcl_Interp *interp, PhotoMaster *masterPtr,
int argc, char **argv, int flags));
static void ImgPhotoConfigureInstance _ANSI_ARGS_((
PhotoInstance *instancePtr));
static void ImgPhotoSetSize _ANSI_ARGS_((PhotoMaster *masterPtr,
int width, int height));
static void ImgPhotoInstanceSetSize _ANSI_ARGS_((
PhotoInstance *instancePtr));
static int IsValidPalette _ANSI_ARGS_((PhotoInstance *instancePtr,
char *palette));
static int CountBits _ANSI_ARGS_((pixel mask));
static void GetColorTable _ANSI_ARGS_((PhotoInstance *instancePtr));
static void FreeColorTable _ANSI_ARGS_((ColorTable *colorPtr));
static void AllocateColors _ANSI_ARGS_((ColorTable *colorPtr));
static void DisposeColorTable _ANSI_ARGS_((ClientData clientData));
static void DisposeInstance _ANSI_ARGS_((ClientData clientData));
static int ReclaimColors _ANSI_ARGS_((ColorTableId *id,
int numColors));
static int MatchFileFormat _ANSI_ARGS_((Tcl_Interp *interp,
FILE *f, char *fileName, char *formatString,
Tk_PhotoImageFormat **imageFormatPtr,
int *widthPtr, int *heightPtr));
static int MatchStringFormat _ANSI_ARGS_((Tcl_Interp *interp,
char *string, char *formatString,
Tk_PhotoImageFormat **imageFormatPtr,
int *widthPtr, int *heightPtr));
static void Dither _ANSI_ARGS_((PhotoMaster *masterPtr,
int x, int y, int width, int height));
static void DitherInstance _ANSI_ARGS_((PhotoInstance *instancePtr,
int x, int y, int width, int height));
#undef MIN
#define MIN(a, b) ((a) < (b)? (a): (b))
#undef MAX
#define MAX(a, b) ((a) > (b)? (a): (b))
void
Tk_CreatePhotoImageFormat(formatPtr)
Tk_PhotoImageFormat *formatPtr;
{
Tk_PhotoImageFormat *copyPtr;
copyPtr = (Tk_PhotoImageFormat *) ckalloc(sizeof(Tk_PhotoImageFormat));
*copyPtr = *formatPtr;
copyPtr->name = (char *) ckalloc((unsigned) (strlen(formatPtr->name) + 1));
strcpy(copyPtr->name, formatPtr->name);
copyPtr->nextPtr = formatList;
formatList = copyPtr;
}
static int
ImgPhotoCreate(interp, name, argc, argv, typePtr, master, clientDataPtr)
Tcl_Interp *interp;
char *name;
int argc;
char **argv;
Tk_ImageType *typePtr;
Tk_ImageMaster master;
ClientData *clientDataPtr;
{
PhotoMaster *masterPtr;
Tcl_HashEntry *entry;
int isNew;
masterPtr = (PhotoMaster *) ckalloc(sizeof(PhotoMaster));
memset((void *) masterPtr, 0, sizeof(PhotoMaster));
masterPtr->tkMaster = master;
masterPtr->interp = interp;
masterPtr->imageCmd = Tcl_CreateCommand(interp, name, ImgPhotoCmd,
(ClientData) masterPtr, ImgPhotoCmdDeletedProc);
masterPtr->palette = NULL;
masterPtr->pix24 = NULL;
masterPtr->instancePtr = NULL;
masterPtr->validRegion = TkCreateRegion();
if (ImgPhotoConfigureMaster(interp, masterPtr, argc, argv, 0) != TCL_OK) {
ImgPhotoDelete((ClientData) masterPtr);
return TCL_ERROR;
}
if (!imgPhotoHashInitialized) {
Tcl_InitHashTable(&imgPhotoHash, TCL_STRING_KEYS);
imgPhotoHashInitialized = 1;
}
entry = Tcl_CreateHashEntry(&imgPhotoHash, name, &isNew);
Tcl_SetHashValue(entry, masterPtr);
*clientDataPtr = (ClientData) masterPtr;
return TCL_OK;
}
static int
ImgPhotoCmd(clientData, interp, argc, argv)
ClientData clientData;
Tcl_Interp *interp;
int argc;
char **argv;
{
PhotoMaster *masterPtr = (PhotoMaster *) clientData;
int c, result, index;
int x, y, width, height;
int dataWidth, dataHeight;
struct SubcommandOptions options;
int listArgc;
char **listArgv;
char **srcArgv;
unsigned char *pixelPtr;
Tk_PhotoImageBlock block;
Tk_Window tkwin;
char string[16];
XColor color;
Tk_PhotoImageFormat *imageFormat;
int imageWidth, imageHeight;
int matched;
FILE *f;
Tk_PhotoHandle srcHandle;
size_t length;
Tcl_DString buffer;
char *realFileName;
if (argc < 2) {
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
" option ?arg arg ...?\"", (char *) NULL);
return TCL_ERROR;
}
c = argv[1][0];
length = strlen(argv[1]);
if ((c == 'b') && (strncmp(argv[1], "blank", length) == 0)) {
if (argc == 2) {
Tk_PhotoBlank(masterPtr);
} else {
Tcl_AppendResult(interp, "wrong # args: should be \"",
argv[0], " blank\"", (char *) NULL);
return TCL_ERROR;
}
} else if ((c == 'c') && (length >= 2)
&& (strncmp(argv[1], "cget", length) == 0)) {
if (argc != 3) {
Tcl_AppendResult(interp, "wrong # args: should be \"",
argv[0], " cget option\"",
(char *) NULL);
return TCL_ERROR;
}
result = Tk_ConfigureValue(interp, Tk_MainWindow(interp), configSpecs,
(char *) masterPtr, argv[2], 0);
} else if ((c == 'c') && (length >= 3)
&& (strncmp(argv[1], "configure", length) == 0)) {
if (argc == 2) {
return Tk_ConfigureInfo(interp, Tk_MainWindow(interp),
configSpecs, (char *) masterPtr, (char *) NULL, 0);
}
if (argc == 3) {
return Tk_ConfigureInfo(interp, Tk_MainWindow(interp),
configSpecs, (char *) masterPtr, argv[2], 0);
}
return ImgPhotoConfigureMaster(interp, masterPtr, argc-2, argv+2,
TK_CONFIG_ARGV_ONLY);
} else if ((c == 'c') && (length >= 3)
&& (strncmp(argv[1], "copy", length) == 0)) {
index = 2;
memset((VOID *) &options, 0, sizeof(options));
options.zoomX = options.zoomY = 1;
options.subsampleX = options.subsampleY = 1;
options.name = NULL;
if (ParseSubcommandOptions(&options, interp,
OPT_FROM | OPT_TO | OPT_ZOOM | OPT_SUBSAMPLE | OPT_SHRINK,
&index, argc, argv) != TCL_OK) {
return TCL_ERROR;
}
if (options.name == NULL || index < argc) {
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
" copy source-image ?-from x1 y1 x2 y2?",
" ?-to x1 y1 x2 y2? ?-zoom x y? ?-subsample x y?",
"\"", (char *) NULL);
return TCL_ERROR;
}
if ((srcHandle = Tk_FindPhoto(options.name)) == NULL) {
Tcl_AppendResult(interp, "image \"", argv[2], "\" doesn't",
" exist or is not a photo image", (char *) NULL);
return TCL_ERROR;
}
Tk_PhotoGetImage(srcHandle, &block);
if ((options.fromX2 > block.width) || (options.fromY2 > block.height)
|| (options.fromX2 > block.width)
|| (options.fromY2 > block.height)) {
Tcl_AppendResult(interp, "coordinates for -from option extend ",
"outside source image", (char *) NULL);
return TCL_ERROR;
}
if (((options.options & OPT_FROM) == 0) || (options.fromX2 < 0)) {
options.fromX2 = block.width;
options.fromY2 = block.height;
}
if (((options.options & OPT_TO) == 0) || (options.toX2 < 0)) {
width = options.fromX2 - options.fromX;
if (options.subsampleX > 0) {
width = (width + options.subsampleX - 1) / options.subsampleX;
} else if (options.subsampleX == 0) {
width = 0;
} else {
width = (width - options.subsampleX - 1) / -options.subsampleX;
}
options.toX2 = options.toX + width * options.zoomX;
height = options.fromY2 - options.fromY;
if (options.subsampleY > 0) {
height = (height + options.subsampleY - 1)
/ options.subsampleY;
} else if (options.subsampleY == 0) {
height = 0;
} else {
height = (height - options.subsampleY - 1)
/ -options.subsampleY;
}
options.toY2 = options.toY + height * options.zoomY;
}
if (options.options & OPT_SHRINK) {
ImgPhotoSetSize(masterPtr, options.toX2, options.toY2);
}
block.pixelPtr += options.fromX * block.pixelSize
+ options.fromY * block.pitch;
block.width = options.fromX2 - options.fromX;
block.height = options.fromY2 - options.fromY;
Tk_PhotoPutZoomedBlock((Tk_PhotoHandle) masterPtr, &block,
options.toX, options.toY, options.toX2 - options.toX,
options.toY2 - options.toY, options.zoomX, options.zoomY,
options.subsampleX, options.subsampleY);
} else if ((c == 'g') && (strncmp(argv[1], "get", length) == 0)) {
if (argc != 4) {
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
" get x y\"", (char *) NULL);
return TCL_ERROR;
}
if ((Tcl_GetInt(interp, argv[2], &x) != TCL_OK)
|| (Tcl_GetInt(interp, argv[3], &y) != TCL_OK)) {
return TCL_ERROR;
}
if ((x < 0) || (x >= masterPtr->width)
|| (y < 0) || (y >= masterPtr->height)) {
Tcl_AppendResult(interp, argv[0], " get: ",
"coordinates out of range", (char *) NULL);
return TCL_ERROR;
}
pixelPtr = masterPtr->pix24 + (y * masterPtr->width + x) * 3;
sprintf(string, "%d %d %d", pixelPtr[0], pixelPtr[1],
pixelPtr[2]);
Tcl_AppendResult(interp, string, (char *) NULL);
} else if ((c == 'p') && (strncmp(argv[1], "put", length) == 0)) {
index = 2;
memset((VOID *) &options, 0, sizeof(options));
options.name = NULL;
if (ParseSubcommandOptions(&options, interp, OPT_TO,
&index, argc, argv) != TCL_OK) {
return TCL_ERROR;
}
if ((options.name == NULL) || (index < argc)) {
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
" put {{colors...}...} ?-to x1 y1 x2 y2?\"",
(char *) NULL);
return TCL_ERROR;
}
if (Tcl_SplitList(interp, options.name, &dataHeight, &srcArgv)
!= TCL_OK) {
return TCL_ERROR;
}
tkwin = Tk_MainWindow(interp);
block.pixelPtr = NULL;
dataWidth = 0;
pixelPtr = NULL;
for (y = 0; y < dataHeight; ++y) {
if (Tcl_SplitList(interp, srcArgv[y], &listArgc, &listArgv)
!= TCL_OK) {
break;
}
if (y == 0) {
dataWidth = listArgc;
pixelPtr = (unsigned char *) ckalloc((unsigned)
dataWidth * dataHeight * 3);
block.pixelPtr = pixelPtr;
} else {
if (listArgc != dataWidth) {
Tcl_AppendResult(interp, "all elements of color list must",
" have the same number of elements",
(char *) NULL);
ckfree((char *) listArgv);
break;
}
}
for (x = 0; x < dataWidth; ++x) {
if (!XParseColor(Tk_Display(tkwin), Tk_Colormap(tkwin),
listArgv[x], &color)) {
Tcl_AppendResult(interp, "can't parse color \"",
listArgv[x], "\"", (char *) NULL);
break;
}
*pixelPtr++ = color.red >> 8;
*pixelPtr++ = color.green >> 8;
*pixelPtr++ = color.blue >> 8;
}
ckfree((char *) listArgv);
if (x < dataWidth)
break;
}
ckfree((char *) srcArgv);
if (y < dataHeight || dataHeight == 0 || dataWidth == 0) {
if (block.pixelPtr != NULL) {
ckfree((char *) block.pixelPtr);
}
if (y < dataHeight) {
return TCL_ERROR;
}
return TCL_OK;
}
if (((options.options & OPT_TO) == 0) || (options.toX2 < 0)) {
options.toX2 = options.toX + dataWidth;
options.toY2 = options.toY + dataHeight;
}
block.width = dataWidth;
block.height = dataHeight;
block.pitch = dataWidth * 3;
block.pixelSize = 3;
block.offset[0] = 0;
block.offset[1] = 1;
block.offset[2] = 2;
Tk_PhotoPutBlock((ClientData)masterPtr, &block,
options.toX, options.toY, options.toX2 - options.toX,
options.toY2 - options.toY);
ckfree((char *) block.pixelPtr);
} else if ((c == 'r') && (length >= 3)
&& (strncmp(argv[1], "read", length) == 0)) {
index = 2;
memset((VOID *) &options, 0, sizeof(options));
options.name = NULL;
options.format = NULL;
if (ParseSubcommandOptions(&options, interp,
OPT_FORMAT | OPT_FROM | OPT_TO | OPT_SHRINK,
&index, argc, argv) != TCL_OK) {
return TCL_ERROR;
}
if ((options.name == NULL) || (index < argc)) {
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
" read fileName ?-format format-name?",
" ?-from x1 y1 x2 y2? ?-to x y? ?-shrink?\"",
(char *) NULL);
return TCL_ERROR;
}
realFileName = Tcl_TranslateFileName(interp, options.name, &buffer);
if (realFileName == NULL) {
return TCL_ERROR;
}
f = fopen(realFileName, "rb");
Tcl_DStringFree(&buffer);
if (f == NULL) {
Tcl_AppendResult(interp, "couldn't read image file \"",
options.name, "\": ", Tcl_PosixError(interp),
(char *) NULL);
return TCL_ERROR;
}
if (MatchFileFormat(interp, f, options.name, options.format,
&imageFormat, &imageWidth, &imageHeight) != TCL_OK) {
fclose(f);
return TCL_ERROR;
}
if ((options.fromX > imageWidth) || (options.fromY > imageHeight)
|| (options.fromX2 > imageWidth)
|| (options.fromY2 > imageHeight)) {
Tcl_AppendResult(interp, "coordinates for -from option extend ",
"outside source image", (char *) NULL);
fclose(f);
return TCL_ERROR;
}
if (((options.options & OPT_FROM) == 0) || (options.fromX2 < 0)) {
width = imageWidth - options.fromX;
height = imageHeight - options.fromY;
} else {
width = options.fromX2 - options.fromX;
height = options.fromY2 - options.fromY;
}
if (options.options & OPT_SHRINK) {
ImgPhotoSetSize(masterPtr, options.toX + width,
options.toY + height);
}
result = (*imageFormat->fileReadProc)(interp, f, options.name,
options.format, (Tk_PhotoHandle) masterPtr, options.toX,
options.toY, width, height, options.fromX, options.fromY);
if (f != NULL) {
fclose(f);
}
return result;
} else if ((c == 'r') && (length >= 3)
&& (strncmp(argv[1], "redither", length) == 0)) {
if (argc == 2) {
x = masterPtr->ditherX;
y = masterPtr->ditherY;
if (masterPtr->ditherX != 0) {
Dither(masterPtr, x, y, masterPtr->width - x, 1);
}
if (masterPtr->ditherY < masterPtr->height) {
x = 0;
Dither(masterPtr, 0, masterPtr->ditherY, masterPtr->width,
masterPtr->height - masterPtr->ditherY);
}
if (y < masterPtr->height) {
Tk_ImageChanged(masterPtr->tkMaster, x, y,
(masterPtr->width - x), (masterPtr->height - y),
masterPtr->width, masterPtr->height);
}
} else {
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
" redither\"", (char *) NULL);
return TCL_ERROR;
}
} else if ((c == 'w') && (strncmp(argv[1], "write", length) == 0)) {
index = 2;
memset((VOID *) &options, 0, sizeof(options));
options.name = NULL;
options.format = NULL;
if (ParseSubcommandOptions(&options, interp, OPT_FORMAT | OPT_FROM,
&index, argc, argv) != TCL_OK) {
return TCL_ERROR;
}
if ((options.name == NULL) || (index < argc)) {
Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
" write fileName ?-format format-name?",
"?-from x1 y1 x2 y2?\"", (char *) NULL);
return TCL_ERROR;
}
if ((options.fromX > masterPtr->width)
|| (options.fromY > masterPtr->height)
|| (options.fromX2 > masterPtr->width)
|| (options.fromY2 > masterPtr->height)) {
Tcl_AppendResult(interp, "coordinates for -from option extend ",
"outside image", (char *) NULL);
return TCL_ERROR;
}
if (((options.options & OPT_FROM) == 0) || (options.fromX2 < 0)) {
options.fromX2 = masterPtr->width;
options.fromY2 = masterPtr->height;
}
matched = 0;
for (imageFormat = formatList; imageFormat != NULL;
imageFormat = imageFormat->nextPtr) {
if ((options.format == NULL)
|| (strncasecmp(options.format, imageFormat->name,
strlen(imageFormat->name)) == 0)) {
matched = 1;
if (imageFormat->fileWriteProc != NULL) {
break;
}
}
}
if (imageFormat == NULL) {
if (options.format == NULL) {
Tcl_AppendResult(interp, "no available image file format ",
"has file writing capability", (char *) NULL);
} else if (!matched) {
Tcl_AppendResult(interp, "image file format \"",
options.format, "\" is unknown", (char *) NULL);
} else {
Tcl_AppendResult(interp, "image file format \"",
options.format, "\" has no file writing capability",
(char *) NULL);
}
return TCL_ERROR;
}
Tk_PhotoGetImage((Tk_PhotoHandle) masterPtr, &block);
block.pixelPtr += options.fromY * block.pitch + options.fromX * 3;
block.width = options.fromX2 - options.fromX;
block.height = options.fromY2 - options.fromY;
return (*imageFormat->fileWriteProc)(interp, options.name,
options.format, &block);
} else {
Tcl_AppendResult(interp, "bad option \"", argv[1],
"\": must be blank, cget, configure, copy, get, put,",
" read, redither, or write", (char *) NULL);
return TCL_ERROR;
}
return TCL_OK;
}
static int
ParseSubcommandOptions(optPtr, interp, allowedOptions, optIndexPtr, argc, argv)
struct SubcommandOptions *optPtr;
Tcl_Interp *interp;
int allowedOptions;
int *optIndexPtr;
int argc;
char **argv;
{
int index, c, bit, currentBit;
size_t length;
char *option, **listPtr;
int values[4];
int numValues, maxValues, argIndex;
for (index = *optIndexPtr; index < argc; *optIndexPtr = ++index) {
option = argv[index];
if (option[0] != '-') {
if (optPtr->name == NULL) {
optPtr->name = option;
continue;
}
break;
}
length = strlen(option);
c = option[0];
bit = 0;
currentBit = 1;
for (listPtr = optionNames; *listPtr != NULL; ++listPtr) {
if ((c == *listPtr[0])
&& (strncmp(option, *listPtr, length) == 0)) {
if (bit != 0) {
bit = 0;
break;
}
bit = currentBit;
}
currentBit <<= 1;
}
if ((allowedOptions & bit) == 0) {
Tcl_AppendResult(interp, "unrecognized option \"", argv[index],
"\": must be ", (char *)NULL);
bit = 1;
for (listPtr = optionNames; *listPtr != NULL; ++listPtr) {
if ((allowedOptions & bit) != 0) {
if ((allowedOptions & (bit - 1)) != 0) {
Tcl_AppendResult(interp, ", ", (char *) NULL);
if ((allowedOptions & ~((bit << 1) - 1)) == 0) {
Tcl_AppendResult(interp, "or ", (char *) NULL);
}
}
Tcl_AppendResult(interp, *listPtr, (char *) NULL);
}
bit <<= 1;
}
return TCL_ERROR;
}
if ((bit != OPT_SHRINK) && (bit != OPT_FORMAT)) {
maxValues = ((bit == OPT_FROM) || (bit == OPT_TO))? 4: 2;
argIndex = index + 1;
for (numValues = 0; numValues < maxValues; ++numValues) {
if ((argIndex < argc) && (isdigit(UCHAR(argv[argIndex][0]))
|| ((argv[argIndex][0] == '-')
&& (isdigit(UCHAR(argv[argIndex][1])))))) {
if (Tcl_GetInt(interp, argv[argIndex], &values[numValues])
!= TCL_OK) {
return TCL_ERROR;
}
} else {
break;
}
++argIndex;
}
if (numValues == 0) {
Tcl_AppendResult(interp, "the \"", argv[index], "\" option ",
"requires one ", maxValues == 2? "or two": "to four",
" integer values", (char *) NULL);
return TCL_ERROR;
}
*optIndexPtr = (index += numValues);
if (numValues == 1) {
values[1] = values[0];
}
if (numValues == 3) {
values[3] = values[2];
}
switch (bit) {
case OPT_FROM:
if ((values[0] < 0) || (values[1] < 0) || ((numValues > 2)
&& ((values[2] < 0) || (values[3] < 0)))) {
Tcl_AppendResult(interp, "value(s) for the -from",
" option must be non-negative", (char *) NULL);
return TCL_ERROR;
}
if (numValues <= 2) {
optPtr->fromX = values[0];
optPtr->fromY = values[1];
optPtr->fromX2 = -1;
optPtr->fromY2 = -1;
} else {
optPtr->fromX = MIN(values[0], values[2]);
optPtr->fromY = MIN(values[1], values[3]);
optPtr->fromX2 = MAX(values[0], values[2]);
optPtr->fromY2 = MAX(values[1], values[3]);
}
break;
case OPT_SUBSAMPLE:
optPtr->subsampleX = values[0];
optPtr->subsampleY = values[1];
break;
case OPT_TO:
if ((values[0] < 0) || (values[1] < 0) || ((numValues > 2)
&& ((values[2] < 0) || (values[3] < 0)))) {
Tcl_AppendResult(interp, "value(s) for the -to",
" option must be non-negative", (char *) NULL);
return TCL_ERROR;
}
if (numValues <= 2) {
optPtr->toX = values[0];
optPtr->toY = values[1];
optPtr->toX2 = -1;
optPtr->toY2 = -1;
} else {
optPtr->toX = MIN(values[0], values[2]);
optPtr->toY = MIN(values[1], values[3]);
optPtr->toX2 = MAX(values[0], values[2]);
optPtr->toY2 = MAX(values[1], values[3]);
}
break;
case OPT_ZOOM:
if ((values[0] <= 0) || (values[1] <= 0)) {
Tcl_AppendResult(interp, "value(s) for the -zoom",
" option must be positive", (char *) NULL);
return TCL_ERROR;
}
optPtr->zoomX = values[0];
optPtr->zoomY = values[1];
break;
}
} else if (bit == OPT_FORMAT) {
if (index + 1 < argc) {
*optIndexPtr = ++index;
optPtr->format = argv[index];
} else {
Tcl_AppendResult(interp, "the \"-format\" option ",
"requires a value", (char *) NULL);
return TCL_ERROR;
}
}
optPtr->options |= bit;
}
return TCL_OK;
}
static int
ImgPhotoConfigureMaster(interp, masterPtr, argc, argv, flags)
Tcl_Interp *interp;
PhotoMaster *masterPtr;
int argc;
char **argv;
int flags;
{
PhotoInstance *instancePtr;
char *oldFileString, *oldDataString, *realFileName, *oldPaletteString;
double oldGamma;
int result;
FILE *f;
Tk_PhotoImageFormat *imageFormat;
int imageWidth, imageHeight;
Tcl_DString buffer;
oldFileString = masterPtr->fileString;
oldDataString = (oldFileString == NULL)? masterPtr->dataString: NULL;
oldPaletteString = masterPtr->palette;
oldGamma = masterPtr->gamma;
if (Tk_ConfigureWidget(interp, Tk_MainWindow(interp), configSpecs,
argc, argv, (char *) masterPtr, flags) != TCL_OK) {
return TCL_ERROR;
}
if ((masterPtr->fileString != NULL) && (masterPtr->fileString[0] == 0)) {
ckfree(masterPtr->fileString);
masterPtr->fileString = NULL;
}
if ((masterPtr->dataString != NULL) && (masterPtr->dataString[0] == 0)) {
ckfree(masterPtr->dataString);
masterPtr->dataString = NULL;
}
if ((masterPtr->format != NULL) && (masterPtr->format[0] == 0)) {
ckfree(masterPtr->format);
masterPtr->format = NULL;
}
ImgPhotoSetSize(masterPtr, masterPtr->width, masterPtr->height);
if ((masterPtr->fileString != NULL)
&& (masterPtr->fileString != oldFileString)) {
realFileName = Tcl_TranslateFileName(interp, masterPtr->fileString,
&buffer);
if (realFileName == NULL) {
return TCL_ERROR;
}
f = fopen(realFileName, "rb");
Tcl_DStringFree(&buffer);
if (f == NULL) {
Tcl_AppendResult(interp, "couldn't read image file \"",
masterPtr->fileString, "\": ", Tcl_PosixError(interp),
(char *) NULL);
return TCL_ERROR;
}
if (MatchFileFormat(interp, f, masterPtr->fileString,
masterPtr->format, &imageFormat, &imageWidth,
&imageHeight) != TCL_OK) {
fclose(f);
return TCL_ERROR;
}
ImgPhotoSetSize(masterPtr, imageWidth, imageHeight);
result = (*imageFormat->fileReadProc)(interp, f, masterPtr->fileString,
masterPtr->format, (Tk_PhotoHandle) masterPtr, 0, 0,
imageWidth, imageHeight, 0, 0);
fclose(f);
if (result != TCL_OK) {
return TCL_ERROR;
}
masterPtr->flags |= IMAGE_CHANGED;
}
if ((masterPtr->fileString == NULL) && (masterPtr->dataString != NULL)
&& (masterPtr->dataString != oldDataString)) {
if (MatchStringFormat(interp, masterPtr->dataString,
masterPtr->format, &imageFormat, &imageWidth,
&imageHeight) != TCL_OK) {
return TCL_ERROR;
}
ImgPhotoSetSize(masterPtr, imageWidth, imageHeight);
if ((*imageFormat->stringReadProc)(interp, masterPtr->dataString,
masterPtr->format, (Tk_PhotoHandle) masterPtr,
0, 0, imageWidth, imageHeight, 0, 0) != TCL_OK) {
return TCL_ERROR;
}
masterPtr->flags |= IMAGE_CHANGED;
}
if (masterPtr->gamma <= 0) {
masterPtr->gamma = 1.0;
}
if ((masterPtr->gamma != oldGamma)
|| (masterPtr->palette != oldPaletteString)) {
masterPtr->flags |= IMAGE_CHANGED;
}
for (instancePtr = masterPtr->instancePtr; instancePtr != NULL;
instancePtr = instancePtr->nextPtr) {
ImgPhotoConfigureInstance(instancePtr);
}
Tk_ImageChanged(masterPtr->tkMaster, 0, 0, masterPtr->width,
masterPtr->height, masterPtr->width, masterPtr->height);
masterPtr->flags &= ~IMAGE_CHANGED;
return TCL_OK;
}
static void
ImgPhotoConfigureInstance(instancePtr)
PhotoInstance *instancePtr;
{
PhotoMaster *masterPtr = instancePtr->masterPtr;
XImage *imagePtr;
int bitsPerPixel;
ColorTable *colorTablePtr;
XRectangle validBox;
if ((masterPtr->palette && masterPtr->palette[0])
&& IsValidPalette(instancePtr, masterPtr->palette)) {
instancePtr->palette = masterPtr->palette;
} else {
instancePtr->palette = instancePtr->defaultPalette;
}
instancePtr->gamma = masterPtr->gamma;
colorTablePtr = instancePtr->colorTablePtr;
if ((colorTablePtr == NULL)
|| (instancePtr->colormap != colorTablePtr->id.colormap)
|| (instancePtr->palette != colorTablePtr->id.palette)
|| (instancePtr->gamma != colorTablePtr->id.gamma)) {
if (colorTablePtr != NULL) {
colorTablePtr->liveRefCount -= 1;
FreeColorTable(colorTablePtr);
}
GetColorTable(instancePtr);
if (instancePtr->colorTablePtr->flags & BLACK_AND_WHITE) {
bitsPerPixel = 1;
} else {
bitsPerPixel = instancePtr->visualInfo.depth;
}
if ((instancePtr->imagePtr == NULL)
|| (instancePtr->imagePtr->bits_per_pixel != bitsPerPixel)) {
if (instancePtr->imagePtr != NULL) {
XFree((char *) instancePtr->imagePtr);
}
imagePtr = XCreateImage(instancePtr->display,
instancePtr->visualInfo.visual, (unsigned) bitsPerPixel,
(bitsPerPixel > 1? ZPixmap: XYBitmap), 0, (char *) NULL,
1, 1, 32, 0);
instancePtr->imagePtr = imagePtr;
if (imagePtr != NULL) {
union {
int i;
char c[sizeof(int)];
} kludge;
imagePtr->bitmap_unit = sizeof(pixel) * NBBY;
kludge.i = 0;
kludge.c[0] = 1;
imagePtr->byte_order = (kludge.i == 1) ? LSBFirst : MSBFirst;
_XInitImageFuncPtrs(imagePtr);
}
}
}
if ((instancePtr->pixels == None) || (instancePtr->error == NULL)
|| (instancePtr->width != masterPtr->width)
|| (instancePtr->height != masterPtr->height)) {
ImgPhotoInstanceSetSize(instancePtr);
}
if ((masterPtr->flags & IMAGE_CHANGED)
|| (instancePtr->colorTablePtr != colorTablePtr)) {
TkClipBox(masterPtr->validRegion, &validBox);
if ((validBox.width > 0) && (validBox.height > 0)) {
DitherInstance(instancePtr, validBox.x, validBox.y,
validBox.width, validBox.height);
}
}
}
static ClientData
ImgPhotoGet(tkwin, masterData)
Tk_Window tkwin;
ClientData masterData;
{
PhotoMaster *masterPtr = (PhotoMaster *) masterData;
PhotoInstance *instancePtr;
Colormap colormap;
int mono, nRed, nGreen, nBlue;
XVisualInfo visualInfo, *visInfoPtr;
XRectangle validBox;
char buf[16];
int numVisuals;
XColor *white, *black;
XGCValues gcValues;
static int paletteChoice[13][3] = {
{2, 2, 2, },
{2, 3, 2, },
{3, 4, 2, },
{4, 5, 3, },
{5, 6, 4, },
{7, 7, 4, },
{8, 10, 6, },
{10, 12, 8, },
{14, 15, 9, },
{16, 20, 12, },
{20, 24, 16, },
{26, 30, 20, },
{32, 32, 30, }
};
colormap = Tk_Colormap(tkwin);
for (instancePtr = masterPtr->instancePtr; instancePtr != NULL;
instancePtr = instancePtr->nextPtr) {
if ((colormap == instancePtr->colormap)
&& (Tk_Display(tkwin) == instancePtr->display)) {
if (instancePtr->refCount == 0) {
Tcl_CancelIdleCall(DisposeInstance, (ClientData) instancePtr);
if (instancePtr->colorTablePtr != NULL) {
FreeColorTable(instancePtr->colorTablePtr);
}
GetColorTable(instancePtr);
}
instancePtr->refCount++;
return (ClientData) instancePtr;
}
}
instancePtr = (PhotoInstance *) ckalloc(sizeof(PhotoInstance));
instancePtr->masterPtr = masterPtr;
instancePtr->display = Tk_Display(tkwin);
instancePtr->colormap = Tk_Colormap(tkwin);
Tk_PreserveColormap(instancePtr->display, instancePtr->colormap);
instancePtr->refCount = 1;
instancePtr->colorTablePtr = NULL;
instancePtr->pixels = None;
instancePtr->error = NULL;
instancePtr->width = 0;
instancePtr->height = 0;
instancePtr->imagePtr = 0;
instancePtr->nextPtr = masterPtr->instancePtr;
masterPtr->instancePtr = instancePtr;
visualInfo.screen = Tk_ScreenNumber(tkwin);
visualInfo.visualid = XVisualIDFromVisual(Tk_Visual(tkwin));
visInfoPtr = XGetVisualInfo(Tk_Display(tkwin),
VisualScreenMask | VisualIDMask, &visualInfo, &numVisuals);
nRed = 2;
nGreen = nBlue = 0;
mono = 1;
if (visInfoPtr != NULL) {
instancePtr->visualInfo = *visInfoPtr;
switch (visInfoPtr->class) {
case DirectColor:
case TrueColor:
nRed = 1 << CountBits(visInfoPtr->red_mask);
nGreen = 1 << CountBits(visInfoPtr->green_mask);
nBlue = 1 << CountBits(visInfoPtr->blue_mask);
mono = 0;
break;
case PseudoColor:
case StaticColor:
if (visInfoPtr->depth > 15) {
nRed = 32;
nGreen = 32;
nBlue = 32;
mono = 0;
} else if (visInfoPtr->depth >= 3) {
int *ip = paletteChoice[visInfoPtr->depth - 3];
nRed = ip[0];
nGreen = ip[1];
nBlue = ip[2];
mono = 0;
}
break;
case GrayScale:
case StaticGray:
nRed = 1 << visInfoPtr->depth;
break;
}
XFree((char *) visInfoPtr);
} else {
panic("ImgPhotoGet couldn't find visual for window");
}
sprintf(buf, ((mono) ? "%d": "%d/%d/%d"), nRed, nGreen, nBlue);
instancePtr->defaultPalette = Tk_GetUid(buf);
white = Tk_GetColor(masterPtr->interp, tkwin, "white");
black = Tk_GetColor(masterPtr->interp, tkwin, "black");
gcValues.foreground = (white != NULL)? white->pixel:
WhitePixelOfScreen(Tk_Screen(tkwin));
gcValues.background = (black != NULL)? black->pixel:
BlackPixelOfScreen(Tk_Screen(tkwin));
gcValues.graphics_exposures = False;
instancePtr->gc = Tk_GetGC(tkwin,
GCForeground|GCBackground|GCGraphicsExposures, &gcValues);
ImgPhotoConfigureInstance(instancePtr);
if (instancePtr->nextPtr == NULL) {
Tk_ImageChanged(masterPtr->tkMaster, 0, 0, 0, 0,
masterPtr->width, masterPtr->height);
}
TkClipBox(masterPtr->validRegion, &validBox);
if ((validBox.width > 0) && (validBox.height > 0)) {
DitherInstance(instancePtr, validBox.x, validBox.y, validBox.width,
validBox.height);
}
return (ClientData) instancePtr;
}
static void
ImgPhotoDisplay(clientData, display, drawable, imageX, imageY, width,
height, drawableX, drawableY)
ClientData clientData;
Display *display;
Drawable drawable;
int imageX, imageY;
int width, height;
int drawableX, drawableY;
{
PhotoInstance *instancePtr = (PhotoInstance *) clientData;
if (instancePtr->pixels == None) {
return;
}
TkSetRegion(display, instancePtr->gc, instancePtr->masterPtr->validRegion);
XSetClipOrigin(display, instancePtr->gc, drawableX - imageX,
drawableY - imageY);
XCopyArea(display, instancePtr->pixels, drawable, instancePtr->gc,
imageX, imageY, (unsigned) width, (unsigned) height,
drawableX, drawableY);
XSetClipMask(display, instancePtr->gc, None);
XSetClipOrigin(display, instancePtr->gc, 0, 0);
}
static void
ImgPhotoFree(clientData, display)
ClientData clientData;
Display *display;
{
PhotoInstance *instancePtr = (PhotoInstance *) clientData;
ColorTable *colorPtr;
instancePtr->refCount -= 1;
if (instancePtr->refCount > 0) {
return;
}
colorPtr = instancePtr->colorTablePtr;
if (colorPtr != NULL) {
colorPtr->liveRefCount -= 1;
}
Tcl_DoWhenIdle(DisposeInstance, (ClientData) instancePtr);
}
static void
ImgPhotoDelete(masterData)
ClientData masterData;
{
PhotoMaster *masterPtr = (PhotoMaster *) masterData;
PhotoInstance *instancePtr;
while ((instancePtr = masterPtr->instancePtr) != NULL) {
if (instancePtr->refCount > 0) {
panic("tried to delete photo image when instances still exist");
}
Tcl_CancelIdleCall(DisposeInstance, (ClientData) instancePtr);
DisposeInstance((ClientData) instancePtr);
}
masterPtr->tkMaster = NULL;
if (masterPtr->imageCmd != NULL) {
Tcl_DeleteCommand(masterPtr->interp,
Tcl_GetCommandName(masterPtr->interp, masterPtr->imageCmd));
}
if (masterPtr->pix24 != NULL) {
ckfree((char *) masterPtr->pix24);
}
if (masterPtr->validRegion != NULL) {
TkDestroyRegion(masterPtr->validRegion);
}
Tk_FreeOptions(configSpecs, (char *) masterPtr, (Display *) NULL, 0);
ckfree((char *) masterPtr);
}
static void
ImgPhotoCmdDeletedProc(clientData)
ClientData clientData;
{
PhotoMaster *masterPtr = (PhotoMaster *) clientData;
masterPtr->imageCmd = NULL;
if (masterPtr->tkMaster != NULL) {
Tk_DeleteImage(masterPtr->interp, Tk_NameOfImage(masterPtr->tkMaster));
}
}
static void
ImgPhotoSetSize(masterPtr, width, height)
PhotoMaster *masterPtr;
int width, height;
{
unsigned char *newPix24;
int h, offset, pitch;
unsigned char *srcPtr, *destPtr;
XRectangle validBox, clipBox;
TkRegion clipRegion;
PhotoInstance *instancePtr;
if (masterPtr->userWidth > 0) {
width = masterPtr->userWidth;
}
if (masterPtr->userHeight > 0) {
height = masterPtr->userHeight;
}
TkClipBox(masterPtr->validRegion, &validBox);
if ((validBox.x + validBox.width > (unsigned) width)
|| (validBox.y + validBox.height > (unsigned) height)) {
clipBox.x = 0;
clipBox.y = 0;
clipBox.width = width;
clipBox.height = height;
clipRegion = TkCreateRegion();
TkUnionRectWithRegion(&clipBox, clipRegion, clipRegion);
TkIntersectRegion(masterPtr->validRegion, clipRegion,
masterPtr->validRegion);
TkDestroyRegion(clipRegion);
TkClipBox(masterPtr->validRegion, &validBox);
}
if ((width != masterPtr->width) || (height != masterPtr->height)
|| (masterPtr->pix24 == NULL)) {
pitch = width * 3;
newPix24 = (unsigned char *) ckalloc((unsigned) (height * pitch));
if ((masterPtr->pix24 != NULL)
&& ((width == masterPtr->width) || (width == validBox.width))) {
if (validBox.y > 0) {
memset((VOID *) newPix24, 0, (size_t) (validBox.y * pitch));
}
h = validBox.y + validBox.height;
if (h < height) {
memset((VOID *) (newPix24 + h * pitch), 0,
(size_t) ((height - h) * pitch));
}
} else {
memset((VOID *) newPix24, 0, (size_t) (height * pitch));
}
if (masterPtr->pix24 != NULL) {
if (width == masterPtr->width) {
offset = validBox.y * pitch;
memcpy((VOID *) (newPix24 + offset),
(VOID *) (masterPtr->pix24 + offset),
(size_t) (validBox.height * pitch));
} else if ((validBox.width > 0) && (validBox.height > 0)) {
destPtr = newPix24 + (validBox.y * width + validBox.x) * 3;
srcPtr = masterPtr->pix24 + (validBox.y * masterPtr->width
+ validBox.x) * 3;
for (h = validBox.height; h > 0; h--) {
memcpy((VOID *) destPtr, (VOID *) srcPtr,
(size_t) (validBox.width * 3));
destPtr += width * 3;
srcPtr += masterPtr->width * 3;
}
}
ckfree((char *) masterPtr->pix24);
}
masterPtr->pix24 = newPix24;
masterPtr->width = width;
masterPtr->height = height;
if ((validBox.x > 0) || (validBox.y > 0)) {
masterPtr->ditherX = 0;
masterPtr->ditherY = 0;
} else if (validBox.width == width) {
if ((int) validBox.height < masterPtr->ditherY) {
masterPtr->ditherX = 0;
masterPtr->ditherY = validBox.height;
}
} else {
if ((masterPtr->ditherY > 0)
|| ((int) validBox.width < masterPtr->ditherX)) {
masterPtr->ditherX = validBox.width;
masterPtr->ditherY = 0;
}
}
}
for (instancePtr = masterPtr->instancePtr; instancePtr != NULL;
instancePtr = instancePtr->nextPtr) {
ImgPhotoInstanceSetSize(instancePtr);
}
}
static void
ImgPhotoInstanceSetSize(instancePtr)
PhotoInstance *instancePtr;
{
PhotoMaster *masterPtr;
schar *newError;
schar *errSrcPtr, *errDestPtr;
int h, offset;
XRectangle validBox;
Pixmap newPixmap;
masterPtr = instancePtr->masterPtr;
TkClipBox(masterPtr->validRegion, &validBox);
if ((instancePtr->width != masterPtr->width)
|| (instancePtr->height != masterPtr->height)
|| (instancePtr->pixels == None)) {
newPixmap = Tk_GetPixmap(instancePtr->display,
RootWindow(instancePtr->display,
instancePtr->visualInfo.screen),
(masterPtr->width > 0) ? masterPtr->width: 1,
(masterPtr->height > 0) ? masterPtr->height: 1,
instancePtr->visualInfo.depth);
TkSetPixmapColormap(newPixmap, instancePtr->colormap);
if (instancePtr->pixels != None) {
XCopyArea(instancePtr->display, instancePtr->pixels, newPixmap,
instancePtr->gc, validBox.x, validBox.y,
validBox.width, validBox.height, validBox.x, validBox.y);
Tk_FreePixmap(instancePtr->display, instancePtr->pixels);
}
instancePtr->pixels = newPixmap;
}
if ((instancePtr->width != masterPtr->width)
|| (instancePtr->height != masterPtr->height)
|| (instancePtr->error == NULL)) {
newError = (schar *) ckalloc((unsigned)
(masterPtr->height * masterPtr->width * 3 * sizeof(schar)));
if ((instancePtr->error != NULL)
&& ((instancePtr->width == masterPtr->width)
|| (validBox.width == masterPtr->width))) {
if (validBox.y > 0) {
memset((VOID *) newError, 0, (size_t)
(validBox.y * masterPtr->width * 3 * sizeof(schar)));
}
h = validBox.y + validBox.height;
if (h < masterPtr->height) {
memset((VOID *) (newError + h * masterPtr->width * 3), 0,
(size_t) ((masterPtr->height - h)
* masterPtr->width * 3 * sizeof(schar)));
}
} else {
memset((VOID *) newError, 0, (size_t)
(masterPtr->height * masterPtr->width * 3 * sizeof(schar)));
}
if (instancePtr->error != NULL) {
if (masterPtr->width == instancePtr->width) {
offset = validBox.y * masterPtr->width * 3;
memcpy((VOID *) (newError + offset),
(VOID *) (instancePtr->error + offset),
(size_t) (validBox.height
* masterPtr->width * 3 * sizeof(schar)));
} else if (validBox.width > 0 && validBox.height > 0) {
errDestPtr = newError
+ (validBox.y * masterPtr->width + validBox.x) * 3;
errSrcPtr = instancePtr->error
+ (validBox.y * instancePtr->width + validBox.x) * 3;
for (h = validBox.height; h > 0; --h) {
memcpy((VOID *) errDestPtr, (VOID *) errSrcPtr,
validBox.width * 3 * sizeof(schar));
errDestPtr += masterPtr->width * 3;
errSrcPtr += instancePtr->width * 3;
}
}
ckfree((char *) instancePtr->error);
}
instancePtr->error = newError;
}
instancePtr->width = masterPtr->width;
instancePtr->height = masterPtr->height;
}
static int
IsValidPalette(instancePtr, palette)
PhotoInstance *instancePtr;
char *palette;
{
int nRed, nGreen, nBlue, mono, numColors;
char *endp;
nRed = strtol(palette, &endp, 10);
if ((endp == palette) || ((*endp != 0) && (*endp != '/'))
|| (nRed < 2) || (nRed > 256)) {
return 0;
}
if (*endp == 0) {
mono = 1;
nGreen = nBlue = nRed;
} else {
palette = endp + 1;
nGreen = strtol(palette, &endp, 10);
if ((endp == palette) || (*endp != '/') || (nGreen < 2)
|| (nGreen > 256)) {
return 0;
}
palette = endp + 1;
nBlue = strtol(palette, &endp, 10);
if ((endp == palette) || (*endp != 0) || (nBlue < 2)
|| (nBlue > 256)) {
return 0;
}
mono = 0;
}
switch (instancePtr->visualInfo.class) {
case DirectColor:
case TrueColor:
if ((nRed > (1 << CountBits(instancePtr->visualInfo.red_mask)))
|| (nGreen > (1
<< CountBits(instancePtr->visualInfo.green_mask)))
|| (nBlue > (1
<< CountBits(instancePtr->visualInfo.blue_mask)))) {
return 0;
}
break;
case PseudoColor:
case StaticColor:
numColors = nRed;
if (!mono) {
numColors *= nGreen*nBlue;
}
if (numColors > (1 << instancePtr->visualInfo.depth)) {
return 0;
}
break;
case GrayScale:
case StaticGray:
if (!mono || (nRed > (1 << instancePtr->visualInfo.depth))) {
return 0;
}
break;
}
return 1;
}
static int
CountBits(mask)
pixel mask;
{
int n;
for( n = 0; mask != 0; mask &= mask - 1 )
n++;
return n;
}
static void
GetColorTable(instancePtr)
PhotoInstance *instancePtr;
{
ColorTable *colorPtr;
Tcl_HashEntry *entry;
ColorTableId id;
int isNew;
memset((VOID *) &id, 0, sizeof(id));
id.display = instancePtr->display;
id.colormap = instancePtr->colormap;
id.palette = instancePtr->palette;
id.gamma = instancePtr->gamma;
if (!imgPhotoColorHashInitialized) {
Tcl_InitHashTable(&imgPhotoColorHash, N_COLOR_HASH);
imgPhotoColorHashInitialized = 1;
}
entry = Tcl_CreateHashEntry(&imgPhotoColorHash, (char *) &id, &isNew);
if (!isNew) {
colorPtr = (ColorTable *) Tcl_GetHashValue(entry);
} else {
colorPtr = (ColorTable *) ckalloc(sizeof(ColorTable));
memset((VOID *) &colorPtr->id, 0, sizeof(ColorTableId));
colorPtr->id = id;
Tk_PreserveColormap(colorPtr->id.display, colorPtr->id.colormap);
colorPtr->flags = 0;
colorPtr->refCount = 0;
colorPtr->liveRefCount = 0;
colorPtr->numColors = 0;
colorPtr->visualInfo = instancePtr->visualInfo;
colorPtr->pixelMap = NULL;
Tcl_SetHashValue(entry, colorPtr);
}
colorPtr->refCount++;
colorPtr->liveRefCount++;
instancePtr->colorTablePtr = colorPtr;
if (colorPtr->flags & DISPOSE_PENDING) {
Tcl_CancelIdleCall(DisposeColorTable, (ClientData) colorPtr);
colorPtr->flags &= ~DISPOSE_PENDING;
}
if ((colorPtr->numColors == 0)
&& ((colorPtr->flags & BLACK_AND_WHITE) == 0)) {
AllocateColors(colorPtr);
}
}
static void
FreeColorTable(colorPtr)
ColorTable *colorPtr;
{
colorPtr->refCount--;
if (colorPtr->refCount > 0) {
return;
}
if ((colorPtr->flags & DISPOSE_PENDING) == 0) {
Tcl_DoWhenIdle(DisposeColorTable, (ClientData) colorPtr);
colorPtr->flags |= DISPOSE_PENDING;
}
}
static void
AllocateColors(colorPtr)
ColorTable *colorPtr;
{
int i, r, g, b, rMult, mono;
int numColors, nRed, nGreen, nBlue;
double fr, fg, fb, igam;
XColor *colors;
unsigned long *pixels;
# define CFRAC(i, n) ((i) * 65535 / (n))
# define CGFRAC(i, n, g) ((int)(65535 * pow((double)(i) / (n), (g))))
mono = sscanf(colorPtr->id.palette, "%d/%d/%d", &nRed, &nGreen, &nBlue)
<= 1;
igam = 1.0 / colorPtr->id.gamma;
for (;;) {
if (mono && (nRed <= 2)) {
colorPtr->flags |= BLACK_AND_WHITE;
return;
}
if ((colorPtr->visualInfo.class == DirectColor)
|| (colorPtr->visualInfo.class == TrueColor)) {
if (mono) {
numColors = nGreen = nBlue = nRed;
} else {
numColors = MAX(MAX(nRed, nGreen), nBlue);
}
colors = (XColor *) ckalloc(numColors * sizeof(XColor));
for (i = 0; i < numColors; ++i) {
if (igam == 1.0) {
colors[i].red = CFRAC(i, nRed - 1);
colors[i].green = CFRAC(i, nGreen - 1);
colors[i].blue = CFRAC(i, nBlue - 1);
} else {
colors[i].red = CGFRAC(i, nRed - 1, igam);
colors[i].green = CGFRAC(i, nGreen - 1, igam);
colors[i].blue = CGFRAC(i, nBlue - 1, igam);
}
}
} else {
numColors = (mono) ? nRed: (nRed * nGreen * nBlue);
colors = (XColor *) ckalloc(numColors * sizeof(XColor));
if (!mono) {
i = 0;
for (r = 0; r < nRed; ++r) {
for (g = 0; g < nGreen; ++g) {
for (b = 0; b < nBlue; ++b) {
if (igam == 1.0) {
colors[i].red = CFRAC(r, nRed - 1);
colors[i].green = CFRAC(g, nGreen - 1);
colors[i].blue = CFRAC(b, nBlue - 1);
} else {
colors[i].red = CGFRAC(r, nRed - 1, igam);
colors[i].green = CGFRAC(g, nGreen - 1, igam);
colors[i].blue = CGFRAC(b, nBlue - 1, igam);
}
i++;
}
}
}
} else {
for (i = 0; i < numColors; ++i) {
if (igam == 1.0) {
r = CFRAC(i, numColors - 1);
} else {
r = CGFRAC(i, numColors - 1, igam);
}
colors[i].red = colors[i].green = colors[i].blue = r;
}
}
}
pixels = (unsigned long *) ckalloc(numColors * sizeof(unsigned long));
for (i = 0; i < numColors; ++i) {
if (!XAllocColor(colorPtr->id.display, colorPtr->id.colormap,
&colors[i])) {
if (!ReclaimColors(&colorPtr->id, numColors - i)
|| !XAllocColor(colorPtr->id.display,
colorPtr->id.colormap, &colors[i])) {
break;
}
}
pixels[i] = colors[i].pixel;
}
if (i >= numColors) {
break;
}
XFreeColors(colorPtr->id.display, colorPtr->id.colormap, pixels, i, 0);
ckfree((char *) colors);
ckfree((char *) pixels);
if (!mono) {
if ((nRed == 2) && (nGreen == 2) && (nBlue == 2)) {
mono = 1;
} else {
nRed = (nRed * 3 + 2) / 4;
nGreen = (nGreen * 3 + 2) / 4;
nBlue = (nBlue * 3 + 2) / 4;
}
} else {
nRed = nRed / 2;
}
}
if (!mono) {
colorPtr->flags |= COLOR_WINDOW;
#ifndef WIN_TCL
if ((colorPtr->visualInfo.class != DirectColor)
&& (colorPtr->visualInfo.class != TrueColor)) {
colorPtr->flags |= MAP_COLORS;
}
#endif
}
colorPtr->numColors = numColors;
colorPtr->pixelMap = pixels;
rMult = nGreen * nBlue;
for (i = 0; i < 256; ++i) {
r = (i * (nRed - 1) + 127) / 255;
if (mono) {
fr = (double) colors[r].red / 65535.0;
if (colorPtr->id.gamma != 1.0 ) {
fr = pow(fr, colorPtr->id.gamma);
}
colorPtr->colorQuant[0][i] = (int)(fr * 255.99);
colorPtr->redValues[i] = colors[r].pixel;
} else {
g = (i * (nGreen - 1) + 127) / 255;
b = (i * (nBlue - 1) + 127) / 255;
if ((colorPtr->visualInfo.class == DirectColor)
|| (colorPtr->visualInfo.class == TrueColor)) {
colorPtr->redValues[i] = colors[r].pixel
& colorPtr->visualInfo.red_mask;
colorPtr->greenValues[i] = colors[g].pixel
& colorPtr->visualInfo.green_mask;
colorPtr->blueValues[i] = colors[b].pixel
& colorPtr->visualInfo.blue_mask;
} else {
r *= rMult;
g *= nBlue;
colorPtr->redValues[i] = r;
colorPtr->greenValues[i] = g;
colorPtr->blueValues[i] = b;
}
fr = (double) colors[r].red / 65535.0;
fg = (double) colors[g].green / 65535.0;
fb = (double) colors[b].blue / 65535.0;
if (colorPtr->id.gamma != 1.0) {
fr = pow(fr, colorPtr->id.gamma);
fg = pow(fg, colorPtr->id.gamma);
fb = pow(fb, colorPtr->id.gamma);
}
colorPtr->colorQuant[0][i] = (int)(fr * 255.99);
colorPtr->colorQuant[1][i] = (int)(fg * 255.99);
colorPtr->colorQuant[2][i] = (int)(fb * 255.99);
}
}
ckfree((char *) colors);
}
static void
DisposeColorTable(clientData)
ClientData clientData;
{
ColorTable *colorPtr;
Tcl_HashEntry *entry;
colorPtr = (ColorTable *) clientData;
if (colorPtr->pixelMap != NULL) {
if (colorPtr->numColors > 0) {
XFreeColors(colorPtr->id.display, colorPtr->id.colormap,
colorPtr->pixelMap, colorPtr->numColors, 0);
Tk_FreeColormap(colorPtr->id.display, colorPtr->id.colormap);
}
ckfree((char *) colorPtr->pixelMap);
}
entry = Tcl_FindHashEntry(&imgPhotoColorHash, (char *) &colorPtr->id);
if (entry == NULL) {
panic("DisposeColorTable couldn't find hash entry");
}
Tcl_DeleteHashEntry(entry);
ckfree((char *) colorPtr);
}
static int
ReclaimColors(id, numColors)
ColorTableId *id;
int numColors;
{
Tcl_HashSearch srch;
Tcl_HashEntry *entry;
ColorTable *colorPtr;
int nAvail;
nAvail = 0;
entry = Tcl_FirstHashEntry(&imgPhotoColorHash, &srch);
while (entry != NULL) {
colorPtr = (ColorTable *) Tcl_GetHashValue(entry);
if ((colorPtr->id.display == id->display)
&& (colorPtr->id.colormap == id->colormap)
&& (colorPtr->liveRefCount == 0 )&& (colorPtr->numColors != 0)
&& ((colorPtr->id.palette != id->palette)
|| (colorPtr->id.gamma != id->gamma))) {
nAvail += colorPtr->numColors;
}
entry = Tcl_NextHashEntry(&srch);
}
if (nAvail < numColors) {
return 0;
}
entry = Tcl_FirstHashEntry(&imgPhotoColorHash, &srch);
while ((entry != NULL) && (numColors > 0)) {
colorPtr = (ColorTable *) Tcl_GetHashValue(entry);
if ((colorPtr->id.display == id->display)
&& (colorPtr->id.colormap == id->colormap)
&& (colorPtr->liveRefCount == 0) && (colorPtr->numColors != 0)
&& ((colorPtr->id.palette != id->palette)
|| (colorPtr->id.gamma != id->gamma))) {
XFreeColors(colorPtr->id.display, colorPtr->id.colormap,
colorPtr->pixelMap, colorPtr->numColors, 0);
numColors -= colorPtr->numColors;
colorPtr->numColors = 0;
ckfree((char *) colorPtr->pixelMap);
colorPtr->pixelMap = NULL;
}
entry = Tcl_NextHashEntry(&srch);
}
return 1;
}
static void
DisposeInstance(clientData)
ClientData clientData;
{
PhotoInstance *instancePtr = (PhotoInstance *) clientData;
PhotoInstance *prevPtr;
if (instancePtr->pixels != None) {
Tk_FreePixmap(instancePtr->display, instancePtr->pixels);
}
if (instancePtr->gc != None) {
Tk_FreeGC(instancePtr->display, instancePtr->gc);
}
if (instancePtr->imagePtr != NULL) {
XFree((char *) instancePtr->imagePtr);
}
if (instancePtr->error != NULL) {
ckfree((char *) instancePtr->error);
}
if (instancePtr->colorTablePtr != NULL) {
FreeColorTable(instancePtr->colorTablePtr);
}
if (instancePtr->masterPtr->instancePtr == instancePtr) {
instancePtr->masterPtr->instancePtr = instancePtr->nextPtr;
} else {
for (prevPtr = instancePtr->masterPtr->instancePtr;
prevPtr->nextPtr != instancePtr; prevPtr = prevPtr->nextPtr) {
}
prevPtr->nextPtr = instancePtr->nextPtr;
}
Tk_FreeColormap(instancePtr->display, instancePtr->colormap);
ckfree((char *) instancePtr);
}
static int
MatchFileFormat(interp, f, fileName, formatString, imageFormatPtr,
widthPtr, heightPtr)
Tcl_Interp *interp;
FILE *f;
char *fileName;
char *formatString;
Tk_PhotoImageFormat **imageFormatPtr;
int *widthPtr, *heightPtr;
{
int matched;
Tk_PhotoImageFormat *formatPtr;
matched = 0;
for (formatPtr = formatList; formatPtr != NULL;
formatPtr = formatPtr->nextPtr) {
if (formatString != NULL) {
if (strncasecmp(formatString, formatPtr->name,
strlen(formatPtr->name)) != 0) {
continue;
}
matched = 1;
if (formatPtr->fileMatchProc == NULL) {
Tcl_AppendResult(interp, "-file option isn't supported for ",
formatString, " images", (char *) NULL);
return TCL_ERROR;
}
}
if (formatPtr->fileMatchProc != NULL) {
fseek(f, 0L, SEEK_SET);
if ((*formatPtr->fileMatchProc)(f, fileName, formatString,
widthPtr, heightPtr)) {
if (*widthPtr < 1) {
*widthPtr = 1;
}
if (*heightPtr < 1) {
*heightPtr = 1;
}
break;
}
}
}
if (formatPtr == NULL) {
if ((formatString != NULL) && !matched) {
Tcl_AppendResult(interp, "image file format \"", formatString,
"\" is not supported", (char *) NULL);
} else {
Tcl_AppendResult(interp,
"couldn't recognize data in image file \"",
fileName, "\"", (char *) NULL);
}
return TCL_ERROR;
}
*imageFormatPtr = formatPtr;
fseek(f, 0L, SEEK_SET);
return TCL_OK;
}
static int
MatchStringFormat(interp, string, formatString, imageFormatPtr,
widthPtr, heightPtr)
Tcl_Interp *interp;
char *string;
char *formatString;
Tk_PhotoImageFormat **imageFormatPtr;
int *widthPtr, *heightPtr;
{
int matched;
Tk_PhotoImageFormat *formatPtr;
matched = 0;
for (formatPtr = formatList; formatPtr != NULL;
formatPtr = formatPtr->nextPtr) {
if (formatString != NULL) {
if (strncasecmp(formatString, formatPtr->name,
strlen(formatPtr->name)) != 0) {
continue;
}
matched = 1;
if (formatPtr->stringMatchProc == NULL) {
Tcl_AppendResult(interp, "-data option isn't supported for ",
formatString, " images", (char *) NULL);
return TCL_ERROR;
}
}
if ((formatPtr->stringMatchProc != NULL)
&& (*formatPtr->stringMatchProc)(string, formatString,
widthPtr, heightPtr)) {
break;
}
}
if (formatPtr == NULL) {
if ((formatString != NULL) && !matched) {
Tcl_AppendResult(interp, "image format \"", formatString,
"\" is not supported", (char *) NULL);
} else {
Tcl_AppendResult(interp, "couldn't recognize image data",
(char *) NULL);
}
return TCL_ERROR;
}
*imageFormatPtr = formatPtr;
return TCL_OK;
}
Tk_PhotoHandle
Tk_FindPhoto(imageName)
char *imageName;
{
Tcl_HashEntry *entry;
if (!imgPhotoHashInitialized) {
return NULL;
}
entry = Tcl_FindHashEntry(&imgPhotoHash, imageName);
if (entry == NULL) {
return NULL;
}
return (Tk_PhotoHandle) Tcl_GetHashValue(entry);
}
void
Tk_PhotoPutBlock(handle, blockPtr, x, y, width, height)
Tk_PhotoHandle handle;
register Tk_PhotoImageBlock *blockPtr;
int x, y;
int width, height;
{
register PhotoMaster *masterPtr;
int xEnd, yEnd;
int greenOffset, blueOffset;
int wLeft, hLeft;
int wCopy, hCopy;
unsigned char *srcPtr, *srcLinePtr;
unsigned char *destPtr, *destLinePtr;
int pitch;
XRectangle rect;
masterPtr = (PhotoMaster *) handle;
if ((masterPtr->userWidth != 0) && ((x + width) > masterPtr->userWidth)) {
width = masterPtr->userWidth - x;
}
if ((masterPtr->userHeight != 0)
&& ((y + height) > masterPtr->userHeight)) {
height = masterPtr->userHeight - y;
}
if ((width <= 0) || (height <= 0))
return;
xEnd = x + width;
yEnd = y + height;
if ((xEnd > masterPtr->width) || (yEnd > masterPtr->height)) {
ImgPhotoSetSize(masterPtr, MAX(xEnd, masterPtr->width),
MAX(yEnd, masterPtr->height));
}
if ((y < masterPtr->ditherY) || ((y == masterPtr->ditherY)
&& (x < masterPtr->ditherX))) {
masterPtr->ditherX = x;
masterPtr->ditherY = y;
}
greenOffset = blockPtr->offset[1] - blockPtr->offset[0];
blueOffset = blockPtr->offset[2] - blockPtr->offset[0];
if ((greenOffset != 0) || (blueOffset != 0)) {
masterPtr->flags |= COLOR_IMAGE;
}
destLinePtr = masterPtr->pix24 + (y * masterPtr->width + x) * 3;
pitch = masterPtr->width * 3;
if ((blockPtr->pixelSize == 3) && (greenOffset == 1) && (blueOffset == 2)
&& (width <= blockPtr->width) && (height <= blockPtr->height)
&& ((height == 1) || ((x == 0) && (width == masterPtr->width)
&& (blockPtr->pitch == pitch)))) {
memcpy((VOID *) destLinePtr,
(VOID *) (blockPtr->pixelPtr + blockPtr->offset[0]),
(size_t) (height * width * 3));
} else {
for (hLeft = height; hLeft > 0;) {
srcLinePtr = blockPtr->pixelPtr + blockPtr->offset[0];
hCopy = MIN(hLeft, blockPtr->height);
hLeft -= hCopy;
for (; hCopy > 0; --hCopy) {
destPtr = destLinePtr;
for (wLeft = width; wLeft > 0;) {
wCopy = MIN(wLeft, blockPtr->width);
wLeft -= wCopy;
srcPtr = srcLinePtr;
for (; wCopy > 0; --wCopy) {
*destPtr++ = srcPtr[0];
*destPtr++ = srcPtr[greenOffset];
*destPtr++ = srcPtr[blueOffset];
srcPtr += blockPtr->pixelSize;
}
}
srcLinePtr += blockPtr->pitch;
destLinePtr += pitch;
}
}
}
rect.x = x;
rect.y = y;
rect.width = width;
rect.height = height;
TkUnionRectWithRegion(&rect, masterPtr->validRegion,
masterPtr->validRegion);
Dither(masterPtr, x, y, width, height);
Tk_ImageChanged(masterPtr->tkMaster, x, y, width, height, masterPtr->width,
masterPtr->height);
}
void
Tk_PhotoPutZoomedBlock(handle, blockPtr, x, y, width, height, zoomX, zoomY,
subsampleX, subsampleY)
Tk_PhotoHandle handle;
register Tk_PhotoImageBlock *blockPtr;
int x, y;
int width, height;
int zoomX, zoomY;
int subsampleX, subsampleY;
{
register PhotoMaster *masterPtr;
int xEnd, yEnd;
int greenOffset, blueOffset;
int wLeft, hLeft;
int wCopy, hCopy;
int blockWid, blockHt;
unsigned char *srcPtr, *srcLinePtr, *srcOrigPtr;
unsigned char *destPtr, *destLinePtr;
int pitch;
int xRepeat, yRepeat;
int blockXSkip, blockYSkip;
XRectangle rect;
if ((zoomX == 1) && (zoomY == 1) && (subsampleX == 1)
&& (subsampleY == 1)) {
Tk_PhotoPutBlock(handle, blockPtr, x, y, width, height);
return;
}
masterPtr = (PhotoMaster *) handle;
if ((zoomX <= 0) || (zoomY <= 0))
return;
if ((masterPtr->userWidth != 0) && ((x + width) > masterPtr->userWidth)) {
width = masterPtr->userWidth - x;
}
if ((masterPtr->userHeight != 0)
&& ((y + height) > masterPtr->userHeight)) {
height = masterPtr->userHeight - y;
}
if ((width <= 0) || (height <= 0))
return;
xEnd = x + width;
yEnd = y + height;
if ((xEnd > masterPtr->width) || (yEnd > masterPtr->height)) {
int sameSrc = (blockPtr->pixelPtr == masterPtr->pix24);
ImgPhotoSetSize(masterPtr, MAX(xEnd, masterPtr->width),
MAX(yEnd, masterPtr->height));
if (sameSrc) {
blockPtr->pixelPtr = masterPtr->pix24;
}
}
if ((y < masterPtr->ditherY) || ((y == masterPtr->ditherY)
&& (x < masterPtr->ditherX))) {
masterPtr->ditherX = x;
masterPtr->ditherY = y;
}
greenOffset = blockPtr->offset[1] - blockPtr->offset[0];
blueOffset = blockPtr->offset[2] - blockPtr->offset[0];
if ((greenOffset != 0) || (blueOffset != 0)) {
masterPtr->flags |= COLOR_IMAGE;
}
blockXSkip = subsampleX * blockPtr->pixelSize;
blockYSkip = subsampleY * blockPtr->pitch;
if (subsampleX > 0)
blockWid = ((blockPtr->width + subsampleX - 1) / subsampleX) * zoomX;
else if (subsampleX == 0)
blockWid = width;
else
blockWid = ((blockPtr->width - subsampleX - 1) / -subsampleX) * zoomX;
if (subsampleY > 0)
blockHt = ((blockPtr->height + subsampleY - 1) / subsampleY) * zoomY;
else if (subsampleY == 0)
blockHt = height;
else
blockHt = ((blockPtr->height - subsampleY - 1) / -subsampleY) * zoomY;
destLinePtr = masterPtr->pix24 + (y * masterPtr->width + x) * 3;
srcOrigPtr = blockPtr->pixelPtr + blockPtr->offset[0];
if (subsampleX < 0) {
srcOrigPtr += (blockPtr->width - 1) * blockPtr->pixelSize;
}
if (subsampleY < 0) {
srcOrigPtr += (blockPtr->height - 1) * blockPtr->pitch;
}
pitch = masterPtr->width * 3;
for (hLeft = height; hLeft > 0; ) {
hCopy = MIN(hLeft, blockHt);
hLeft -= hCopy;
yRepeat = zoomY;
srcLinePtr = srcOrigPtr;
for (; hCopy > 0; --hCopy) {
destPtr = destLinePtr;
for (wLeft = width; wLeft > 0;) {
wCopy = MIN(wLeft, blockWid);
wLeft -= wCopy;
srcPtr = srcLinePtr;
for (; wCopy > 0; wCopy -= zoomX) {
for (xRepeat = MIN(wCopy, zoomX); xRepeat > 0; xRepeat--) {
*destPtr++ = srcPtr[0];
*destPtr++ = srcPtr[greenOffset];
*destPtr++ = srcPtr[blueOffset];
}
srcPtr += blockXSkip;
}
}
destLinePtr += pitch;
yRepeat--;
if (yRepeat <= 0) {
srcLinePtr += blockYSkip;
yRepeat = zoomY;
}
}
}
rect.x = x;
rect.y = y;
rect.width = width;
rect.height = height;
TkUnionRectWithRegion(&rect, masterPtr->validRegion,
masterPtr->validRegion);
Dither(masterPtr, x, y, width, height);
Tk_ImageChanged(masterPtr->tkMaster, x, y, width, height, masterPtr->width,
masterPtr->height);
}
static void
Dither(masterPtr, x, y, width, height)
PhotoMaster *masterPtr;
int x, y;
int width, height;
{
PhotoInstance *instancePtr;
if ((width <= 0) || (height <= 0)) {
return;
}
for (instancePtr = masterPtr->instancePtr; instancePtr != NULL;
instancePtr = instancePtr->nextPtr) {
DitherInstance(instancePtr, x, y, width, height);
}
if (((y < masterPtr->ditherY)
|| ((y == masterPtr->ditherY) && (x <= masterPtr->ditherX)))
&& ((y + height) > (masterPtr->ditherY))) {
if ((x == 0) && (width == masterPtr->width)) {
masterPtr->ditherX = 0;
masterPtr->ditherY = y + height;
} else {
if (x <= masterPtr->ditherX) {
masterPtr->ditherX = x + width;
if (masterPtr->ditherX >= masterPtr->width) {
masterPtr->ditherX = 0;
masterPtr->ditherY++;
}
}
}
}
}
static void
DitherInstance(instancePtr, xStart, yStart, width, height)
PhotoInstance *instancePtr;
int xStart, yStart;
int width, height;
{
PhotoMaster *masterPtr;
ColorTable *colorPtr;
XImage *imagePtr;
int nLines, bigEndian;
int i, c, x, y;
int xEnd, yEnd;
int bitsPerPixel, bytesPerLine, lineLength;
unsigned char *srcLinePtr, *srcPtr;
schar *errLinePtr, *errPtr;
unsigned char *destBytePtr, *dstLinePtr;
pixel *destLongPtr;
pixel firstBit, word, mask;
int col[3];
int doDithering = 1;
colorPtr = instancePtr->colorTablePtr;
masterPtr = instancePtr->masterPtr;
if ((colorPtr->visualInfo.class == DirectColor)
|| (colorPtr->visualInfo.class == TrueColor)) {
int nRed, nGreen, nBlue, result;
result = sscanf(colorPtr->id.palette, "%d/%d/%d", &nRed,
&nGreen, &nBlue);
if ((nRed >= 256)
&& ((result == 1) || ((nGreen >= 256) && (nBlue >= 256)))) {
doDithering = 0;
}
}
nLines = (MAX_PIXELS + width - 1) / width;
if (nLines < 1) {
nLines = 1;
}
if (nLines > height ) {
nLines = height;
}
imagePtr = instancePtr->imagePtr;
if (imagePtr == NULL) {
return;
}
bitsPerPixel = imagePtr->bits_per_pixel;
bytesPerLine = ((bitsPerPixel * width + 31) >> 3) & ~3;
imagePtr->width = width;
imagePtr->height = nLines;
imagePtr->bytes_per_line = bytesPerLine;
imagePtr->data = (char *) ckalloc((unsigned) (imagePtr->bytes_per_line * nLines));
bigEndian = imagePtr->bitmap_bit_order == MSBFirst;
firstBit = bigEndian? (1 << (imagePtr->bitmap_unit - 1)): 1;
lineLength = masterPtr->width * 3;
srcLinePtr = masterPtr->pix24 + yStart * lineLength + xStart * 3;
errLinePtr = instancePtr->error + yStart * lineLength + xStart * 3;
xEnd = xStart + width;
for (; height > 0; height -= nLines) {
if (nLines > height) {
nLines = height;
}
dstLinePtr = (unsigned char *) imagePtr->data;
yEnd = yStart + nLines;
for (y = yStart; y < yEnd; ++y) {
srcPtr = srcLinePtr;
errPtr = errLinePtr;
destBytePtr = dstLinePtr;
destLongPtr = (pixel *) dstLinePtr;
if (colorPtr->flags & COLOR_WINDOW) {
for (x = xStart; x < xEnd; ++x) {
if (doDithering) {
for (i = 0; i < 3; ++i) {
c = (x > 0) ? errPtr[-3] * 7: 0;
if (y > 0) {
if (x > 0) {
c += errPtr[-lineLength-3];
}
c += errPtr[-lineLength] * 5;
if ((x + 1) < masterPtr->width) {
c += errPtr[-lineLength+3] * 3;
}
}
c = ((c + 2056) >> 4) - 128 + *srcPtr++;
if (c < 0) {
c = 0;
} else if (c > 255) {
c = 255;
}
col[i] = colorPtr->colorQuant[i][c];
*errPtr++ = c - col[i];
}
} else {
col[0] = *srcPtr++;
col[1] = *srcPtr++;
col[2] = *srcPtr++;
}
i = colorPtr->redValues[col[0]]
+ colorPtr->greenValues[col[1]]
+ colorPtr->blueValues[col[2]];
if (colorPtr->flags & MAP_COLORS) {
i = colorPtr->pixelMap[i];
}
switch (bitsPerPixel) {
case NBBY:
*destBytePtr++ = i;
break;
case NBBY * sizeof(pixel):
*destLongPtr++ = i;
break;
default:
XPutPixel(imagePtr, x - xStart, y - yStart,
(unsigned) i);
}
}
} else if (bitsPerPixel > 1) {
for (x = xStart; x < xEnd; ++x) {
c = (x > 0) ? errPtr[-1] * 7: 0;
if (y > 0) {
if (x > 0) {
c += errPtr[-lineLength-1];
}
c += errPtr[-lineLength] * 5;
if (x + 1 < masterPtr->width) {
c += errPtr[-lineLength+1] * 3;
}
}
c = ((c + 2056) >> 4) - 128;
if ((masterPtr->flags & COLOR_IMAGE) == 0) {
c += srcPtr[0];
} else {
c += (unsigned)(srcPtr[0] * 11 + srcPtr[1] * 16
+ srcPtr[2] * 5 + 16) >> 5;
}
srcPtr += 3;
if (c < 0) {
c = 0;
} else if (c > 255) {
c = 255;
}
i = colorPtr->colorQuant[0][c];
*errPtr++ = c - i;
i = colorPtr->redValues[i];
switch (bitsPerPixel) {
case NBBY:
*destBytePtr++ = i;
break;
case NBBY * sizeof(pixel):
*destLongPtr++ = i;
break;
default:
XPutPixel(imagePtr, x - xStart, y - yStart,
(unsigned) i);
}
}
} else {
word = 0;
mask = firstBit;
for (x = xStart; x < xEnd; ++x) {
if (mask == 0) {
*destLongPtr++ = word;
mask = firstBit;
word = 0;
}
c = (x > 0) ? errPtr[-1] * 7: 0;
if (y > 0) {
if (x > 0) {
c += errPtr[-lineLength-1];
}
c += errPtr[-lineLength] * 5;
if (x + 1 < masterPtr->width) {
c += errPtr[-lineLength+1] * 3;
}
}
c = ((c + 2056) >> 4) - 128;
if ((masterPtr->flags & COLOR_IMAGE) == 0) {
c += srcPtr[0];
} else {
c += (unsigned)(srcPtr[0] * 11 + srcPtr[1] * 16
+ srcPtr[2] * 5 + 16) >> 5;
}
srcPtr += 3;
if (c < 0) {
c = 0;
} else if (c > 255) {
c = 255;
}
if (c >= 128) {
word |= mask;
*errPtr++ = c - 255;
} else {
*errPtr++ = c;
}
mask = bigEndian? (mask >> 1): (mask << 1);
}
*destLongPtr = word;
}
srcLinePtr += lineLength;
errLinePtr += lineLength;
dstLinePtr += bytesPerLine;
}
TkPutImage(colorPtr->pixelMap, colorPtr->numColors,
instancePtr->display, instancePtr->pixels,
instancePtr->gc, imagePtr, 0, 0, xStart, yStart,
(unsigned) width, (unsigned) nLines);
yStart = yEnd;
}
ckfree(imagePtr->data);
imagePtr->data = NULL;
}
void
Tk_PhotoBlank(handle)
Tk_PhotoHandle handle;
{
PhotoMaster *masterPtr;
PhotoInstance *instancePtr;
masterPtr = (PhotoMaster *) handle;
masterPtr->ditherX = masterPtr->ditherY = 0;
masterPtr->flags = 0;
if (masterPtr->validRegion != NULL) {
TkDestroyRegion(masterPtr->validRegion);
}
masterPtr->validRegion = TkCreateRegion();
memset((VOID *) masterPtr->pix24, 0,
(size_t) (masterPtr->width * masterPtr->height));
for (instancePtr = masterPtr->instancePtr; instancePtr != NULL;
instancePtr = instancePtr->nextPtr) {
memset((VOID *) instancePtr->error, 0,
(size_t) (masterPtr->width * masterPtr->height
* sizeof(schar)));
}
Tk_ImageChanged(masterPtr->tkMaster, 0, 0, masterPtr->width,
masterPtr->height, masterPtr->width, masterPtr->height);
}
void
Tk_PhotoExpand(handle, width, height)
Tk_PhotoHandle handle;
int width, height;
{
PhotoMaster *masterPtr;
masterPtr = (PhotoMaster *) handle;
if (width <= masterPtr->width) {
width = masterPtr->width;
}
if (height <= masterPtr->height) {
height = masterPtr->height;
}
if ((width != masterPtr->width) || (height != masterPtr->height)) {
ImgPhotoSetSize(masterPtr, MAX(width, masterPtr->width),
MAX(height, masterPtr->height));
Tk_ImageChanged(masterPtr->tkMaster, 0, 0, 0, 0, masterPtr->width,
masterPtr->height);
}
}
void
Tk_PhotoGetSize(handle, widthPtr, heightPtr)
Tk_PhotoHandle handle;
int *widthPtr, *heightPtr;
{
PhotoMaster *masterPtr;
masterPtr = (PhotoMaster *) handle;
*widthPtr = masterPtr->width;
*heightPtr = masterPtr->height;
}
void
Tk_PhotoSetSize(handle, width, height)
Tk_PhotoHandle handle;
int width, height;
{
PhotoMaster *masterPtr;
masterPtr = (PhotoMaster *) handle;
masterPtr->userWidth = width;
masterPtr->userHeight = height;
ImgPhotoSetSize(masterPtr, ((width > 0) ? width: masterPtr->width),
((height > 0) ? height: masterPtr->height));
Tk_ImageChanged(masterPtr->tkMaster, 0, 0, 0, 0,
masterPtr->width, masterPtr->height);
}
int
Tk_PhotoGetImage(handle, blockPtr)
Tk_PhotoHandle handle;
Tk_PhotoImageBlock *blockPtr;
{
PhotoMaster *masterPtr;
masterPtr = (PhotoMaster *) handle;
blockPtr->pixelPtr = masterPtr->pix24;
blockPtr->width = masterPtr->width;
blockPtr->height = masterPtr->height;
blockPtr->pitch = masterPtr->width * 3;
blockPtr->pixelSize = 3;
blockPtr->offset[0] = 0;
blockPtr->offset[1] = 1;
blockPtr->offset[2] = 2;
return 1;
}