แปลง PostScript เป็น GIF ใน Java

การแปลงไฟล์ PostScript เป็นภาพคุณภาพสูงไม่ใช่เรื่องยากอีกต่อไป Aspose.Page มี API ระดับสูงสำหรับหลายภาษาโปรแกรมในการแปลงและจัดการไฟล์ PS โปรแกรมmatically นอกจากนี้ยังสนับสนุนเครื่องมือ ออนไลน์ สำหรับการแปลงไฟล์ PS ไปยังฟอร์แมตไฟล์ที่เป็นที่นิยมอื่น ๆ อย่างไรก็ตาม คู่มือนี้เหมาะสำหรับโปรแกรมเมอร์ Java ที่กำลังมองหา PostScript Java library เพื่อ แปลง PostScript เป็น GIF โปรแกรมmatically คุณสามารถเปิดภาพ GIF บนระบบปฏิบัติการที่เป็นที่นิยมแทบทั้งหมดได้อย่างง่ายดายโดยไม่ต้องติดตั้งซอฟต์แวร์ ดังนั้น มาลองเริ่มต้นกันเลย

เราจะครอบคลุมส่วนต่อไปนี้ในโพสต์บล็อกนี้:

  1. การติดตั้ง PostScript Java Library
  2. แปลง PostScript เป็น GIF ใน Java - ตัวอย่างโค้ด
  3. PS File Converter - เครื่องมือออนไลน์

การติดตั้ง PostScript Java Library

ในการติดตั้ง Aspose.Page for Java คุณสามารถ ดาวน์โหลด ไฟล์ JAR หรือใช้การตั้งค่า Maven ดังต่อไปนี้:

 <repositories>
     <repository>
         <id>AsposeJavaAPI</id>
         <name>Aspose Java API</name>
         <url>https://releases.aspose.com/java/repo/</url>
     </repository>
</repositories>
 <dependencies>
    <dependency>
        <groupId>com.aspose</groupId>
        <artifactId>aspose-page</artifactId>
        <version>23.12</version>
    </dependency>
</dependencies>

นอกจากนี้ คุณสามารถเยี่ยมชม คู่มือนี้ เพื่อดูรายละเอียดทั้งหมด

PostScript Java Library

แปลง PostScript เป็น GIF ใน Java - ตัวอย่างโค้ด

ตอนนี้คุณสามารถพัฒนาเครื่องมือ PS เป็น GIF สำหรับซอฟต์แวร์ธุรกิจได้ ดังนั้น โปรดทำตามขั้นตอนด้านล่าง:

  • ตั้งค่า ImageFormat เป็น GIF และโหลดไฟล์ PostScript ต้นฉบับ
  • เริ่มต้นอ็อบเจ็กต์ของคลาส PsDocument ด้วยกระแสข้อมูล PostScript
  • ตั้งค่าค่าของ suppressErrors หากคุณต้องการแปลงไฟล์ PostScript แม้จะมีข้อผิดพลาดเล็กน้อย
  • สร้างอ็อบเจ็กต์ใหม่ของคลาส ImageSaveOptions โดยใช้พารามิเตอร์ suppressErrors
  • สร้างอินสแตนซ์ของคลาส ImageDevice
  • เรียกใช้เมธอด save เพื่อบันทึกไฟล์ GIF ลงในดิสก์
  • เรียกใช้เมธอด getImagesBytes เพื่อรับภาพที่ได้ในรูปแบบไบต์
  • สร้างกระแสข้อมูลผลลัพธ์โดยการเริ่มต้นอินสแตนซ์ของคลาส FileOutputStream ด้วยเส้นทางภาพผลลัพธ์

ตัวอย่างโค้ดต่อไปนี้แสดงให้เห็นว่า แปลง PostScript เป็น GIF ใน Java โปรแกรมmatically:

package com.example;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import com.aspose.eps.PsDocument;
import com.aspose.eps.device.ImageDevice;
import com.aspose.eps.device.ImageSaveOptions;
public class Main {
// High Code Java API to Convert PostScript to GIF
public static void main(String[] args) throws Exception {
// Set the ImageFormat to GIF.
com.aspose.page.ImageFormat imageFormat = com.aspose.page.ImageFormat.GIF;
// Load the source PostScript file.
FileInputStream psStream = new FileInputStream("/input.ps");
// Initialize an object of the PsDocument class with the PostScript input stream.
PsDocument document = new PsDocument(psStream);
// Set the value of suppressErrors if you want to convert the Postscript file despite minor errors.
boolean suppressErrors = true;
// Instantiate a new object of ImageSaveOptions class with suppressErrors parameter.
ImageSaveOptions options = new ImageSaveOptions(suppressErrors);
// Create an instance of the ImageDevice class.
ImageDevice device = new ImageDevice();
try {
// Call the save method to save the GIF file on the disk.
document.save(device, options);
} finally {
psStream.close();
}
// Invoke the getImagesBytes method to get the resulting images in bytes.
byte[][] imagesBytes = device.getImagesBytes();
int i = 0;
for (byte [] imageBytes : imagesBytes) {
String imagePath = "/PSToGIF" + i + "." + imageFormat.toString().toLowerCase();
// Create output stream by initializing an instance of the FileOutputStream class with the output image path.
FileOutputStream fs = new FileOutputStream(imagePath);
try {
fs.write(imageBytes, 0, imageBytes.length);
} catch (IOException ex) {
System.out.println(ex.getMessage());
} finally {
fs.close();
}
i++;
}
//Review errors
if (suppressErrors) {
for (Exception ex : options.getExceptions()) {
System.out.println(ex.getMessage());
}
}
}
}

คุณสามารถดูผลลัพธ์ในภาพด้านล่าง:

GIF Maker From Images

PS File Converter - เครื่องมือออนไลน์

เครื่องมือ ออนไลน์ นี้ให้การแปลง PS ที่ครอบคลุมไปยังฟอร์แมตไฟล์อื่น ๆ ที่ใช้กันอย่างแพร่หลาย มันถูกพัฒนาโดย Aspose.Page และเป็นเครื่องมือฟรี นอกจากนี้ยังรักษาคุณภาพของข้อมูลข้อความและกราฟิกขณะแปลงไปยังฟอร์แมตไฟล์อื่น ๆ เราขอแนะนำให้คุณใช้ PS file converter นี้เพื่อเพิ่มประสิทธิภาพการทำงาน

PS File Converter

GIF Maker From Images - รับใบอนุญาตฟรี

ตอนนี้คุณสามารถขอใบอนุญาตชั่วคราวฟรีเพื่อทดลองใช้ PostScript Java library ได้โดยไม่มีข้อจำกัดในการประเมินผล

สรุป

เพื่อสรุป เราได้พูดคุยเกี่ยวกับวิธีการ แปลง PostScript เป็น GIF ใน Java โปรแกรมmatically นอกจากนี้ เรายังได้ดำเนินการฟังก์ชันการทำงานเพื่อพัฒนา PS file converter ที่มีประสิทธิภาพ คุณสามารถสำรวจ PostScript Java library นี้เพิ่มเติมได้โดยการเยี่ยมชม เอกสาร, GitHub repo, และ API references สุดท้าย aspose.com จะยังคงเผยแพร่โพสต์บล็อก ดังนั้น โปรดติดตามข่าวสาร คุณสามารถแชร์คำถามหรือข้อสงสัยของคุณใน ฟอรัม ของเรา

ดูเพิ่มเติม