|
Spring-MVCの散歩道 > 応用の森(Java編) > 動画ファイルから静止画を切り出すサンプル
|
<!DOCTYPE html>
<div xmlns:th="http://www.thymeleaf.org" th:object="${FormVideoSlice}">
<!-- FormBean取得 -->
<div th:each="img:*{base64Jpg}" >
<img th:src="${img}" width="300"/>
</div>
</div>
|