I have a Jpeg file which is an 8mb of size. Using the code below, the new jpg file generated by aspose Image decrease it file size significantly (1mb) and as far I understand, I would assume that the file size should remain the same since I don’t do any image processing with the file. Is there any compression made by aspose when saving? Or is there a way to preserve its original file size?
public void SaveFile(string orignalFilePath)
{
using (var image = Image.Load(orignalFilePath))
{
image.Save(“NewJpg.jpg”);
}
}