- Регистрация
- 19.04.2011
- Сообщения
- 657
- Благодарностей
- 77
- Баллы
- 28
нашел на этом форуме сниппет по изменению картинки(не помню тему где нашел, по этому спрашиваю тут.. прошу админов сильно не пинать)
нашел давно, но как то не нужен был, положил в копилку, но сегодня понадобился.. и сразу возник вопрос:
как правильно настроить пути к картинкам?? делаю так:
выдает ошибку.
Код:
Func<int,int,string,Image> displayHex = delegate(int newWidth, int newHeight, string stPhotoPath)
{
Image imgPhoto = Image.FromFile(stPhotoPath);
int sourceWidth = imgPhoto.Width;
int sourceHeight = imgPhoto.Height;
//Consider vertical pics
if (sourceWidth < sourceHeight)
{
int buff = newWidth;
newWidth = newHeight;
newHeight = buff;
}
int sourceX = 0, sourceY = 0, destX = 0, destY = 0;
float nPercent = 0, nPercentW = 0, nPercentH = 0;
nPercentW = ((float)newWidth / (float)sourceWidth);
nPercentH = ((float)newHeight / (float)sourceHeight);
if (nPercentH < nPercentW)
{
nPercent = nPercentH;
destX = System.Convert.ToInt16((newWidth -
(sourceWidth * nPercent)) / 2);
}
else
{
nPercent = nPercentW;
destY = System.Convert.ToInt16((newHeight -
(sourceHeight * nPercent)) / 2);
}
int destWidth = (int)(sourceWidth * nPercent);
int destHeight = (int)(sourceHeight * nPercent);
Bitmap bmPhoto = new Bitmap(newWidth, newHeight,
PixelFormat.Format24bppRgb);
bmPhoto.SetResolution(imgPhoto.HorizontalResolution,
imgPhoto.VerticalResolution);
Graphics grPhoto = Graphics.FromImage(bmPhoto);
grPhoto.Clear(Color.Black);
grPhoto.InterpolationMode =
InterpolationMode.HighQualityBicubic;
grPhoto.DrawImage(imgPhoto,
new Rectangle(destX, destY, destWidth, destHeight),
new Rectangle(sourceX, sourceY, sourceWidth, sourceHeight),
GraphicsUnit.Pixel);
grPhoto.Dispose();
imgPhoto.Dispose();
return bmPhoto;
};
var x = displayHex(600, 500, "D:\\123.jpg");
x.Save("D:\\123_new.jpg");
Код:
var x = displayHex(600, 500, "D:\\123.jpg");
x.Save("D:\\123_new.jpg");
Код:
var x = displayHex(600, 500, "D:\\images\project.Variables["id"].Value.jpg");
x.Save("D:\\images1\project.Variables["id"].Value_new.jpg");