באמצעות C++ API החזק שלנו, מפתחים יכולים לדחוס Word כדי לייעל את התוכן ואת גודל קובץ הפלט. הקטנת גודל הקובץ מתרחשת על ידי ניקוי נתונים ומשאבים שאינם בשימוש. אתה יכול גם לדחוס תמונות כדי להקטין את גודל קובץ הפלט אפילו יותר.
ניתן לשמור את התוצאה של אופטימיזציה ודחיסה של תוכן ב Word המקורי או בכל פורמט שמירה זמין - DOCX, DOC, RTF, PDF, HTML ועוד רבים אחרים.
כאמור, ה C++ SDK שלנו מאפשר לך להקטין באופן תכנותי את גודל ה Word. ועכשיו אתה יכול לנסות את הפונקציונליות העוצמתית שלנו ולהעריך כיצד לדחוס Word ב C++ בעזרת הדוגמה הבאה:
using namespace aspose::words::cloud;
auto config = std::make_shared<ApiConfiguration>(L"####-####-####-####-####",
L"##################");
auto wordsApi = std::make_shared<WordsApi>(config);
auto requestDocument = std::shared_ptr<std::istream>(
new std::ifstream(std::filesystem::path(L"Input.docx"), std::istream::binary));
auto requestCompressOptions = std::make_shared<aspose::words::cloud::models::CompressOptions>();
requestCompressOptions->setImagesQuality(std::make_shared<int32_t>(75));
requestCompressOptions->setImagesReduceSizeFactor(std::make_shared<int32_t>(1));
std::shared_ptr<requests::CompressDocumentOnlineRequest> compressDocumentRequest(
new requests::CompressDocumentOnlineRequest(
requestDocument, requestCompressOptions
)
);
auto compressDocument = wordsApi->compressDocumentOnline(compressDocumentRequest);
auto requestDocument = std::shared_ptr<std::istream>(
compressDocument->document->values.begin, std::istream::binary));
std::shared_ptr<requests::ConvertDocumentRequest> convertDocument(
new requests::ConvertDocumentRequest(
requestDocument, std::make_shared<std::wstring>(L"docx")
)
);
wordsApi->convertDocument(convertDocument);
שיבוט Aspose.Words Cloud SDK for C++ מ-GitHub. תוכל למצוא מידע מפורט על בנייה והגדרת ה SDK בסעיף "How to use the SDK".
כדי לקבל במהירות את אישורי האבטחה הדרושים ולגשת ל REST API שלנו, אנא עקוב אחר Instructions הבאות בתיעוד.
עיין בתיעוד Repository Documentation כדי לראות את הפרטים.
אתה יכול לבצע דחיסת מסמכים עבור פורמטים אחרים של קבצים: