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