Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
app.preferences.rulerUnits = Units.MM; my_width = app.activeDocument.width; my_height = app.activeDocument.height; function isInteger(argument) {return argument == ~~argument;} if (!isInteger(my_width)) {my_width = Math.floor(my_width);} if (!isInteger(my_height)) {my_height = Math.floor(my_height);} app.activeDocument.resizeCanvas (my_width, my_height, AnchorPosition.TOPLEFT);