我在工作中使用Itextsharp。我想在该图像的中心旋转图像。 我能够以类似的策略显示文本,但是我遇到了一些图像问题
iTextSharp.text.Image image = iTextSharp.text.Image.GetInstance(imagePath);
//I have taken this line out and used the matrix scale
// function, with no luck
image.ScaleAbsolute(entry.width, entry.height);
image.RotationDegrees = -entry.rotation;
System.Drawing.Drawing2D.Matrix matrix = new System.Drawing.Drawing2D.Matrix(1, 0, 0, 1, entry.left, entry.bottom);
matrix.RotateAt(-entry.rotation, new PointF(entry.width / 2, entry.height / 2));
contentByte.AddImage(image, matrix);
此方法无法显示图像。