pxw and pxh are used with the "fix" option
to define the size of the fixed pixel
function OnStart()
{
lay = app.CreateLayout("Linear", "VCenter,FillXY")
img1 = app.AddImage(lay, null, 0.8, 0.3, "fix", 10, 10)
img2 = app.AddImage(lay, null, 0.8, 0.3, "fix", 20, 20)
app.AddLayout(lay)
img1.DrawLine(0, 0.5, 1, 0.5)
img2.DrawLine(0, 0.5, 1, 0.5)
} ////