private ImageCodecInfo GetEncoder(ImageFormat format) { ImageCodecInfo[] codecs = ImageCodecInfo.GetImageDecoders(); foreach (ImageCodecInfo codec in codecs) { if (codec.FormatID == format.Guid) { return codec; } } return null; } i used the above coding but not the image size reduced and quality also reduced please help me thanks in advance By Meganathan M
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)