回复 7楼longgun119的帖子
您好,如果需要旋转的话,只能针对图片,Page是不能旋转的。
在这个Demo中,使用的是DocumentViewer控件,这个控件中只能显示文档,无法显示Image。
如果需要旋转的话,请示用ImageViewer,然后使用下面的代码:
var page = this._documentViewer.Document.Pages[this._documentViewer.CurrentPageNumber];
RotateCommand command = new RotateCommand();
command.Angle = 90 * 100;
command.FillColor = new RasterColor(255, 255, 255);
command.Flags = RotateCommandFlags.Bicubic;
command.Run(page.GetImage()); |