Java AVIF Writer
JDeli Java画像ライブラリには、JavaでAVIFファイルを書き込むためのAVIF Writerが含まれています。AVIFエンコーダーは100% Javaで記述されており、依存関係なしでAVIFサポートを提供します。
- 100% Javaソリューション。DLLやネイティブコードへの依存がなく、簡単に使用できます
JDeli.write(myBufferedImage, "avif", outputStreamOrFile);
または
byte[] outputData = JDeli.write(myBufferedImage, "avif");
JDeli.write(myBufferedImage, OutputFormat.AVIF, outputStreamOrFile)
OutputFormat を使用すると、サポートされている任意の画像フォーマットを設定できます
final AvifEncoderOptions options = new AvifEncoderOptions();
//write out
JDeli.write(myBufferedImage, options, outputStreamOrFile);
AvifEncoderOptions を使用すると、特定のオプションを設定できます。
画像に対してさまざまな画像処理操作を実行できます。詳細なドキュメントはこちら でご確認いただけます。
