<a href="mailto:users@racket-lang.org"></a>Hi,<br><br>    I ran the following example, and I found &quot;scribble&quot; 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 &lt;&lt;EOF<br>#lang scribble/manual<br>@(require scribble/eval)<br><br>
@title[&quot;hello world&quot;]    <br>EOF<br>N=30<br>for((i=0;i&lt;N;i++));do<br>    cat &lt;&lt;EOF<br>@(examples <br>       (require racket/snip)<br>         (require racket/class)<br>       (make-object image-snip% &quot;a.jpg&quot;))<br>
<br>EOF<br>done<br>) &gt; x.scrbl<br>scribble x.scrbl <br>