Я использую этот код, который я написал, чтобы изменить размеры моих изображений, чтобы они соответствовали моему PictureBox:
//Creates a new Bitmap as the size of the window
Bitmap bmp = new Bitmap(this.Width, this.Height);
//Creates a new graphics to handle the image that is coming from the stream
Graphics g = Graphics.FromImage((Image)bmp);
g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
//Resizes the image from the stream to fit our windows
g.DrawImage(Properties.Resources.loading, 0, 0, this.Width, this.Height);
this.Image = (Image)bmp;
Работает идеально!
Единственная проблема - это когда я пытаюсь изменить размер GIF.... он изменяет размеры, но я теряю анимацию ...
Есть ли какое-то решение для этого?