How would that help?
The following works fine for me:
box 10, 10, 230, 230
get image 1, 0, 0, 236, 236, 1
set cursor 256, 256
print image width(1)
save image "testSave.png", 1
wait key
There is a problem though with image scaling and the save image command in some cases so perhaps we need to see more code.
Edit My guess is that
mullinator has stumbled into the DBPro image scaling bug. The following code reproduces the symptoms reported:
box 10, 10, 230, 230
get image 1, 0, 0, 236, 236 ` notice the absence of the texture flag here
set cursor 256, 256
print image width(1) ` the value reported here is not the same as the saved version
save image "testSave.png", 1, 1
wait key
Things work as expected if you use my first snippet. This particular bug was included in the "Most annoying bugs" collection.