需要以 PNG 圖像 SVG 格式嗎?隨著Aspose.Words for C++任何開發人員可以輕鬆地將 PNG 成 SVG 只需幾行 C++ 代碼。
現代圖像處理 C++ API 從 PNG 圖片高速 SVG 直接在瀏覽器中 PNG 到 SVG 圖像轉換的質量。強大的 C++ 庫允許將 PNG 圖像轉換為許多流行的圖形格式。
以下示例演示如何將 PNG 中的 SVG C++ 。
按照簡單的步驟將 PNG 轉換為 SVG 格式。從本地驅動器讀取 PNG 圖像,然後將其保存為 SVG SVG 擴展名指定所需的圖像格式。對於 PNG 讀取和 SVG 寫入,您可以使用完全限定的文件名。輸出 SVG 內容將與原始 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.svg", MakeObject<ImageSaveOptions>(SaveFormat::Svg));
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.png");
doc->Save(u"Output.svg");
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}.svg", page + 1));
}
using namespace Aspose::Words;
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
builder->InsertImage(u"Input.png");
doc->Save(u"Output.svg");
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.svg", MakeObject<ImageSaveOptions>(SaveFormat::Svg));
有三個選項可以將 Aspose.Words for C++ 安裝到您的開發人員環境中。請選擇符合您需求的一種,並按照分步說明進行操作:
您可以使用這個 C++ 庫在 Microsoft Windows 、Linux 和 macOS 操作系統上開發軟件:
如果您為 Linux 或 macOS 開發軟件,請查看產品文檔中 fontconfig 和 mesa-glu 開源包)的信息。
您可以將PNG轉換為許多其他文件格式: