9b9f701997-08-12Per Hedbor string cvs_version="$Id: graphic_text.pike,v 1.50 1997/08/12 06:32:22 per Exp $";
ebf60d1997-03-08Henrik Grubbström (Grubba) 
d47cbf1996-12-02Per Hedbor #include <module.h> inherit "module"; inherit "roxenlib";
033c7e1997-02-27Per Hedbor #if efun(_static_modules)
9d16ce1997-03-01Per Hedbor # define map_array Array.map
5e89211997-02-13Per Hedbor import Image;
35aead1997-05-08Per Hedbor # define Image image # define Font font
033c7e1997-02-27Per Hedbor #endif
d47cbf1996-12-02Per Hedbor  array register_module() { return ({ MODULE_LOCATION | MODULE_PARSER, "Graphics text",
a55a121997-05-30Per Hedbor  "Defines a few new containers, which all render text to gifs " "using the image module in pike.\n<p>"
676c231996-12-06Per Hedbor  "<b>&lt;gh1&gt;</b> to <b>&lt;gh6&gt;:</b> Headers<br>\n" "<b>&lt;gh&gt;:</b> Header<br>\n" "<b>&lt;gtext&gt;:</b> Graphical text<br>\n"
a55a121997-05-30Per Hedbor  "<b>&lt;anfang&gt;:</b> Make the first character a "
48fa361997-04-05Per Hedbor  "graphical one. Not all that usefull, really.<br>\n"
a97f5d1996-12-10Per Hedbor  "<br>\n" "<b>Common arguments:</b>\n <pre>"
bfc7071997-01-13Per Hedbor  " bg=color Use this background, default taken from the\n"
d47cbf1996-12-02Per Hedbor  " &lt;body&gt; tag, if any\n"
bfc7071997-01-13Per Hedbor  " fg=color Use this foreground, default taken from the\n"
d47cbf1996-12-02Per Hedbor  " &lt;body&gt; tag, if any\n"
a55a121997-05-30Per Hedbor  " nfont=fnt Use this font. The fonts can be found in the\n"
d47cbf1996-12-02Per Hedbor  " directory specified in the configuration\n" " interface.\n" " If no font is specified, the one from the\n"
a55a121997-05-30Per Hedbor  " define 'nfont' is used, or if there is no\n"
d47cbf1996-12-02Per Hedbor  " define, the default font will be used.\n"
a55a121997-05-30Per Hedbor  " bold Try to find a bold version of the font.\n" " italic Try to find an italic version of the font.\n" " black Try to find a black (heavy) version of the font.\n" " light Try to find a light version of the font.\n"
d47cbf1996-12-02Per Hedbor  " scale=float Scale to this font, mostly useful in the &lt;gtext&gt;\n" " tag, will not work at all in the &lt;gh[number]&gt;\n" " tags.\n" " 2 3 4 5 6 Short for scale=1.0/([number]*0.6)\n" " notrans Do _not_ make the background color transparent\n" " split Make each word into a separate gif image\n" " href=url Link the image to the specified URL\n" " The 'link' color of the document will be\n" " used as the default foreground of the text\n" " quant=cols Use this number of colors\n" " magic[=message] Modifier to href, more flashy links\n" " Does <b>not</b> work with 'split'\n"
bfc7071997-01-13Per Hedbor  " fuzz[=color] Apply the 'glow' effect to the result\n" " fs Use floyd-steinberg dithering\n" " border=int,col. Draw an border (width is the first argument\n"
d47cbf1996-12-02Per Hedbor  " in the specified color\n" " spacing=int Add this amount of spacing around the text\n"
3950bb1996-12-10Per Hedbor  " xspacing=int like spacing, but only horizontal\n" " yspacing=int like spacing, but only vertical\n" " size=int,int Use this (absolute) size\n" " xsize=int Use this (absolute) size\n" " ysize=int Use this (absolute) size\n"
d47cbf1996-12-02Per Hedbor  " bevel=int Draw a bevel box (width is the argument)\n"
38dca81996-12-10Per Hedbor  " pressed Invert the \"direction\" of the bevel box\n" " talign=dir Justify the text to the left, right, or center\n"
bfc7071997-01-13Per Hedbor  " textbox=al,col. Use 'al' as opaque value to draw a box below\n"
d47cbf1996-12-02Per Hedbor  " the text with the specified color.\n"
38dca81996-12-10Per Hedbor  " xpad=X% Increase padding between characters with X%\n" " xpad=Y% Increase padding between lines with Y%\n"
4dfdeb1996-12-04Per Hedbor  " shadow=int,dist Draw a drop-shadow (variable distance/intensity)\n"
5f0d911997-02-27Per Hedbor  " bshadow=dist Draw a blured drop-shadow (variable distance)\n"
291a801997-07-10Per Hedbor  " scolor=color Use this color as the shadow color.\n"
f6d62d1997-03-26Per Hedbor  " ghost=dist,blur,col\n"
a55a121997-05-30Per Hedbor  " Do a 'ghost text'. Do NOT use together with\n" " 'shadow'. Magic coloring won't work with it.\n"
bfc7071997-01-13Per Hedbor  " glow=color Draw a 'glow' outline around the text.\n"
d47cbf1996-12-02Per Hedbor  " opaque=0-100% Draw with more or less opaque text (100%\n" " is default)\n" " rotate=ang(deg.)Rotate the finished image\n" " background=file Use the specifed file as a background\n" " texture=file Use the specified file as text texture\n"
38dca81996-12-10Per Hedbor  " turbulence=args args is: frequency,color;freq,col;freq,col\n"
3642ac1996-12-10Per Hedbor  " Apply a turbulence filter, and use this as the\n"
38dca81996-12-10Per Hedbor  " background.\n"
bfc7071997-01-13Per Hedbor  " maxlen=arg The maximum length of the rendered text will be\n" " the specified argument. The default is 300, this\n"
44e3371997-06-12Per Hedbor  " is used to safeguard against mistakes like\n" " &lt;gh1&gt;&lt;/gh&gt;, which would otherwise\n" " parse the whole document.\n" " help Display this text\n"
e493e81997-07-11Per Hedbor  " scroll=width,steps,delay Make a horrible scrolltext\n"
3642ac1996-12-10Per Hedbor  "\n"
a97f5d1996-12-10Per Hedbor  "<b>Arguments passed on the the &lt;a&gt; tag (if href is specified):</b>\n "
1ce8c31996-12-10Per Hedbor  " target=...\n" " onClick=...\n"
4dd97c1996-12-04Per Hedbor  "</pre>\n", 0, 1,
d47cbf1996-12-02Per Hedbor  }); } array (string) list_fonts() {
4dd97c1996-12-04Per Hedbor  array fnts; catch(fnts = get_dir("fonts/32/") - ({".",".."})); if(!fnts) { report_error("Failed to find any fonts in 'fonts/32/'. No default font.\n"); return ({}); } return fnts;
d47cbf1996-12-02Per Hedbor } void create() {
9b9f701997-08-12Per Hedbor  defvar("deflen", 300, "Default maximum text-length", TYPE_INT|VAR_MORE,
bfc7071997-01-13Per Hedbor  "The module will, per default, not try to render texts " "longer than this. This is a safeguard for things like " "&lt;gh1&gt;&lt;/gh&gt;, which would otherwise parse the" " whole document. This can be overrided with maxlen=... in the " "tag.");
9b9f701997-08-12Per Hedbor  defvar("location", "/gtext/", "Mountpoint", TYPE_LOCATION|VAR_MORE,
f6d62d1997-03-26Per Hedbor  "The URL-prefix for the graphic characters.");
d47cbf1996-12-02Per Hedbor  defvar("cols", 16, "Default number of colors per image", TYPE_INT_LIST, "The default number of colors to use. 16 seems to be enough. " "The size of the image depends on the number of colors", ({ 1,2,3,4,5,6,7,8,10,16,32,64,128,256 }));
8e727d1997-03-11Per Hedbor 
48fa361997-04-05Per Hedbor #ifdef TYPE_FONT
8e727d1997-03-11Per Hedbor  // compatibility variables... defvar("default_size", 32, 0, TYPE_INT,0,0,1); defvar("default_font", "urw_itc_avant_garde-demi-r",0,TYPE_STRING,0,0,1);
48fa361997-04-05Per Hedbor #else
d47cbf1996-12-02Per Hedbor  defvar("default_size", 32, "Default font size", TYPE_INT_LIST, "The default size for the font. This is used for the 'base' size, " "and can be scaled up or down in the tags.", ({ 16, 32, 64 }));
48fa361997-04-05Per Hedbor 
d47cbf1996-12-02Per Hedbor  defvar("default_font", "urw_itc_avant_garde-demi-r", "Default font", TYPE_STRING_LIST, "The default font. The 'font dir' will be prepended to the path", list_fonts());
48fa361997-04-05Per Hedbor #endif
d47cbf1996-12-02Per Hedbor } string query_location() { return query("location"); } mapping (string:object) fonts = ([]);
35aead1997-05-08Per Hedbor object(Font) load_font(string name, string justification, int xs, int ys)
d47cbf1996-12-02Per Hedbor {
35aead1997-05-08Per Hedbor  object fnt = Font();
38dca81996-12-10Per Hedbor 
b677b71997-02-22Henrik Grubbström (Grubba)  if ((!name)||(name == "")) { name = QUERY(default_size)+"/"+QUERY(default_font); } else if(sscanf(name, "%*s/%*s") != 2) {
38dca81996-12-10Per Hedbor  name=QUERY(default_size)+"/"+name;
b677b71997-02-22Henrik Grubbström (Grubba)  }
d47cbf1996-12-02Per Hedbor  name = "fonts/" + name;
38dca81996-12-10Per Hedbor  if(!fnt->load( name )) {
d1f9661997-04-09Per Hedbor  report_error("Failed to load the font "+name+", using the default font.\n");
38dca81996-12-10Per Hedbor  if(!fnt->load("fonts/"+QUERY(default_size) +"/"+ QUERY(default_font))) error("Failed to load the default font\n"); }
9d16ce1997-03-01Per Hedbor  catch { if(justification=="right") fnt->right(); if(justification=="center") fnt->center(); if(xs)fnt->set_x_spacing((100.0+(float)xs)/100.0); if(ys)fnt->set_y_spacing((100.0+(float)ys)/100.0); };
d47cbf1996-12-02Per Hedbor  return fnt; } static private mapping (int:mapping(string:mixed)) cached_args = ([ ]); #define MAX(a,b) ((a)<(b)?(b):(a))
48fa361997-04-05Per Hedbor #if !efun(make_matrix)
d47cbf1996-12-02Per Hedbor static private mapping (int:array(array(int))) matrixes = ([]); array (array(int)) make_matrix(int size) { if(matrixes[size]) return matrixes[size]; array res; int i; int j;
9d16ce1997-03-01Per Hedbor  res = map_array(allocate(size), lambda(int s, int size){
d47cbf1996-12-02Per Hedbor  return allocate(size); }, size); for(i=0; i<size; i++) for(j=0; j<size; j++) res[i][j] = (int)MAX((float)size/2.0-sqrt((size/2-i)*(size/2-i) + (size/2-j)*(size/2-j)),0); return matrixes[size] = res; }
48fa361997-04-05Per Hedbor #endif
d47cbf1996-12-02Per Hedbor 
9d16ce1997-03-01Per Hedbor string fix_relative(string file, object id)
033c7e1997-02-27Per Hedbor {
9d16ce1997-03-01Per Hedbor  if(file != "" && file[0] == '/') return file; file = combine_path(dirname(id->not_query) + "/", file); return file;
033c7e1997-02-27Per Hedbor }
d47cbf1996-12-02Per Hedbor 
9d16ce1997-03-01Per Hedbor object last_image; // Cache the last image for a while.
e439c01996-12-10Per Hedbor string last_image_name;
d1f9661997-04-09Per Hedbor object load_image(string f,object id)
d47cbf1996-12-02Per Hedbor {
e439c01996-12-10Per Hedbor  if(last_image_name==f) return last_image;
d47cbf1996-12-02Per Hedbor  string data;
033c7e1997-02-27Per Hedbor  object file;
35aead1997-05-08Per Hedbor  object img = Image();
e439c01996-12-10Per Hedbor 
9d16ce1997-03-01Per Hedbor  if(!(data=roxen->try_get_file(fix_relative(f, id),id))) if(!(file=open(f,"r")) || (!(data=file->read(0x7fffffff))))
033c7e1997-02-27Per Hedbor  return 0;
e439c01996-12-10Per Hedbor  if(!img->frompnm(data) && !img->fromgif(data)) return 0;
9d16ce1997-03-01Per Hedbor  last_image_name=f; last_image=img; call_out(lambda(){last_image=0;last_image_name=0;}, 0); return img->copy();
d47cbf1996-12-02Per Hedbor }
35aead1997-05-08Per Hedbor object (Image) blur(object img, int amnt)
d47cbf1996-12-02Per Hedbor {
bfc7071997-01-13Per Hedbor  img->setcolor(0,0,0); img = img->autocrop(amnt, 0,0,0,0, 0,0,0);
d47cbf1996-12-02Per Hedbor  for(int i=0; i<amnt; i++)
bfc7071997-01-13Per Hedbor  img = img->apply_matrix( make_matrix((int)sqrt(img->ysize()+20)));
d47cbf1996-12-02Per Hedbor  return img; }
35aead1997-05-08Per Hedbor object (Image) outline(object (Image) on, object (Image) with,
bfc7071997-01-13Per Hedbor  array (int) color, int radie, int x, int y) { int steps=10; for(int j=0; j<=steps; j++)
48fa361997-04-05Per Hedbor  on->paste_alpha_color(with, @color, (int)(0.5+x-(sin((float)j/steps*3.145*2)*radie)), (int)(0.5+y-(cos((float)j/steps*3.145*2)*radie)));
bfc7071997-01-13Per Hedbor  return on; }
5e89211997-02-13Per Hedbor array white = ({ 255,255,255 }); array lgrey = ({ 200,200,200 }); array grey = ({ 128,128,128 }); array black = ({ 0,0,0 });
d47cbf1996-12-02Per Hedbor 
5e89211997-02-13Per Hedbor array wwwb = ({ lgrey,lgrey,grey,black });
35aead1997-05-08Per Hedbor object (Image) bevel(object (Image) in, int width, int|void invert)
d47cbf1996-12-02Per Hedbor {
4dfdeb1996-12-04Per Hedbor  int h=in->ysize(); int w=in->xsize();
d47cbf1996-12-02Per Hedbor 
35aead1997-05-08Per Hedbor  object corner = Image(width+1,width+1); object corner2 = Image(width+1,width+1); object pix = Image(1,1);
38dca81996-12-10Per Hedbor 
88e1cb1996-12-07David Hedbor  for(int i=-1; i<=width; i++) { corner->line(i,width-i,i,-1, @white); corner2->setpixel(width-i, width-i, @white); in->paste_alpha(pix, 185, w - width + i+1, h - width + i+1); }
38dca81996-12-10Per Hedbor  if(!invert) {
35aead1997-05-08Per Hedbor  in->paste_alpha(Image(width,h-width*2,@white), 160, 0, width); in->paste_alpha(Image(width,h-width*2,@black), 128, in->xsize()-width, width); in->paste_alpha(Image(w-width,width,@white), 160, 0, 0); in->paste_alpha(Image(w-width,width,@black), 128, width, in->ysize()-width);
38dca81996-12-10Per Hedbor  } else { corner=corner->invert(); corner2=corner2->invert();
35aead1997-05-08Per Hedbor  in->paste_alpha(Image(width,h-width*2,@black), 160, 0, width); in->paste_alpha(Image(width,h-width*2,@white), 128, in->xsize()-width, width); in->paste_alpha(Image(w-width,width,@black), 160, 0, 0); in->paste_alpha(Image(w-width,width,@white), 128, width, in->ysize()-width);
38dca81996-12-10Per Hedbor  } in->paste_mask(corner, corner->color(95,95,95), in->xsize()-width,-1); in->paste_mask(corner, corner->invert()->color(128,128,128),
88e1cb1996-12-07David Hedbor  in->xsize()-width,-1);
38dca81996-12-10Per Hedbor  in->paste_mask(corner, corner->color(95,95,95), -1, in->ysize()-width);
88e1cb1996-12-07David Hedbor  in->paste_mask(corner, corner->invert()->color(128,128,128),
38dca81996-12-10Per Hedbor  -1, in->ysize()-width);
48fa361997-04-05Per Hedbor  corner=0;
38dca81996-12-10Per Hedbor  in->paste_mask(corner2, corner2->color(70,70,70), -1, -1);
88e1cb1996-12-07David Hedbor 
48fa361997-04-05Per Hedbor  corner2 = pix = 0;
d47cbf1996-12-02Per Hedbor  return in; }
35aead1997-05-08Per Hedbor object (Image) make_text_image(mapping args, object font, string text,object id)
d47cbf1996-12-02Per Hedbor {
d1f9661997-04-09Per Hedbor  object text_alpha=font->write(@(text/"\n"));
d47cbf1996-12-02Per Hedbor  int xoffset=0, yoffset=0;
bfc7071997-01-13Per Hedbor  if(!text_alpha->xsize() || !text_alpha->ysize())
35aead1997-05-08Per Hedbor  text_alpha = Image(10,10, 0,0,0);
bfc7071997-01-13Per Hedbor  // perror("Making image of '%s', args=%O\n", text, args);
d47cbf1996-12-02Per Hedbor  if(int op=((((int)args->opaque)*255)/100)) // Transparent text... text_alpha=text_alpha->color(op,op,op); int txsize=text_alpha->xsize(); int tysize=text_alpha->ysize(); // Size of the text, in pixels.
5e89211997-02-13Per Hedbor  int xsize=txsize; // image size, in pixels
d47cbf1996-12-02Per Hedbor  int ysize=tysize;
bfc7071997-01-13Per Hedbor // perror("Xsize=%d; ysize=%d\n",xsize,ysize);
d47cbf1996-12-02Per Hedbor  if(args->bevel) { xoffset += (int)args->bevel; yoffset += (int)args->bevel; xsize += ((int)args->bevel)*2; ysize += ((int)args->bevel)*2; } if(args->spacing) { xoffset += (int)args->spacing; yoffset += (int)args->spacing; xsize += ((int)args->spacing)*2; ysize += ((int)args->spacing)*2; } if(args->yspacing) { yoffset += (int)args->yspacing; ysize += ((int)args->yspacing)*2; }
4dfdeb1996-12-04Per Hedbor  if(args->shadow) { xsize+=((int)(args->shadow/",")[-1])+2; ysize+=((int)(args->shadow/",")[-1])+2; }
5f0d911997-02-27Per Hedbor  if(args->bshadow) {
ae2ddd1997-02-27Per Hedbor  xsize+=(int)args->bshadow+3; ysize+=(int)args->bshadow+3;
5f0d911997-02-27Per Hedbor  }
6ec4501997-02-19Per Hedbor  if(args->move) { int dx,dy; sscanf(args->move, "%d,%d", dx, dy); xoffset += dx; yoffset += dy; }
f6d62d1997-03-26Per Hedbor  if(args->ghost) { int howmuch=(int)args->ghost; xsize+=howmuch*2+10; xoffset += 3; ysize+=howmuch*2+10; }
d47cbf1996-12-02Per Hedbor  if(args->xspacing) { xoffset += (int)args->xspacing; xsize += ((int)args->xspacing)*2; } if(args->border) { xoffset += (int)args->border; yoffset += (int)args->border; xsize += ((int)args->border)*2; ysize += ((int)args->border)*2; }
4dd97c1996-12-04Per Hedbor  array (int) bgcolor = parse_color(args->bg); array (int) fgcolor = parse_color(args->fg);
d47cbf1996-12-02Per Hedbor  object background,foreground;
033c7e1997-02-27Per Hedbor  if(args->texture) foreground = load_image(args->texture,id);
d47cbf1996-12-02Per Hedbor 
e30a591997-03-01Henrik Grubbström (Grubba)  if((args->background) && (background = load_image(args->background, id))) {
4dfdeb1996-12-04Per Hedbor  xsize = background->xsize(); ysize = background->ysize();
0cb13a1997-02-15Henrik Grubbström (Grubba)  switch(lower_case(args->talign||"left")) { case "center":
38dca81996-12-10Per Hedbor  xoffset = (xsize/2 - txsize/2);
9d16ce1997-03-01Per Hedbor  yoffset = (ysize/2 - tysize/2);
38dca81996-12-10Per Hedbor  break;
0cb13a1997-02-15Henrik Grubbström (Grubba)  case "right":
38dca81996-12-10Per Hedbor  xoffset = (xsize - txsize); break;
0cb13a1997-02-15Henrik Grubbström (Grubba)  case "left":
38dca81996-12-10Per Hedbor  }
4dfdeb1996-12-04Per Hedbor  } else
35aead1997-05-08Per Hedbor  background = Image(xsize, ysize, @bgcolor);
7866701996-12-10Per Hedbor 
bfc7071997-01-13Per Hedbor  if(args->border) { int b = (int)args->border; background->setcolor(@parse_color((args->border/",")[-1])); for(--b;b>=0;b--) { // upper left -- upper right background->line(b,b, xsize-b-1, b); // lower left -- lower right background->line(b,ysize-b-1, xsize-b-1, ysize-b-1); // upper left -- lower left background->line(b,b, b, ysize-b-1); // upper right -- lower right background->line(xsize-b-1,b, xsize-b-1, ysize-b-1); } }
3950bb1996-12-10Per Hedbor  background->setcolor(@bgcolor);
7866701996-12-10Per Hedbor 
3950bb1996-12-10Per Hedbor  if(args->size || args->xsize || args->ysize) { int xs=background->xsize(), ys=background->ysize(); if(args->size) { xs=(int)args->size; ys=(int)(args->size/",")[-1]; } if(args->xsize) xs=(int)args->xsize; if(args->ysize) ys=(int)args->ysize;
7866701996-12-10Per Hedbor  background = background->copy(0,0,xs,ys);
3950bb1996-12-10Per Hedbor  }
d47cbf1996-12-02Per Hedbor 
3950bb1996-12-10Per Hedbor 
38dca81996-12-10Per Hedbor  if(args->turbulence) { array (float|array(int)) arg=({}); foreach((args->turbulence/";"), string s) { array q= s/","; if(sizeof(q)<2) args+=({ ((float)s)||0.2, ({ 255,255,255 }) }); arg+=({ ((float)q[0])||0.2, parse_color(q[1]) }); } background=background->turbulence(arg); } if(args->bevel) background = bevel(background,(int)args->bevel,!!args->pressed);
d47cbf1996-12-02Per Hedbor  if(args->textbox) // Draw a text-box on the background. {
4dfdeb1996-12-04Per Hedbor  int alpha,border;
d47cbf1996-12-02Per Hedbor  string bg; sscanf(args->textbox, "%d,%s", alpha, bg);
4dfdeb1996-12-04Per Hedbor  sscanf(bg,"%s,%d", bg,border);
35aead1997-05-08Per Hedbor  background->paste_alpha(Image(txsize+border*2,tysize+border*2,
38dca81996-12-10Per Hedbor  @parse_color(bg)), 255-(alpha*255/100),xoffset-border,yoffset-border);
d47cbf1996-12-02Per Hedbor  }
f6d62d1997-03-26Per Hedbor  if(args->ghost) { // Francesco.. int sdist = (int)args->ghost; int bl=(int)(args->ghost/",")[1]; array(int)clr=parse_color((args->ghost/",")[-1]); int j; object ta = text_alpha->copy(); for (j=0;j<bl;j++) ta=ta->apply_matrix(({ ({6,7,7,7,6}),({7,8,8,8,7}),({7,8,8,8,7}),({7,8,8,8,7}),({6,7,7,7,6}) }));
48fa361997-04-05Per Hedbor  background->paste_alpha_color(ta,@clr,xoffset+sdist,yoffset+sdist);
f6d62d1997-03-26Per Hedbor  fgcolor=bgcolor; }
bfc7071997-01-13Per Hedbor 
4dfdeb1996-12-04Per Hedbor  if(args->shadow) { int sd = ((int)args->shadow+10)*2; int sdist = ((int)(args->shadow/",")[-1])+2; object ta = text_alpha->copy(); ta = ta->color(256-sd,256-sd,256-sd);
291a801997-07-10Per Hedbor  array sc = parse_color(args->scolor||"black"); background->paste_alpha_color(ta,sc[0],sc[1],sc[2], xoffset+sdist,yoffset+sdist);
4dfdeb1996-12-04Per Hedbor  }
5f0d911997-02-27Per Hedbor #define MIN(x,y) ((x)<(y)?(x):(y)) if(args->bshadow) { int sdist = (int)(args->bshadow)+1;
ae2ddd1997-02-27Per Hedbor  int xs,ys; xs = text_alpha->xsize()+sdist*2+4; ys = text_alpha->ysize()+sdist*2+4;
291a801997-07-10Per Hedbor  object ta = Image(xs+sdist*2,ys+sdist*2); array sc = parse_color(args->scolor||"black"); ta->paste_alpha_color(text_alpha,255,255,255,sdist,sdist);
5f0d911997-02-27Per Hedbor  ta = blur(ta, MIN((sdist/2),1))->color(256,256,256);
291a801997-07-10Per Hedbor  background->paste_alpha_color(ta,sc[0],sc[1],sc[2], xoffset+sdist,yoffset+sdist);
5f0d911997-02-27Per Hedbor  }
bfc7071997-01-13Per Hedbor  if(args->glow) { int amnt = (int)(args->glow/",")[-1]+2; array (int) blurc = parse_color((args->glow/",")[0]);
48fa361997-04-05Per Hedbor  background->paste_alpha_color(blur(text_alpha, amnt),@blurc, xoffset-amnt, yoffset-amnt);
bfc7071997-01-13Per Hedbor  }
38dca81996-12-10Per Hedbor  if(args->chisel)
d1f9661997-04-09Per Hedbor  foreground=text_alpha->apply_matrix(({ ({8,1,0}), ({1,0,-1}), ({0,-1,-8}) }), 128,128,128, 15 )
38dca81996-12-10Per Hedbor  ->color(@fgcolor);
35aead1997-05-08Per Hedbor  if(!foreground) foreground=Image(txsize, tysize, @fgcolor);
bfc7071997-01-13Per Hedbor  if(args->textscale) { string c1="black",c2="black",c3="black",c4="black"; sscanf(args->textscale, "%s,%s,%s,%s", c1, c2, c3, c4); foreground->tuned_box(0,0, txsize,tysize, ({parse_color(c1),parse_color(c2),parse_color(c3), parse_color(c4)})); } if(args->outline) outline(background, text_alpha, parse_color((args->outline/",")[0]), ((int)(args->outline/",")[-1])+1, xoffset, yoffset);
d47cbf1996-12-02Per Hedbor 
4dfdeb1996-12-04Per Hedbor  background->paste_mask(foreground, text_alpha, xoffset, yoffset);
d47cbf1996-12-02Per Hedbor  foreground = text_alpha = 0; if(args->scale) if((float)args->scale <= 2.0) background = background->scale((float)args->scale); if(args->rotate) { string c;
bfc7071997-01-13Per Hedbor  if(sscanf(args->rotate, "%*d,%s", c)==2)
4dd97c1996-12-04Per Hedbor  background->setcolor(@parse_color(c));
d47cbf1996-12-02Per Hedbor  else background->setcolor(@bgcolor); background = background->rotate((float)args->rotate); }
4dfdeb1996-12-04Per Hedbor  if(args->crop) background = background->autocrop();
d47cbf1996-12-02Per Hedbor  return background; }
2468b21997-07-06Henrik Grubbström (Grubba) string base_key; void start() { base_key = "gtext:"+roxen->current_configuration->name; }
c3655b1997-01-27Per Hedbor 
d1f9661997-04-09Per Hedbor #ifdef QUANT_DEBUG void print_colors(array from) { #if efun(color_name) for(int i=0; i<sizeof(from); i++) perror("%d: %s\n", i, color_name(from[i])); #endif } #endif
d47cbf1996-12-02Per Hedbor 
5f0d911997-02-27Per Hedbor int number=(time(1)/10) % 1000, _start=time(1)/10 % 1000;
d249951996-12-10Per Hedbor 
d47cbf1996-12-02Per Hedbor array(int)|string write_text(int _args, string text, int size, object id) { object img; mapping args = cached_args[_args];
c3655b1997-01-27Per Hedbor  if(!args) { args=(["fg":"black","bg":"white"]); text="Please reload this page"; }
d47cbf1996-12-02Per Hedbor 
c3655b1997-01-27Per Hedbor  string key = base_key+(_args-_start);
d47cbf1996-12-02Per Hedbor  text = replace(text, ({ "&lt;", "&gt;", "&amp;" }), ({ "<", ">", "&" })); // Check the cache first..
c3655b1997-01-27Per Hedbor  if(mixed data = cache_lookup(key, text))
ba73a21996-12-10Per Hedbor  {
c3655b1997-01-27Per Hedbor  if(args->nocache) // Remove from cache. Very usable for access counters cache_remove(key, text);
ba73a21996-12-10Per Hedbor  if(size) return data[1]; return data[0]; }
d47cbf1996-12-02Per Hedbor  // Nothing found in the cache. Generate a new image.
b551e11996-12-10Per Hedbor 
48fa361997-04-05Per Hedbor #if efun(get_font)
8e727d1997-03-11Per Hedbor  if(args->nfont) { int bold, italic; if(args->bold) bold=1; if(args->light) bold=-1; if(args->italic) italic=1; if(args->black) bold=2; data = get_font(args->nfont,(int)args->font_size,bold,italic, lower_case(args->talign||"left"), (float)(int)args->xpad, (float)(int)args->ypad);
48fa361997-04-05Per Hedbor  } else #endif {
8e727d1997-03-11Per Hedbor  string fkey = args->font+"/"+args->talign+"/"+args->xpad+"/"+args->ypad; data = cache_lookup("fonts", fkey); if(!data) { data = load_font(args->font, lower_case(args->talign||"left"), (int)args->xpad,(int)args->ypad); cache_set("fonts", fkey, data); }
d47cbf1996-12-02Per Hedbor  } // Fonts and such are now initialized.
033c7e1997-02-27Per Hedbor  img = make_text_image(args,data,text,id);
d47cbf1996-12-02Per Hedbor  // Now we have the image in 'img', or nothing. if(!img) return 0;
c3655b1997-01-27Per Hedbor  int q = (int)args->quant||(args->background||args->texture?250:QUERY(cols)); if(q>255) q=255; if(q<3) q=3;
d1f9661997-04-09Per Hedbor // Quantify
bfc7071997-01-13Per Hedbor  if(!args->fs)
c3655b1997-01-27Per Hedbor  {
d1f9661997-04-09Per Hedbor #ifdef QUANT_DEBUG print_colors(img->select_colors(q-1)+({parse_color(args->bg)})); #endif
bfc7071997-01-13Per Hedbor  img = img->map_closest(img->select_colors(q-1)+({parse_color(args->bg)}));
c3655b1997-01-27Per Hedbor  }
d1f9661997-04-09Per Hedbor  // place in cache, as a gif image.
d47cbf1996-12-02Per Hedbor 
85a2e51997-06-23Per Hedbor  if(!args->scroll) { if(args->fs) data=({ img->togif_fs(@(args->notrans?({}):parse_color(args->bg))), ({img->xsize(),img->ysize()})}); else data=({ img->togif(@(args->notrans?({}):parse_color(args->bg))), ({img->xsize(),img->ysize()})}); img=0; } else { int len=100, steps=30, delay=5, ox; string res = img->gif_begin() + img->gif_netscape_loop(); sscanf(args->scroll, "%d,%d,%d", len, steps, delay); img=img->copy(0,0,(ox=img->xsize())+len-1,img->ysize()-1); img->paste(img, ox, 0); for(int i = 0; i<steps; i++) { int xp = i*ox/steps; res += img->copy(xp, 0, xp+len, img->ysize(), @parse_color(args->bg))->gif_add(0,0,delay); } res += img->gif_end(); data = ({ res, ({ len, img->ysize() }) }); }
c3655b1997-01-27Per Hedbor  cache_set(key, text, data);
d47cbf1996-12-02Per Hedbor  if(size) return data[1]; return data[0]; } mapping find_file(string f, object rid) {
f6d62d1997-03-26Per Hedbor  int id;
d47cbf1996-12-02Per Hedbor  sscanf(f,"%d/%s", id, f);
f6d62d1997-03-26Per Hedbor  return http_string_answer(write_text(id,f,0,rid), "image/gif");
d47cbf1996-12-02Per Hedbor } string quote(string in) { string res=""; for(int i=0; i<strlen(in); i++) switch(in[i]) { case 'a'..'z': case 'A'..'Z': case '0'..'9': case '.': case ',': case '!': res += in[i..i]; break; default: res += sprintf("%%%02x", in[i]); } return res; } int find_or_insert(mapping find) { array a = indices(cached_args); array b = values(cached_args); int i; for(i=0; i<sizeof(a); i++)
0943711997-02-25Per Hedbor  if(equal(find, b[i])) { // perror("Found old args..\n"); return a[i]; } // perror("Using new args..\n%O\n", find);
d47cbf1996-12-02Per Hedbor  cached_args[number]=find; return number++; } string magic_javascript_header(object id) { if(!id->supports->javascript || !id->supports->images) return ""; return
0943711997-02-25Per Hedbor  ("\n<script>\n" "function img_act(ri,hi,txt)\n"
d47cbf1996-12-02Per Hedbor  "{\n"
0943711997-02-25Per Hedbor  " document.images[ri].src = hi.src;\n" " setTimeout(\"top.window.status = '\"+txt+\"'\", 100);\n"
d47cbf1996-12-02Per Hedbor  "}\n" "</script>\n"); } string magic_image(string url, int xs, int ys, string sn, string image_1, string image_2, string alt,
b91fd51996-12-10Per Hedbor  string mess,object id,string input,string extra_args)
d47cbf1996-12-02Per Hedbor { if(!id->supports->images) return alt; if(!id->supports->javascript)
38dca81996-12-10Per Hedbor  return (!input)?
f6d62d1997-03-26Per Hedbor  ("<a "+extra_args+"href=\""+url+"\"><img _parsed=1 src=\""+image_1+"\" name="+sn+" border=0 alt=\""+alt+"\" ></a>\n"): ("<input type=image "+extra_args+" src=\""+image_1+"\" name="+input+">");
d47cbf1996-12-02Per Hedbor  return ("<script>\n"
0943711997-02-25Per Hedbor  " "+sn+"l = new Image("+xs+", "+ys+");"+sn+"l.src = \""+image_1+"\";\n" " "+sn+"h = new Image("+xs+", "+ys+");"+sn+"h.src = \""+image_2+"\";\n"
38dca81996-12-10Per Hedbor  "</script>\n"+
ca0f081997-02-22Per Hedbor  ("<a "+extra_args+"href=\""+url+"\" "+ (input?"onClick='document.forms[0].submit();' ":"")
0943711997-02-25Per Hedbor  +"onMouseover=\"img_act('"+sn+"',"+sn+"h,'"+(mess||url)+"');\"\n" "onMouseout='document.images[\""+sn+"\"].src = "+sn+"l.src;'><img "
f6d62d1997-03-26Per Hedbor  "_parsed=1 width="+xs+" height="+ys+" src=\""+image_1+"\" name="+sn+
0943711997-02-25Per Hedbor  " border=0 alt=\""+alt+"\" ></a>\n"));
d47cbf1996-12-02Per Hedbor }
b91fd51996-12-10Per Hedbor  string extra_args(mapping in) { string s=""; foreach(indices(in), string i) { switch(i) { case "target":
bfc7071997-01-13Per Hedbor  case "hspace": case "vspace": case "onclick":
80739c1996-12-10Per Hedbor  s+=i+"='"+in[i]+"' ";
b91fd51996-12-10Per Hedbor  m_delete(in, i); break; } } return s; }
07969c1997-02-25Per Hedbor string tag_gtext_id(string t, mapping arg, object id, object foo, mapping defines) { int short=!!arg->short; m_delete(arg, "short"); m_delete(arg, "maxlen"); m_delete(arg,"magic"); m_delete(arg,"submit"); extra_args(arg); m_delete(arg,"split"); if(defines->fg && !arg->fg) arg->fg=defines->fg; if(defines->bg && !arg->bg) arg->bg=defines->bg;
e30a591997-03-01Henrik Grubbström (Grubba)  if(!arg->font) arg->font=defines->font||QUERY(default_font);
48fa361997-04-05Per Hedbor #if efun(get_font)
f6d62d1997-03-26Per Hedbor  if(!arg->nfont) arg->nfont=defines->nfont;
48fa361997-04-05Per Hedbor #endif
07969c1997-02-25Per Hedbor  int num = find_or_insert( arg ); if(!short) return query_location()+num+"/"; else return (string)num; }
d47cbf1996-12-02Per Hedbor string tag_graphicstext(string t, mapping arg, string contents, object id, object foo, mapping defines) {
c3655b1997-01-27Per Hedbor // Allow <accessed> and others inside <gtext>.
a55a121997-05-30Per Hedbor  if(arg->help) return register_module()[2];
033c7e1997-02-27Per Hedbor #if efun(_static_modules) contents = parse_rxml(contents, id, foo, defines); #else contents = parse_rxml(contents, id, foo); #endif
d47cbf1996-12-02Per Hedbor  string pre, post, defalign, gt, rest, magic; int i, split; // No images here, let's generate an alternative.. if(!id->supports->images || id->prestate->noimages) { if(!arg->split) contents=replace(contents,"\n", "\n<br>\n");
196dac1997-02-22Per Hedbor  if(arg->submit) return "<input type=submit name=\""+(arg->name+".x")+"\" value=\""+contents+"\">";
d47cbf1996-12-02Per Hedbor  switch(t) { case "gtext": case "anfang": if(arg->href) return "<a href=\""+arg->href+"\">"+contents+"</a>"; return contents; default: if(sscanf(t, "%s%d", t, i)==2) rest="<h"+i+">"+contents+"</h"+i+">"; else rest="<h1>"+contents+"</h1>"; if(arg->href) return "<a href=\""+arg->href+"\">"+rest+"</a>"; return rest; } }
bfc7071997-01-13Per Hedbor  contents = contents[..((int)arg->maxlen||QUERY(deflen))]; m_delete(arg, "maxlen");
d47cbf1996-12-02Per Hedbor  if(arg->magic) {
d23e421997-05-08Per Hedbor  magic=replace(arg->magic,"'","`");
d47cbf1996-12-02Per Hedbor  m_delete(arg,"magic"); }
38dca81996-12-10Per Hedbor  int input; if(arg->submit) { input=1; m_delete(arg,"submit"); }
d47cbf1996-12-02Per Hedbor 
80739c1996-12-10Per Hedbor  string lp, url, ea;
bfc7071997-01-13Per Hedbor 
80739c1996-12-10Per Hedbor  ea = extra_args(arg);
bfc7071997-01-13Per Hedbor 
0943711997-02-25Per Hedbor  // Modify the 'arg' mapping...
d47cbf1996-12-02Per Hedbor  if(arg->href) { url = arg->href;
80739c1996-12-10Per Hedbor  lp = "<a href=\""+arg->href+"\" "+ea+">";
d47cbf1996-12-02Per Hedbor  if(!arg->fg) arg->fg=defines->link||"#0000ff";
0943711997-02-25Per Hedbor  m_delete(arg, "href");
d47cbf1996-12-02Per Hedbor  } if(defines->fg && !arg->fg) arg->fg=defines->fg; if(defines->bg && !arg->bg) arg->bg=defines->bg;
48fa361997-04-05Per Hedbor #if efun(get_font)
f6d62d1997-03-26Per Hedbor  if(!arg->nfont) arg->nfont=defines->nfont;
48fa361997-04-05Per Hedbor #endif
f6d62d1997-03-26Per Hedbor  if(!arg->bold) arg->bold=defines->bold; if(!arg->italic) arg->italic=defines->italic; if(!arg->black) arg->black=defines->black; if(!arg->narrow) arg->narrow=defines->narrow;
e30a591997-03-01Henrik Grubbström (Grubba)  if(!arg->font) arg->font=defines->font||QUERY(default_font);
d47cbf1996-12-02Per Hedbor  if(arg->split) { split=1; m_delete(arg,"split"); } // Support for <gh 2> like things. for(i=2; i<10; i++) if(arg[(string)i]) { arg->scale = 1.0 / ((float)i*0.6); m_delete(arg, (string)i);
9d16ce1997-03-01Per Hedbor  break;
d47cbf1996-12-02Per Hedbor  } // Support for <gh1> like things. if(sscanf(t, "%s%d", t, i)==2) if(i > 1) arg->scale = 1.0 / ((float)i*0.6);
0943711997-02-25Per Hedbor  string na = arg->name, al=arg->align; m_delete(arg, "name"); m_delete(arg, "align");
d47cbf1996-12-02Per Hedbor  // Now the 'args' mapping is modified enough.. int num = find_or_insert( arg ); gt=contents; rest="";
f6d62d1997-03-26Per Hedbor  switch(t) { case "gh1": case "gh2": case "gh3": case "gh4": case "gh5": case "gh6": case "gh7": case "gh": pre="<p>"; post="<br>"; defalign="top"; break; case "gtext": pre=""; post=""; defalign="bottom"; break; case "anfang": gt=contents[0..0]; rest=contents[1..]; pre="<br clear=left>"; post=""; defalign="left"; break; }
d47cbf1996-12-02Per Hedbor  if(split) { string word;
f6d62d1997-03-26Per Hedbor  array res = ({pre});
d47cbf1996-12-02Per Hedbor  string pre = query_location()+num+"/"; if(lp) res+=({ lp }); gt=replace(gt, "\n", " "); foreach(gt/" "-({""}), word) {
9d16ce1997-03-01Per Hedbor  array size = write_text(num,word,1,id);
d2a0f11996-12-10David Hedbor  res += ({ "<img _parsed=1 border=0 alt=\""+replace(word,"\"","'")
f6d62d1997-03-26Per Hedbor  +"\" src=\""+pre+quote(word)+"\" width="+
bfc7071997-01-13Per Hedbor  size[0]+" height="+size[1]+" "+ea+">\n"
d47cbf1996-12-02Per Hedbor  }); }
f6d62d1997-03-26Per Hedbor  if(lp) res+=({ "</a>"+post });
d47cbf1996-12-02Per Hedbor  return res*""; }
9d16ce1997-03-01Per Hedbor  array size = write_text(num,gt,1,id);
d47cbf1996-12-02Per Hedbor  if(magic) { string res = "";
bfc7071997-01-13Per Hedbor  if(!arg->fg) arg->fg=defines->link||"#0000ff";
d47cbf1996-12-02Per Hedbor  arg = mkmapping(indices(arg), values(arg));
bfc7071997-01-13Per Hedbor  if(arg->fuzz) { if(arg->fuzz != "fuzz") arg->glow = arg->fuzz; else arg->glow = arg->fg; }
d47cbf1996-12-02Per Hedbor  arg->fg = defines->alink||"#ff0000";
38dca81996-12-10Per Hedbor  if(arg->bevel) arg->pressed=1;
0943711997-02-25Per Hedbor 
d47cbf1996-12-02Per Hedbor  int num2 = find_or_insert(arg);
9d16ce1997-03-01Per Hedbor  array size = write_text(num2,gt,1,id);
0943711997-02-25Per Hedbor 
38dca81996-12-10Per Hedbor  if(!defines->magic_java) res = magic_javascript_header(id);
d47cbf1996-12-02Per Hedbor  defines->magic_java="yes";
0943711997-02-25Per Hedbor  return res + magic_image(url||"", size[0], size[1], "i"+(defines->mi++), query_location()+num+"/"+quote(gt), query_location()+num2+"/"+quote(gt), replace(gt, "\"","'"),(magic=="magic"?0:magic), id,input?na||"submit":0,ea);
d47cbf1996-12-02Per Hedbor  }
ca0f081997-02-22Per Hedbor  if(input)
0943711997-02-25Per Hedbor  return (pre+"<input type=image name=\""+na+"\" border=0 alt=\""+
38dca81996-12-10Per Hedbor  replace(gt,"\"","'")+"\" src="+query_location()+num+"/"+quote(gt)
0943711997-02-25Per Hedbor  +" align="+(al || defalign)+ea+
38dca81996-12-10Per Hedbor  " width="+size[0]+" height="+size[1]+">"+rest+post);
d47cbf1996-12-02Per Hedbor  return (pre+(lp?lp:"")+
f6d62d1997-03-26Per Hedbor  "<img _parsed=1 border=0 alt=\""+replace(gt,"\"","'")+"\" src=\""+ query_location()+num+"/"+quote(gt)+"\" "+ea
0943711997-02-25Per Hedbor  +" align="+(al || defalign)+
d47cbf1996-12-02Per Hedbor  " width="+size[0]+" height="+size[1]+">"+rest+(lp?"</a>":"")+post); }
bfc7071997-01-13Per Hedbor inline string ns_color(array (int) col) { if(!arrayp(col)||sizeof(col)!=3) return "#000000"; return sprintf("#%02x%02x%02x", col[0],col[1],col[2]); } string make_args(mapping in) { array a=indices(in), b=values(in); for(int i=0; i<sizeof(a); i++) if(lower_case(b[i])!=a[i]) if(search(b,"\"")==-1) a[i]+="=\""+b[i]+"\""; else a[i]+="='"+b[i]+"'"; return a*" "; }
d47cbf1996-12-02Per Hedbor string tag_body(string t, mapping args, object id, object file, mapping defines) {
bfc7071997-01-13Per Hedbor  int cols,changed; if(args->bgcolor||args->text||args->link||args->alink ||args->background||args->vlink) cols=1; #define FIX(Y,Z,X) do{if(!args->Y){if(cols){defines->X=Z;args->Y=Z;changed=1;}}else{defines->X=args->Y;if(args->Y[0]!='#'){args->Y=ns_color(parse_color(args->Y));changed=1;}}}while(0)
0ee0851997-02-08Per Hedbor  if(!search(id->client*"","Mosaic")) { FIX(bgcolor,"#bfbfbf",bg); FIX(text, "#000000",fg); FIX(link, "#0000b0",link); FIX(alink, "#3f0f7b",alink); FIX(vlink, "#ff0000",vlink); } else { FIX(bgcolor,"#c0c0c0",bg); FIX(text, "#000000",fg); FIX(link, "#0000ee",link); FIX(alink, "#ff0000",alink); FIX(vlink, "#551a8b",vlink); } if(changed) return ("<body "+make_args(args)+">");
d47cbf1996-12-02Per Hedbor }
196dac1997-02-22Per Hedbor 
bfc7071997-01-13Per Hedbor string tag_fix_color(string tagname, mapping args, object id, object file, mapping defines) { int changed;
196dac1997-02-22Per Hedbor  if(!id->misc->colors)
5f0d911997-02-27Per Hedbor  id->misc->colors = ({ ({ defines->fg, defines->bg, tagname }) });
196dac1997-02-22Per Hedbor  else
5f0d911997-02-27Per Hedbor  id->misc->colors += ({ ({ defines->fg, defines->bg, tagname }) }); // perror("Push color "+tagname+"\n");
bfc7071997-01-13Per Hedbor #define FIX(X,Y) if(args->X){defines->Y=args->X;if(args->X[0]!='#'){args->X=ns_color(parse_color(args->X));changed = 1;}} FIX(bgcolor,bg); FIX(text,fg); FIX(color,fg); if(changed)return ("<"+tagname+" "+make_args(args)+">"); return 0; }
d47cbf1996-12-02Per Hedbor 
196dac1997-02-22Per Hedbor string pop_color(string tagname,mapping args,object id,object file, mapping defines) { array c = id->misc->colors;
5f0d911997-02-27Per Hedbor  sscanf(tagname, "/%s", tagname); while(c && sizeof(c))
196dac1997-02-22Per Hedbor  {
5f0d911997-02-27Per Hedbor  if(c[-1][2]==tagname) { defines->fg = c[-1][0]; defines->bg = c[-1][1]; // perror("Pop color "+tagname+" ("+ // (sizeof(id->misc->colors)-sizeof(c)+1)+")\n"); break; } c = c[..sizeof(c)-2];
196dac1997-02-22Per Hedbor  }
5f0d911997-02-27Per Hedbor  id->misc->colors = c;
196dac1997-02-22Per Hedbor }
bfc7071997-01-13Per Hedbor mapping query_tag_callers()
d47cbf1996-12-02Per Hedbor {
bfc7071997-01-13Per Hedbor  return ([
196dac1997-02-22Per Hedbor  "body":tag_body,
07969c1997-02-25Per Hedbor  "gtext-id":tag_gtext_id,
196dac1997-02-22Per Hedbor  "font":tag_fix_color,
bfc7071997-01-13Per Hedbor  "table":tag_fix_color,
196dac1997-02-22Per Hedbor  "tr":tag_fix_color, "td":tag_fix_color,
5f0d911997-02-27Per Hedbor  "layer":tag_fix_color, "ilayer":tag_fix_color,
196dac1997-02-22Per Hedbor  "/td":pop_color, "/tr":pop_color, "/font":pop_color, "/body":pop_color, "/table":pop_color,
5f0d911997-02-27Per Hedbor  "/layer":pop_color, "/ilayer":pop_color,
bfc7071997-01-13Per Hedbor  ]);
d47cbf1996-12-02Per Hedbor } mapping query_container_callers() { return ([ "anfang":tag_graphicstext, "gh":tag_graphicstext,
bfc7071997-01-13Per Hedbor  "gh1":tag_graphicstext, "gh2":tag_graphicstext, "gh3":tag_graphicstext, "gh4":tag_graphicstext, "gh5":tag_graphicstext, "gh6":tag_graphicstext, "gh7":tag_graphicstext, "gh8":tag_graphicstext, "gh9":tag_graphicstext, "gh10":tag_graphicstext, "gh11":tag_graphicstext,"gh12":tag_graphicstext,
d47cbf1996-12-02Per Hedbor  "gtext":tag_graphicstext, ]); }