JPEG
JPG
PDF
XML
PLT
JPEG
Chuyển đổi PLT sang JPEG qua Java
Thư viện Java gốc để đọc, ghi và xuất PLT sang JPEG mà không cần Adobe.
Cách chuyển đổi PLT sang JPEG bằng Java
Để hiển thị PLT thành JPEG, chúng tôi sẽ sử dụng API Aspose.CAD for Java , đây là một API giàu tính năng, mạnh mẽ và dễ dàng để sử dụng API chuyển đổi cho nền tảng Java. Bạn có thể tải xuống phiên bản mới nhất trực tiếp từ Maven và cài đặt nó trong dự án dựa trên Maven của bạn bằng cách thêm các cấu hình sau vào pom.xml.
Kho
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>https://repository.aspose.com/repo/</url>
</repository>
Sự phụ thuộc
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-cad</artifactId>
<version>version of aspose-cad API</version>
<classifier>jdk17</classifier>
</dependency>
Các bước chuyển đổi PLT sang JPEG qua Java
- Tải tệp PLT bằng phương thức Image.load
- Đặt một đối tượng của CadRasterizationOptions với chiều cao và chiều rộng của trang
- Tạo một thể hiện của lớp JpegOptions và đặt thuộc tính VectorRasterizationOptions của nó
- Gọi phương thức Image.save trong khi truyền đường dẫn và đối tượng tệp kết quả của JpegOptions
Yêu cầu chuyển đổi
- Microsoft Windows hoặc hệ điều hành tương thích với Môi trường thời gian chạy Java cho Ứng dụng JSP / JSF và Ứng dụng máy tính để bàn. - Tải phiên bản mới nhất của Aspose.CAD for Java trực tiếp từ Maven.Mã nguồn chuyển đổi Java từ PLT sang JPEG
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// load PLT in an instance of Image via its Load method | |
Image image = Image.load("template.plt"); | |
// create an instance of CadRasterizationOptions and set page height & width | |
CadRasterizationOptions rasterizationOptions = new CadRasterizationOptions(); | |
rasterizationOptions.setPageWidth(1600); | |
rasterizationOptions.setPageHeight(1600); | |
// create an instance of JpegOptions | |
TiffOptions options = new TiffOptions(); | |
// set the VectorRasterizationOptions property as CadRasterizationOptions | |
options.setVectorRasterizationOptions(rasterizationOptions); | |
// export PLT to JPEG | |
image.save("output.jpeg", options); |
Ứng dụng miễn phí để chuyển đổi PLT sang JPEG
Convert PLT to JPEG right now by visiting our Live Demos website.The live demo has the following benefits
No need to download Aspose API.
No need to write any code.
Just upload your PLT file, it will be converted instantly to JPEG.
You will get the download link.