באמצעות C++ API החזק שלנו, מפתחים יכולים לדחוס מסמכי PDF כדי לייעל את התוכן ואת גודל קובץ הפלט. הקטנת גודל PDF מתרחשת על ידי ניקוי נתונים ומשאבים שאינם בשימוש. אתה יכול גם לדחוס תמונות בתוך PDF כדי להקטין עוד יותר את גודל קובץ הפלט.
ניתן לשמור את התוצאה של אופטימיזציה ודחיסה של תוכן ב PDF המקורי או בכל פורמט שמירה זמין - DOCX, DOC, RTF, HTML ועוד רבים אחרים. לדוגמה, דחוס PDF ושמור את הפלט כ Word.
כאמור, SDK ה C++ שלנו מאפשר לך להקטין באופן תכנותי את גודל ה PDF. ועכשיו אתה יכול לנסות את הפונקציונליות העוצמתית שלנו ולהעריך כיצד לדחוס PDF ב 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.pdf"), 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"pdf")
)
);
wordsApi->convertDocument(convertDocument);
שיבוט Aspose.Words Cloud SDK for C++ מ-GitHub. תוכל למצוא מידע מפורט על בנייה והגדרת ה SDK בסעיף "How to use the SDK".
כדי לקבל במהירות את אישורי האבטחה הדרושים ולגשת ל REST API שלנו, אנא עקוב אחר Instructions הבאות בתיעוד.
עיין בתיעוד Repository Documentation כדי לראות את הפרטים.
אתה יכול לבצע דחיסת מסמכים עבור פורמטים אחרים של קבצים: