I am trying to work on a small webbased Image editor with .NET . I am having issue with JPEG image resize.As I understand there is no way to manipulate JPEG without loosing some quality and saw this as only way to do it . Resizing an image in asp.net without losing the image quality . In this sample target image is saved as a png .
So What I want to do is
1. When user uploads image save it as PNG
2. Manipulate it like resize rotate etc
3. Save it as JPEG
If I save that png as a jpeg will that loose quality as well ? Or should it be fine as its just saving it with other format and not really manipulating it.
Thanks.