skip to Main Content

Asp.net – Compress the image without sacrificing its quality c#?

How I can compress image without sacrificing its quality but i need to reduce the size whenever i copied compressed image to the another folder..? string compressedFolderPath = @"C:UsersAdministratorDesktopVR TasksCompressiMG"; string compressedImagePath = Path.Combine(compressedFolderPath, DateTime.Now.ToString("yyyyMMddhhmmssfff") + ".jpg"); using (Image originalImage…

VIEW QUESTION
Back To Top
Search