After taking a screen-shot you can't resize the window.
PHP Code:
//#CLIENTSIDE
function onCreated() {
takeScreenshot();
}
function takeScreenshot() {
temp.filename = int(random(1000000,9999999)) @ ".png";
temp.center = {
player.x + 3 - (screenwidth / 32),
player.y + 3 - (screenheight / 32)
};
makescreenshot2(temp.filename, 0x3f, temp.center[0],temp.center[1],player.z,screenwidth,screenheight);
}