OPNsense Forum

English Forums => Tutorials and FAQs => Topic started by: LGDL on August 26, 2025, 09:19:33 PM

Title: What is the recommended format and size for the picture widget ?
Post by: LGDL on August 26, 2025, 09:19:33 PM
I can't seem to find any details about the Picture widget. What format & size work best ?
Title: Re: What is the recommended format and size for the picture widget ?
Post by: vpx on August 27, 2025, 01:46:31 PM
There is no documentation but it's in the source code:

        if ($_FILES['pictfile']['size'] > (10 * 1024 * 1024)) {
            $input_errors[] = gettext("The image file is too large. Please upload something smaller than 10MB.");

So file size is limited to 10 MB. I don't see a pixel limit.

I don't know if transparency is supported but I would suggest .png or .gif format for logos and .jpg for photos.