OCamlでテキストサイズを設定する方法を考えていました。Graphics.set_text_size
私は、どちらが私が推測する取引を行うべきかを試しました。
しかし、何か
を入れてset_text_size 200
も変えなくても…</p>set_text_size 20
おそらく今のところ、 Graphics.set_text_size はまだ実装されていません。
ただし、次を使用できます。
set_font "-misc-dejavu sans mono-bold-r-normal--256-0-0-0-m-0-iso8859-1";
これはフォントサイズを設定できます
Graphics.set_text_size
まだ実装されていません。
https://github.com/ocaml/ocaml/blob/trunk/otherlibs/graph/graphics.ml#L165
https://github.com/ocaml/ocaml/blob/trunk/otherlibs/graph/text.c#L36
https://github.com/ocaml/ocaml/blob/trunk/otherlibs/win32graph/draw.c#L350