I\'m currently writing a program that requires a preview of a live display, but the preview, of course, is scaled down. However, when I scale the PictureBox down, t
PictureBox
Maybe you should do a decimal division and not integer division:
double h = Height / 4.0; double ratio = 4 / 3.0;
If C# Math was off many things around the world would be off as well.