You can read in external images into a Picture Box(), and then place that into a Journal.
Names Default To Here( 1 );
pb = Picture Box( Open( "$SAMPLE_IMAGES/tile.jpg", jpg ) );
nw = New Window( "jj", <<journal );
nw << append( pb );
You can also adjust the size
Names Default To Here( 1 );
pb = Picture Box( Open( "$SAMPLE_IMAGES/tile.jpg", jpg ) );
pb << set width(800);
pb << set height(800);
nw = New Window( "jj", <<journal );
nw << append( pb );
In the construction of a Journal, you can organize it's contents using the various JSL functions and objects to do location, spacing, page breaks, etc.
See the Scripting Guide
Help==>Books==>Scripting Guide
and also the Scripting Index
Help==>Scripting Index
Jim