这里是问题。 我的景象是,根据装满的景象,每次都会出现不同的情况。
我愿扩大这一形象,使之适合文件内,该文件有800个顶峰。 因此,如果图像的高度为2560px,我需要找到所需的PERCENTAGE,使该钢材的高度降至750,从而在网页上安装。
I m stuck trying to find the formula for this simple enough problem.
我的守则如下:
iTextSharp.text.Image pic = iTextSharp.text.Image.GetInstance(
image, System.Drawing.Imaging.ImageFormat.Jpeg);
if (pic.Height > pic.Width)
{
//Maximum height is 800 pixels.
pic.Height formula goes here....
}
else
{
//Maximum width is 600 pixels.
pic.Width formula goes here....
}