星火微课系统客户端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
耀 87b3df058e zhao:增加点阵打印依赖文件 4 年前
..
default_duo_header.inc zhao:增加点阵打印依赖文件 4 年前
default_duo_tail.inc zhao:增加点阵打印依赖文件 4 年前
default_multi_header.inc zhao:增加点阵打印依赖文件 4 年前
default_multi_tail.inc zhao:增加点阵打印依赖文件 4 年前
default_single_header.inc zhao:增加点阵打印依赖文件 4 年前
default_single_tail.inc zhao:增加点阵打印依赖文件 4 年前
readme.txt zhao:增加点阵打印依赖文件 4 年前
rect_single_header.inc zhao:增加点阵打印依赖文件 4 年前
rect_single_tail.inc zhao:增加点阵打印依赖文件 4 年前

readme.txt

Copyright (c) 2007 Anoto AB and its licensors. All rights reserved.

The filename convention is as follows
-------------------------------------

(dotalgorithm name)_single_[header|tail].inc is for -d1
(dotalgorithm name)_multi_[header|tail].inc is for -d2 and -d3
(dotalgorithm name)_duo_[header|tail].inc is for -pbw (black and white color separation)

header is first part of dotalgorithm definition up to the by GAPAT defined XUID of the font
tail is the rest

different file sets are trigged by setting the environment variable --dotinclude.
If no --dotinclude is set treat it as if dotinclude=default

example: --dotalgorithm myAlgo will use

myAlgo_single.inc if default -d1 is used

Note that its very tricky to write a proper _multi algorithm.

Basics of the encoding for _multi (d2/d3) is:

Each single dot can be coded as one letter
Each 2 dot combination can be coded as one letter
Each 3 dot combination can be coded as one letter
"Space" can be coded in binary intervals i.e. base glyps is a=" ", b=" ", c=" ", d=" "
i.e. " " can be coded as (ab)
and dont forget about the null pattern

difference between 2 and 3 dot algorithm is only the USE of the glyphs. The definition file is the same

This is the documentation there is.