ต้องการแปลง TXT เป็นรูปแบบภาพโดยทางโปรแกรมหรือไม่? ด้วย Aspose.Words สำหรับ C++ คุณสามารถแปลง TXT เป็นรูปภาพโดยใช้โค้ด C++.
C++ API ของเราสร้างรูปภาพจาก TXT ด้วยคุณภาพระดับมืออาชีพ ทดสอบคุณภาพสูงสุด TXT เป็นรูปภาพในเบราว์เซอร์ของคุณ API การแปลง C++ อันทรงพลัง TXT เป็นรูปแบบยอดนิยมมากมาย
ตัวอย่างต่อไปนี้สาธิตวิธีการแปลง TXT เป็นชุดรูปภาพใน C++.
ทำตามขั้นตอนง่าย ๆ เพื่อเปลี่ยน TXT ให้เป็นรูปแบบรูปภาพ TXT ของคุณจากไดรฟ์ในเครื่อง จากนั้นบันทึกในรูปแบบรูปภาพ โดยระบุรูปแบบไฟล์ที่ต้องการตามนามสกุลของรูปภาพ สำหรับทั้ง TXT และการเขียนรูปภาพ คุณสามารถใช้ชื่อไฟล์แบบเต็มได้ เนื้อหารูปภาพที่ส่งออกและการจัดรูปแบบจะเหมือนกับเอกสาร TXT.
dotnet add package Aspose.Words.Cpp
สำเนา
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.txt");
auto saveOptions = MakeObject<ImageSaveOptions>(SaveFormat::Jpg);
for (int page = 0; page < doc->get_PageCount(); page++)
{
saveOptions->set_PageSet(MakeObject<PageSet>(page));
doc->Save(String::Format(u"Output_{0}.jpg", page + 1), saveOptions);
}
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.txt");
doc->Save(u"Output.jpg");
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.txt");
auto saveOptions = MakeObject<ImageSaveOptions>(SaveFormat::Png);
for (int page = 0; page < doc->get_PageCount(); page++)
{
saveOptions->set_PageSet(MakeObject<PageSet>(page));
doc->Save(String::Format(u"Output_{0}.jpg", page + 1), saveOptions);
}
using namespace Aspose::Words;
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
builder->InsertImage(u"Input.txt");
doc->Save(u"Output.jpg");
using namespace Aspose::Words;
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
auto shape = builder->InsertImage(u"Input.txt");
shape->GetShapeRenderer()->Save(u"Output.jpg", MakeObject<ImageSaveOptions>(SaveFormat::Svg));
มีสามตัวเลือกในการติดตั้ง Aspose.Words for C++ ในสภาพแวดล้อมของนักพัฒนาซอฟต์แวร์ของคุณ โปรดเลือกหนึ่งรายการที่ตรงกับความต้องการของคุณและทำตามคำแนะนำทีละขั้นตอน:
คุณสามารถใช้ไลบรารี C++ นี้เพื่อพัฒนาซอฟต์แวร์บน Microsoft Windows, Linux และ macOS:
หากคุณพัฒนาซอฟต์แวร์สำหรับ Linux หรือ macOS โปรดตรวจสอบข้อมูลเกี่ยวกับการพึ่งพาไลบรารีเพิ่มเติม (แพ็คเกจโอเพ่นซอร์ส fontconfig และ mesa-glu) ในเอกสารประกอบผลิตภัณฑ์
คุณสามารถแปลง TXT เป็นรูปแบบไฟล์อื่นๆ ได้มากมาย: