รวมไฟล์ HTML อย่างง่ายดายและส่งออกผลลัพธ์เป็นรูปแบบกราฟิกในโค้ด C++ ไลบรารี C++ นี้ออกแบบมาเพื่อรวมไฟล์ HTML หลายไฟล์เป็นภาพเดียวโดยใช้ REST API กล่าวคือ ผ่านการเรียก HTTPS ผ่านอินเทอร์เน็ต
นี่เป็นโซลูชันการรวม HTML to Image แบบ Cloud-native แบบมืออาชีพที่ให้โปรแกรมเมอร์ C++ มีความยืดหยุ่นในการพัฒนาที่ยอดเยี่ยมและคุณลักษณะที่มีประสิทธิภาพ การรวมไฟล์จะทำให้เวิร์กโฟลว์ HTML/อิมเมจดิจิทัลของคุณเป็นแบบอัตโนมัติ และออฟโหลดบางส่วนของกระบวนการที่เป็นกิจวัตรไปเป็นซอฟต์แวร์ C++ ที่ประมวลผล HTML ได้อย่างรวดเร็วและมีประสิทธิภาพ
คุณอาจต้องรวมไฟล์ HTML เป็นภาพเดียวในหลายกรณี ตัวอย่างเช่น คุณอาจต้องการรวมไฟล์ HTML หลายไฟล์เข้าด้วยกันก่อนที่จะพิมพ์หรือเก็บถาวร
การรวม HTML สามารถเป็นส่วนหนึ่งของแนวทางการประมวลผลเอกสารแบบบูรณาการทั้งหมดสำหรับการสร้างรูปภาพจากแหล่งข้อมูลที่แตกต่างกัน งานดังกล่าวเกี่ยวข้องกับการใช้ไลบรารี C++ สำหรับจัดการ HTML/รูปภาพที่มีคุณสมบัติครบถ้วน ซึ่งจะประมวลผลชุดของไฟล์ HTML และรวมเข้าด้วยกันในเวลาที่สั้นที่สุด ให้ผลลัพธ์กราฟิกที่กะทัดรัดและแม่นยำ
หากต้องการรวม HTML กับรูปภาพใน C++ คุณต้องมีไฟล์ HTML ต้นทางอย่างน้อย 2 ไฟล์ สำหรับการเริ่มต้นอย่างรวดเร็ว โปรดดูตัวอย่างโค้ด C++ ด้านล่าง
using namespace aspose::words::cloud;
auto config = std::make_shared<ApiConfiguration>(L"####-####-####-####-####",
L"##################");
auto wordsApi = std::make_shared<WordsApi>(config);
auto document = std::shared_ptr<std::istream>(new std::ifstream(
std::filesystem::path(L"Input1.html"), std::istream::binary));
auto mergeProps = std::make_shared<aspose::words::cloud::models::DocumentEntry>();
mergeProps->setFileReference(
std::make_shared<aspose::words::cloud::models::FileReference>(
std::make_shared<std::wstring>(L"Input2.html"));
mergeProps->setImportFormatMode(std::make_shared<std::wstring>(L"KeepSourceFormatting"));
auto documentEntries =
std::make_shared<std::vector<std::shared_ptr<aspose::words::cloud::models::DocumentEntry>>>();
documentEntries->push_back(mergeProps);
auto documentList = std::make_shared<aspose::words::cloud::models::DocumentEntryList>();
documentList->setDocumentEntries(documentEntries);
std::shared_ptr<requests::AppendDocumentOnlineRequest> appendDocumentOnline(
new requests::AppendDocumentOnlineRequest(
document, documentList
)
);
auto mergedDocs = wordsApi->appendDocumentOnline(appendDocumentOnline);
std::shared_ptr<requests::SplitDocumentOnlineRequest> splitDocumentOnline(
new requests::SplitDocumentOnlineRequest(
mergedDocs, std::make_shared<std::wstring>(L"jpg"),
std::make_shared<bool>(true)
)
);
wordsApi->splitDocumentOnline(splitDocumentOnline);
Clone Aspose.Words Cloud SDK for C++ จาก GitHub คุณสามารถค้นหาข้อมูลโดยละเอียดเกี่ยวกับการสร้างและกำหนดค่า SDK ได้ในส่วน "How to use the SDK"
หากต้องการรับข้อมูลรับรองความปลอดภัยที่จำเป็นอย่างรวดเร็วและเข้าถึง REST API ของเรา โปรดปฏิบัติตาม Instructions เหล่านี้ในเอกสารประกอบ
อ้างถึง Repository Documentation เพื่อดูรายละเอียด