品質を損なうことなく、大きな HTML ファイルを小さくします。不要な未使用のデータを削除します。コード内の HTML ファイルのサイズを縮小します。 C++ ライブラリは、 HTML コンテンツを最適化するための統合APIを開発者に提供します。
C++ ライブラリはスタンドアロンソリューションであり、サードパーティのソフトウェアをインストールする必要はありません。
'Aspose.Words for C++' 使用すると、ロスレス圧縮と詳細なコンテンツの最適化が簡単になります。次の例は、C++ の C++ HTML ファイルのコンテンツを最適化する方法を示しています。
dotnet add package Aspose.Words.Cpp
コピー
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.html");
doc->Cleanup();
auto nodes = doc->GetChildNodes(NodeType::Shape, true);
for (const auto& shape : System::IterateOver<Shape>(nodes))
{
if (shape->get_HasImage())
{
// 画像圧縮用のライブラリを選択するのは開発者次第です。
auto image = System::Drawing::Image::Fromstream(shape->get_ImageData()->ToStream());
// ...
// 画像を圧縮して形状に戻します。
shape->get_ImageData()->SetImage("yourCompressedImage");
}
}
doc->Save(u"Output.html");
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.html");
doc->Cleanup();
auto nodes = doc->GetChildNodes(NodeType::Shape, true);
for (const auto& shape : System::IterateOver<Shape>(nodes))
{
if (shape->get_HasImage())
{
// 画像圧縮用のライブラリを選択するのは開発者次第です。
auto image =
System::Drawing::Image::FromStream(shape->get_ImageData()->ToStream());
// ...
// 画像を圧縮して形状に戻します。
shape->get_ImageData()->SetImage("yourCompressedImage");
}
}
auto saveOptions = MakeObject<PdfSaveOptions>();
saveOptions->set_CacheBackgroundGraphics(true);
doc->Save(u"Output.html", saveOptions);
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.html");
doc->Cleanup();
auto nodes = doc->GetChildNodes(NodeType::Shape, true);
for (const auto& shape : System::IterateOver<Shape>(nodes))
{
if (shape->get_HasImage())
{
// 画像圧縮用のライブラリを選択するのは開発者次第です。
auto image = System::Drawing::Image::Fromstream(shape->get_ImageData()->ToStream());
// ...
// 画像を圧縮して形状に戻します。
shape->get_ImageData()->SetImage("yourCompressedImage");
}
}
doc->Save(u"Output.html");
using namespace Aspose::Words;
auto doc = MakeObject<Document>(u"Input.html");
doc->Cleanup();
auto nodes = doc->GetChildNodes(NodeType::Shape, true);
for (const auto& shape : System::IterateOver<Shape>(nodes))
{
if (shape->get_HasImage())
{
// 画像圧縮用のライブラリを選択するのは開発者次第です。
auto image =
System::Drawing::Image::FromStream(shape->get_ImageData()->ToStream());
// ...
// 画像を圧縮して、形状に戻します。
shape->get_ImageData()->SetImage("yourCompressedImage");
}
}
auto saveOptions = MakeObject<OoxmlSaveOptions>();
saveOptions->set_CompressionLevel(CompressionLevel::Maximum);
doc->Save(u"Output.html", saveOptions);
using namespace Aspose::Words;
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
auto shape = builder->InsertImage(u"Input.html");
auto saveOptions = MakeObject<ImageSaveOptions>(SaveFormat::Html);
shape->GetShapeRenderer()->Save(u"Output.html", saveOptions);
Aspose.Words for C++ を開発者環境にインストールするための3つのオプションがあります。ニーズに合ったものを選択し、ステップバイステップの手順に従ってください。
このC++ライブラリを使用して、 Microsoft Windows 、Linux、およびmacOSオペレーティングシステムでソフトウェアを開発できます。
LinuxまたはmacOS用のソフトウェアを開発する場合は、製品ドキュメント fontconfig および mesa-glu オープンソースパッケージ)に関する情報を確認してください。