最新の Java ライブラリを使用すると、Java 開発者は数行のコードで JPG を GIF 画像形式に変換できます。 JPG 画像変換エンジンは、元のグラフィック コンテンツを分析し、結合された画像を GIF 形式にエクスポートします。
Java を使用して、最大限の柔軟性と速度で JPG を GIF 画像形式に変換します。オンラインのライブデモを実行し、ブラウザーで直接最高の GIF 画質を確認してください。 JPG Conversion API は、多数の便利なオプションをサポートしています。
複数の JPG を GIF に変換するには、すべての低レベルの詳細を処理する Java ライブラリを使用するだけです。
複数の JPG イメージを変換し、結果を 1 つの GIF イメージとして保存します。 Java でコードを開発すると、画像形式の変換は思ったよりも簡単になります。画像ファイルを反復処理して GIF に結合する Java の例を参照してください。
// Repository path: https://releases.aspose.com/java/repo/
// Maven, where 'ver' - Aspose.Words version number, for example, 24.4.
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>ver</version>
<classifier>jdk17</classifier>
</dependency>
コピー
// Repository path: https://releases.aspose.com/java/repo/
// Gradle, where 'ver' - Aspose.Words version number, for example, 24.4.
compile(group: 'com.aspose', name: 'aspose-words', version: 'ver', classifier: 'jdk17')
コピー
// Repository path: https://releases.aspose.com/java/repo/
// Ivy, where 'ver' - Aspose.Words version number, for example, 24.4.
<dependency org="com.aspose" name="aspose-words" rev="ver">
<artifact name="aspose-words" m:classifier="jdk17" ext="jar"/>
</dependency>
コピー
// Repository path: https://releases.aspose.com/java/repo/
// Sbt, where 'ver' - Aspose.Words version number, for example, 24.4.
libraryDependencies += "com.aspose" % "aspose-words" % "ver"
コピー
import com.aspose.words.*;
List<String> fileNames = Arrays.asList("Input1.jpg", "Input2.jpg");
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
List<Shape> shapes = fileNames.stream().map(fileName -> {
try {
return builder.insertImage(fileName);
} catch (Exception e) {
e.printStackTrace();
}
return null;
}).collect(Collectors.toList());
// 最大の幅と高さを計算し、ページ設定を更新して、画像のサイズに合うようにドキュメントをトリミングします。
PageSetup pageSetup = builder.getPageSetup();
pageSetup.setPageWidth(shapes.stream().mapToDouble(shape -> shape.getWidth()).max().getAsDouble());
pageSetup.setPageHeight(shapes.stream().mapToDouble(shape -> shape.getHeight()).sum());
pageSetup.setTopMargin(0);
pageSetup.setLeftMargin(0);
pageSetup.setBottomMargin(0);
pageSetup.setRightMargin(0);
doc.save("Output.gif");
Java パッケージはMavenリポジトリでホストします。 'Aspose.Words for Java' は、バイトコードを含む一般的な JAR Java開発者環境にインストールする方法のステップバイステップの説明に従ってください。
Java SE 7 Java バージョンがサポートされています。 JRE を使用する必要がある場合に備えて Java SE 6 用の個別のパッケージも提供しています。
私たちの Java Microsoft Windows 、Linux、macOS、Android、iOS JVM 実装されているすべてのオペレーティングシステムで実行されます。
JogAmp JOGL 、 Harfbuzz フォントエンジン、 Java Advanced Imaging JAI などのオプションのパッケージ依存関係については、製品ドキュメントを参照してください。
JPGを他の多くのファイル形式にマージできます。