ใช้ API การแปลงเอกสารของเราเพื่อสร้างซอฟต์แวร์แบบพกพา แข็งแกร่ง และปลอดภัยใน Java นี่เป็นโซลูชันซอฟต์แวร์ระดับมืออาชีพที่สมบูรณ์แบบสำหรับการนำเข้าและส่งออก PNG, TXT และรูปแบบเอกสารอื่นๆ มากมายโดยใช้ Java
ต้องการแปลงอิมเมจ PNG เป็น TXT โดยทางโปรแกรมหรือไม่ ด้วย Aspose.Words สำหรับ Java นักพัฒนาทุกคนสามารถแปลงรูปแบบเอกสาร PNG เป็นรูปแบบ TXT ได้โดยใช้โค้ด Java เพียงไม่กี่บรรทัด
การประมวลผลภาพสมัยใหม่ Java API สร้างเอกสาร TXT จากภาพ PNG ด้วยคุณภาพระดับมืออาชีพ ทดสอบการแปลง PNG เป็น TXT คุณภาพสูงสุดในเบราว์เซอร์ของคุณ ไลบรารี Java อันทรงพลังช่วยให้สามารถแปลงอิมเมจ PNG เป็นรูปแบบ TXT เกือบทั้งหมดได้
ตัวอย่างต่อไปนี้สาธิตวิธีการแปลงรูปแบบเอกสาร PNG เป็นรูปแบบ TXT ใน Java
ทำตามขั้นตอนง่ายๆ เพื่อเปลี่ยนรูปภาพ PNG เป็นรูปแบบเอกสาร TXT อ่านไฟล์ PNG ของคุณจากไดรฟ์ในเครื่อง จากนั้นบันทึกในรูปแบบเอกสาร โดยระบุรูปแบบไฟล์ที่ต้องการตามนามสกุลเอกสาร TXT สำหรับทั้งการอ่าน PNG และการเขียนเอกสาร TXT คุณสามารถใช้ชื่อไฟล์ที่มีคุณสมบัติครบถ้วนได้
// 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);
builder.insertImage("Input.png");
doc.save("Output.txt");
import com.aspose.words.*;
Document doc = new Document("Input.png");
doc.save("Output.txt");
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.txt", page + 1));
}
import com.aspose.words.*;
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.insertImage("Input.png");
doc.save("Output.txt");
import com.aspose.words.*;
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.insertImage("Input.png");
shape.getShapeRenderer().save("Output.txt", new ImageSaveOptions(SaveFormat.txt));
เราโฮสต์ Java ของเราในที่เก็บ Maven 'Aspose.Words สำหรับ Java' เป็น JAR ทั่วไปที่มีโค้ดไบต์ โปรดปฏิบัติตาม คำแนะนำทีละขั้นตอน เกี่ยวกับวิธีการติดตั้งในสภาพแวดล้อมนักพัฒนา Java ของคุณ
Java SE 7 และ Java เวอร์ชันล่าสุด นอกจากนี้เรายังมีแพ็คเกจแยกต่างหากสำหรับ Java SE 6 ในกรณีที่คุณจำเป็นต้องใช้งาน JRE ล้าสมัยนี้
Java ของเราเป็นแบบข้ามแพลตฟอร์มและทำงานบนระบบปฏิบัติการทั้งหมดที่มีการใช้งาน JVM Microsoft Windows, Linux, macOS, Android และ iOS
สำหรับข้อมูลเกี่ยวกับการพึ่งพาแพ็คเกจเสริม เช่น JogAmp JOGL, Harfbuzz ฟอนต์ Java Advanced Imaging JAI โปรดดู เอกสารประกอบผลิตภัณฑ์
คุณสามารถแปลง PNG เป็นรูปแบบไฟล์อื่นๆ ได้มากมาย: