<a href="mailto:users@racket-lang.org"></a>Hi,<br><br> I ran the following example, and I found "scribble" used ~500M memory.<br> I happened to have a document which has ~100 images. My server with 16G memory cannot afford it. <br>
<br> a.jpg is 40kbytes, 480x500.<br><br>Best Regards<br>WCY<br><br>----------------- example as below in BASH ---------------------<br><br>(<br>cat <<EOF<br>#lang scribble/manual<br>@(require scribble/eval)<br><br>
@title["hello world"] <br>EOF<br>N=30<br>for((i=0;i<N;i++));do<br> cat <<EOF<br>@(examples <br> (require racket/snip)<br> (require racket/class)<br> (make-object image-snip% "a.jpg"))<br>
<br>EOF<br>done<br>) > x.scrbl<br>scribble x.scrbl <br>