Why your output is always PNG — and why that's the right choice
When you add rounded corners to an image, the four corner regions become transparent. That transparency has to live somewhere in the file format. PNG supports alpha channel transparency natively — every pixel can have an opacity value from fully transparent to fully opaque. JPEG does not support transparency at all; if you save a rounded-corner image as a JPEG, the transparent corners will be filled with a solid color (usually white or black), completely defeating the purpose of rounding the corners in the first place.
This is why this tool always outputs PNG regardless of whether your input was a JPG, PNG, or WebP. It is not an arbitrary restriction — it is the technically correct behavior. The output file is larger than a JPEG would be, because PNG is a lossless format, but the transparency is preserved exactly. If the PNG file size is a concern after rounding, run it through the Bulk Image Compressor to reduce it — all processing stays local.
The one exception: if you choose a solid background color instead of transparent (using the Background color picker), the corner regions will be filled with your chosen color rather than being transparent. In this case, a JPEG output would technically be possible, but the tool still outputs PNG to maintain lossless quality of the image content itself.
