จำเป็นที่จะต้องแปลง PNG ภาพเพื่อ GIF รูปแบบโปรแกรม? ด้วย Aspose.Words for C++ พัฒนาใด ๆ สามารถแปลง PNG เข้า GIF ที่มีเพียงไม่กี่บรรทัดของ C++ รหัส
การประมวลผลภาพสมัยใหม่ C++ API สร้าง GIF จาก PNG ภาพด้วยความเร็วสูง ทดสอบคุณภาพของ PNG ถึง GIF ในเบราว์เซอร์ C++ อันทรงพลังช่วยให้แปลง PNG เป็นรูปแบบกราฟิกยอดนิยมมากมาย
ตัวอย่างต่อไปนี้สาธิตวิธีการแปลง PNG เป็น GIF ใน C++.
ทำตามขั้นตอนง่ายๆ เพื่อเปลี่ยน PNG เป็นรูปแบบ GIF อ่าน PNG อิมเมจจากโลคัลไดรฟ์ จากนั้นบันทึกเป็น GIF โดยระบุรูปแบบรูปภาพที่ต้องการโดยส่วนขยาย GIF สำหรับทั้ง PNG การอ่านและการ GIF เขียนคุณสามารถใช้ชื่อไฟล์ที่มีคุณสมบัติครบถ้วน เนื้อหาเอาต์พุต GIF จะเหมือนกับรูปภาพ PNG.
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");
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}.gif", page + 1), saveOptions);
}
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) ในเอกสารประกอบผลิตภัณฑ์
คุณสามารถแปลง PNG เป็นรูปแบบไฟล์อื่นๆ ได้มากมาย: