你好,护照识别中,别人发给的照片一般都是歪着一些,我想把照片弄正,例如
用//旋转5度后
//RotateCommand command = new RotateCommand(5 * 100, RotateCommandFlags.Resize, new RasterColor(255, 255, 255));
RotateCommand command = new RotateCommand(5 * 100, RotateCommandFlags.Bicubic, RasterColor.Black);
图片会出现白边或者黑边,如。可以实现旋转后没有边,或者可以用什么命令把图片矫正吗?
|