image_surface_initial_properties - Retrieve a table describing the
initial storage state for the specified object.
proptbl
image_surface_initial_properties( vid )
This function aliases image_surface_initial and is kept around for legacy
reasons. Please see image_surface_initial instead.
function image_surface_initial_properties0()
a = load_image("test.png");
resize_image(a, 32, 32);
iprop = image_surface_initial_properties(a);
cprop = image_surface_properties(a);
print(string.format("initial_w: %d, inital_h: %d, current_w: %d, current_h: %d",
iprop.width, iprop.height, cprop.width, cprop.height));
end
image_surface_resolve(3) image_surface_properties(3)