Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xuggler を使用してビデオ ファイルのサムネイルを取得しています。画像は xuggler によって 640*480 のサイズで作成されていますが、サイズを 200*200 または 2--*2-- にしたいのですが、可能であれば教えてください。私はそれを行う方法。
次のようにJavaでサイズを変更できます。
BufferedImage resizedImage = new BufferedImage(IMG_WIDTH, IMG_HEIGHT, type); Graphics2D g = resizedImage.createGraphics(); g.drawImage(originalImage, 0, 0, IMG_WIDTH, IMG_HEIGHT, null); g.dispose()