I think there is a bug in the exporter, because the canvas has a color (which is white and _not_ transparent).
Normally you can set the color of the of the canvas (view canvas color: Color purple), but the default exporter (I assume you are exporting it via GT-inspector) is ignoring it.
There is however second exporter which you can use
~~~~~~~~~~~~~~~~~~~~~
|v fileName|
v := RTView new.
v canvas color: Color purple.
v addAll: (RTEllipse new color: Color black; size: 30; elementsOn: (1 to: 10)).
RTCircleLayout on: v elements.
fileName := UITheme builder��
fileSave: 'Enter the PNG file name'
extensions: #('png')
path: nil.
"fileName := '/tmp/test.png' asFileReference."
fileName notNil ifTrue: [��
(DCTRCanvasExporter canvas: v canvas)
format: #png;
fileName: fileName fullName;
export ].
v
~~~~~~~~~~~~~~~~~~~~~~~
You could also add the export code (with minor modification) to GLMRoassal2Presentation>>defaultActions but there seems to be some kind of bug that clears the content of the playground when executed from GLM, which is a big wtf, but maybe that's just my mixed up configuration.
Peter