PNG 画像を SVG 形式に変換する必要がありますか? Aspose.Words for Java Java コードを SVG するだけで PNG に簡単に変換できます。
現代の画像処理 Java APIは、作成 SVG から PNG 高速と一緒に写真。 PNG から SVG 画像変換の品質をブラウザで直接テストします。強力な Java ライブラリを使用すると、 PNG 画像を多くの一般的なグラフィック形式に変換できます。
次の例では、変換する方法を示し PNG へ SVG に Java 。
簡単な手順に従って、 PNG を SVG 形式に変換します。読む PNG その後、単純に名前を付けて保存ローカルドライブからの画像、 SVG によって必要な画像フォーマットを指定して、 SVG 拡張子。 PNG 読み取りと SVG 書き込みの両方で、完全修飾ファイル名を使用できます。出力される SVG コンテンツは、元の PNG イメージと同じになります。
// 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.*;
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.insertImage("Input.png");
shape.getShapeRenderer().save("Output.svg", new ImageSaveOptions(SaveFormat.SVG));
import com.aspose.words.*;
Document doc = new Document("Input.png");
doc.save("Output.svg");
import com.aspose.words.*;
Document doc = new Document("Input.png");
for (int page = 0; page < doc.getPageCount(); page++)
{
Document extractedPage = doc.extractPages(page, 1);
extractedPage.save(String.format("Output_%d.svg", page + 1));
}
import com.aspose.words.*;
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertImage("Input.png");
doc.save("Output.svg");
import com.aspose.words.*;
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.insertImage("Input.png");
shape.getShapeRenderer().save("Output.svg", new ImageSaveOptions(SaveFormat.svg));
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 などのオプションのパッケージ依存関係については、製品ドキュメントを参照してください。
PNGは他の多くのファイル形式に変換できます。