a=imread('1.png');
b=imrotate(a,30,'nearest');
c=imrotate(a,30,'bilinear');
d=imrotate(a,30,'bicubic');
subplot(2,2,1);imshow(a);
subplot(2,2,2);imshow(b);
subplot(2,2,3);imshow(c);
subplot(2,2,4);imshow(d);
a=imread('1.png');
b=imrotate(a,30,'nearest');
c=imrotate(a,30,'bilinear');
d=imrotate(a,30,'bicubic');
subplot(2,2,1);imshow(a);
subplot(2,2,2);imshow(b);
subplot(2,2,3);imshow(c);
subplot(2,2,4);imshow(d);