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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
/*
image.c
Copyright (C) 1998 Ulric Eriksson <ulric@edu.stockholm.se>
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <X11/StringDefs.h>
#include <X11/Intrinsic.h>
#include <X11/Shell.h>
#include <X11/extensions/shape.h>
#include <X11/xpm.h>
#include "../common/cmalloc.h"
#define IWIDTH 50
#define IHEIGHT 50
static Pixmap pixmap, mask;
static XpmAttributes xa;
static Widget topLevel;
static XrmOptionDescRec options[] = {
{"-hints", ".hints", XrmoptionNoArg, (XtPointer) "True"},
{"-icon", ".icon", XrmoptionSepArg, (XtPointer) NULL},
};
/* Plugin stuff */
static void win(char *p)
{
printf("250 %lx\n", (unsigned long) XtWindow(topLevel));
}
static void quit(char *p)
{
printf("221 Over and out\n");
exit(0);
}
/*
First line:
<width> <height> <ncolors> <cpp> [optional junk]
Allocate enough room to house <ncolors> colors. Each color is
a string (the <chars> below) and three shorts for RGB.
Then <ncolors> lines of this format:
<chars> {<key> <color>}+
<chars> is <cpp> characters. Then white space. Then we read tokens
two at a time until we find the key 'c'. Then <color> is looked up
using XParseColor and the resulting RGB value (*yes*! we found one!)
is stored in the color array, along with <chars>.
Then <width> lines of data. Read <cpp> characters at a time and
look up the result from the color table. Print the damn thing.
On with the next.
Then there may be extension data, which we will ignore.
*/
typedef struct {
char *chars;
XColor xcolor;
} colors;
static void prnt(char *p)
{
unsigned int width, height, depth = 8;
unsigned int ncolors, cpp;
int x, y, col;
char *title = "Plugged in image";
time_t t;
char **data, *key, *color;
XpmAttributes xa;
int i, n;
colors *cm;
xa.valuemask = 0;
/* figure out a thing or two */
n = XpmCreateDataFromPixmap(XtDisplay(topLevel), &data,
pixmap, None, &xa);
if (n != XpmSuccess) {
printf("503 XpmCreateDataFromPixmap returns %d\n", n);
return;
}
sscanf(data[0], "%d %d %d %d", &width, &height, &ncolors, &cpp);
cm = (colors *)cmalloc(ncolors*sizeof(colors));
for (i = 0; i < ncolors; i++) {
cm[i].chars = (char *)cmalloc(cpp);
memcpy(cm[i].chars, data[i+1], cpp);
key = strtok(data[i+1]+cpp, " \t"); /* skip past chars */
color = strtok(NULL, " \t");
while (key && color && strcmp(key, "c")) {
key = strtok(NULL, " \t");
color = strtok(NULL, " \t");
};
if (!color) {
printf("504 No such color\n");
return;
}
XParseColor(XtDisplay(topLevel),
XDefaultColormapOfScreen(XtScreen(topLevel)),
color, &cm[i].xcolor);
}
printf("200 Postscript coming right up\n");
/* print postscript preblurb */
printf("%%!PS-Adobe-2.0 EPSF-2.0\n");
printf("%%%%Creator: Image plugin for Siag Office\n");
printf("%%%%Title: %s\n", title);
printf("%%%%Pages: 1\n");
printf("%%%%BoundingBox: %d %d %d %d\n", 0, 0, width, height);
t = time(NULL);
printf("%%%%CreationDate: %s\n", ctime(&t));
printf("%%%%EndComments\n");
printf("%%%%EndProlog\n");
printf("%%%%Page: 1 1\n\n\n");
printf("gsave\n\n");
printf("/inch {72 mul} def\n");
printf("%d %d scale\n", width, height);
printf("/line %d string def\n", 3*width);
printf("%d %d %d\n", width, height, depth);
printf("[ %d %d %d %d %d %d ]\n", width, 0, 0, -height, 0, height);
printf("{currentfile line readhexstring pop}\n");
printf("false 3 colorimage\n");
/* print all the pixels */
col = 0;
for (y = 0; y < height; y++) {
char *line = data[y+ncolors+1];
for (x = 0; x < width; x++) {
char *pix = line+cpp*x;
for (i = 0; i < ncolors; i++)
if (!memcmp(cm[i].chars, pix, cpp)) break;
if (i == ncolors) i = 0;
printf("%02hx%02hx%02hx",
(cm[i].xcolor.red / 256) & 255,
(cm[i].xcolor.green / 256) & 255,
(cm[i].xcolor.blue / 256) & 255);
col += 6;
if (col >= 72) {
printf("\n");
col = 0;
}
}
}
if (col) printf("\n");
/* print postscript postblurb */
printf("%%\n\n");
printf("grestore\n");
printf("%%%%Trailer\n");
for (i = 0; i < ncolors; i++) cfree(cm[i].chars);
cfree(cm);
cfree(data);
}
static struct {
char *verb;
void (*cb) (char *);
} plugin_cmds[] = {
/* {"SAVE", save},
{"LOAD", load_},
{"EXEC", exec_},
{"HELP", help},
{"NOOP", noop},
*/
{"WIN", win},
{"QUIT", quit},
{"PRNT", prnt},
{ NULL, NULL }
};
static void read_plugin_cmd(XtPointer client_data, int *fid, XtInputId * id)
{
char b[1024], *p;
int i, n;
if ((n = read(*fid, b, 1020)) == -1)
return;
b[n] = '\0';
if ((p = strchr(b, '\n')) == NULL) {
printf("501 Incomplete command\n");
fflush(stdout);
return;
}
*p = '\0';
for (i = 0; plugin_cmds[i].verb; i++) {
if (!strncmp(b, plugin_cmds[i].verb,
strlen(plugin_cmds[i].verb)))
break;
}
if (plugin_cmds[i].verb)
(*plugin_cmds[i].cb) (b + strlen(plugin_cmds[i].verb));
else
printf("500 What are you talking about\n");
fflush(stdout);
}
void mainloop(void)
{
XtAppAddInput(XtWidgetToApplicationContext(topLevel),
fileno(stdin), (XtPointer) XtInputReadMask,
read_plugin_cmd, NULL);
printf("220 Image plugin\n");
fflush(stdout);
XtAppMainLoop(XtWidgetToApplicationContext(topLevel));
}
int main(int argc, char **argv)
{
Window root;
int x, y, width, height, border, depth;
XtAppContext ac;
char b[1024];
char *tmpfile = "/tmp/siagimage.xpm";
int n;
char *fn = NULL;
topLevel = XtAppInitialize(&ac, "Image",
options, XtNumber(options), &argc, argv,
NULL, NULL, 0);
if (!topLevel) {
exit(1);
}
if (argc < 2) {
printf("501 Bogus command line\n");
exit(0);
}
fn = argv[argc-1];
xa.closeness = 40000;
xa.exactColors = FALSE;
xa.valuemask = XpmCloseness | XpmExactColors;
sprintf(b, "%s/common/any2xpm %s > %s",
SIAGHOME, fn, tmpfile);
system(b);
n = XpmReadFileToPixmap(XtDisplay(topLevel),
DefaultRootWindow(XtDisplay(topLevel)), tmpfile,
&pixmap, &mask, &xa);
if (n != XpmSuccess) {
printf("502 Can't load %s: %d\n", fn, n);
/*exit(0);*/
}
remove(tmpfile);
XGetGeometry(XtDisplay(topLevel), pixmap, &root,
&x, &y, &width, &height, &border, &depth);
XtVaSetValues(topLevel,
XtNwidth, width,
XtNheight, height,
XtNborderWidth, 0,
(char *) 0);
XtRealizeWidget(topLevel);
XSetWindowBackgroundPixmap(XtDisplay(topLevel),
XtWindow(topLevel), pixmap);
if (mask) {
XShapeCombineMask(XtDisplay(topLevel),
XtWindow(topLevel), ShapeBounding,
0, 0, mask, ShapeSet);
}
mainloop();
return 0;
}
|