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