- Регистрация
- 01.02.2012
- Сообщения
- 4 811
- Благодарностей
- 1 187
- Баллы
- 113
C#:
// Get image path
string imagePath = project.Variables["imagePath"].Value;
// Create image file
Bitmap tempBmp = new Bitmap(imagePath);
Bitmap bmp = new Bitmap(tempBmp, 1280, 720);
// Save new image
bmp.Save(project.Variables["finalImagePath"].Value, System.Drawing.Imaging.ImageFormat.Jpeg);
bmp.Dispose();