Sweet, I keep meaning to ask you how to create a layer.
I put a note in the Layers doc page linking here.

Exif Information on picture
I'm doing a photography course now and it is really useful to know which settings were used for each photo you made. I was baffled to find that there was no suitable (cheap) software out there that could do that. Luckily RW Paint has Exif information and it can be scripted, so I made the following script:
// shows Exif information
if (Document.EXIF != null && Document.EXIF.Exists)
{
DrawTool.TEXT(Document, "Arial", 40, 100, 100, "Exposure Time ")
DrawTool.TEXT(Document, "Arial", 40, 400, 100, Document.EXIF.GetValueByName("ExposureTime"))
DrawTool.TEXT(Document, "Arial", 40, 100, 145, "F-Number ")
DrawTool.TEXT(Document, "Arial", 40, 400, 145, Document.EXIF.GetValueByName("FNumber"))
DrawTool.TEXT(Document, "Arial", 40, 100, 190, "ISO Value ")
DrawTool.TEXT(Document, "Arial", 40, 400, 190, Document.EXIF.GetValueByName("ISOSpeedRatings"))
DrawTool.TEXT(Document, "Arial", 40, 100, 235, "Date & Time ")
DrawTool.TEXT(Document, "Arial", 40, 400, 235, Document.EXIF.GetValueByName("DateTimeOriginal"))
DrawTool.TEXT(Document, "Arial", 40, 100, 280, "Mode ")
DrawTool.TEXT(Document, "Arial", 40, 400, 280, Document.EXIF.GetValueByName("ExposureProgram"));
}
This works fine, but I really would like the script to create a seperate layer with a white background the size of my text. So I can move the text to a suitable position on the photo. Can anyone tell me how to do that?