Skip to main content
Interwork Corporation
IDR Solutions Product Support Portal
モードの切替 ダーク/ライト/自動 モードの切替 ダーク/ライト/自動 モードの切替 ダーク/ライト/自動

Java AVIF Writer

JDeli Java画像ライブラリには、JavaでAVIFファイルを書き込むためのAVIF Writerが含まれています。AVIFエンコーダーは100% Javaで記述されており、依存関係なしでAVIFサポートを提供します。

主な情報:

  • 100% Javaソリューション。DLLやネイティブコードへの依存がなく、簡単に使用できます

クイックスタート、またはImageIOを使用した既存コードでの置き換え:

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 を使用すると、特定のオプションを設定できます。

画像に対してさまざまな画像処理操作を実行できます。詳細なドキュメントはこちら でご確認いただけます。