Locale

Language
English
English
English
French
German
German
Italian
Korean
Spanish
Catalan
Dutch
Portuguese
Portuguese
Arabic
Arabic
Bulgarian
Czech
Greek
Persian
Finnish
Danish
Hindi
Indonesian
Croatian
Japanese
Hungarian
Hebrew
Georgian
Central Kurdish
Khmer
Kyrgyz
Kazakh
Lithuanian
Latvian
Malay
Norwegian
Polish
Romanian
Russian
Slovak
Slovenian
Serbian
Swedish
Thai
Turkish
Ukrainian
Vietnamese
Chinese
Chinese

Input Style

Free Themes

Built-in component themes created by the PrimeFaces Theme Designer.

Saga Saga
Vela Vela
Arya Arya

Legacy Free Themes

Luna Amber Luna Amber
Luna Blue Luna Blue
Luna Green Luna Green
Luna Pink Luna Pink
Nova Nova
Nova Nova Alt
Nova Nova Accent

PhotoCam

It is possible to set a specific device, like a USB camera or a different onboard camera, to retrieve images. Note that, in mobile devices, usually "user" stands for the front camera and "environment" stands for the rear camera.


<div class="card">
    <h:form>
        <h:panelGrid columns="3" cellpadding="5">
            <p:outputPanel id="photoCamPnl">
                <p:photoCam widgetVar="pc" listener="#{photoCamView.oncapture}" update="photo"/>
                <select onchange="reload()" class="photoCamDevices">
                    <option value="">Select device</option>
                    <option value="user">"user" device</option>
                    <option value="environment">"environment" device</option>
                </select>
            </p:outputPanel>
            <p:commandButton type="button" value="Capture" onclick="PF('pc').capture()"/>
            <p:outputPanel id="photo">
                <p:graphicImage name="demo/images/photocam/#{photoCamView.filename}.jpeg"
                                rendered="#{not empty photoCamView.filename}"/>
            </p:outputPanel>
        </h:panelGrid>
    </h:form>
</div>

<script>

    //<![CDATA[

    function reload() {
        var cam = PF('pc');
        var deviceSelector = document.querySelector("select.photoCamDevices");
        var device = deviceSelector.value;
        cam.device = device;
        cam.reload();
    }

    function populateDeviceMenu() {
        var photoCam = PF('pc');
        var deviceSelector = document.querySelector("select");
        var availableDevices = photoCam.getAvailableDevices();
        if (availableDevices) {
            availableDevices.then(devices => devices.forEach(device => {
                    var option = document.createElement("option");
                    option.text = device.label;
                    option.value = device.deviceId;
                    deviceSelector.appendChild(option);
                })
            );
        } else {
            console.log("no devices available");
        }
    }

    populateDeviceMenu();

    //]]>

</script>