באמצעות Java API החזק שלנו, מפתחים יכולים לדחוס קבצים כדי לייעל את התוכן ואת גודל קובץ הפלט. הקטנת גודל הקובץ מתרחשת על ידי ניקוי נתונים ומשאבים שאינם בשימוש. אתה יכול גם לדחוס תמונות כדי להקטין את גודל קובץ הפלט אפילו יותר.
ניתן לשמור את התוצאה של אופטימיזציה ודחיסה של תוכן בפורמט הקובץ המקורי או בכל פורמט שמירה זמין - DOCX, DOC, RTF, PDF, HTML ועוד רבים אחרים.
כאמור, ה Java SDK שלנו מאפשר לך להקטין באופן תכנותי את גודל המסמך בכל פורמט נתמך. לדוגמה, אתה יכול להקטין את גודל הקובץ של PDF, DOCX, DOC, RTF, ODT, EPUB, HTML ופורמטים אחרים. ועכשיו אתה יכול לנסות את הפונקציונליות העוצמתית שלנו ולהעריך כיצד לדחוס מסמך ב Java בעזרת הדוגמה הבאה:
import com.aspose.words.cloud.*;
ApiClient apiClient = new ApiClient("####-####-####-####-####", "##################", null);
WordsApi wordsApi = new WordsApi(apiClient);
byte[] requestDocument = Files.readAllBytes(Paths.get("Input.docx").toAbsolutePath());
CompressOptions requestCompressOptions = new CompressOptions();
requestCompressOptions.setImagesQuality(75);
requestCompressOptions.setImagesReduceSizeFactor(1);
CompressDocumentOnlineRequest compressDocumentRequest = new CompressDocumentOnlineRequest(
requestDocument, requestCompressOptions, null, null, null, null);
CompressDocumentOnline compressDocument =
wordsApi.compressDocumentOnline(compressDocumentRequest);
ConvertDocumentRequest convertDocument = new ConvertDocumentRequest(
compressDocument.getDocument().iterator().next(), "docx", null, null, null, null);
wordsApi.convertDocument(convertDocument);
התקן 'Aspose.Words Cloud SDK for Java' באמצעות כלי אוטומציה של Maven build.
הוסף את התלות הזו ל- POM של הפרויקט שלך:
כחלופה, אתה יכול לשכפל את Aspose.Words Cloud SDK for Java מ-GitHub ולהשתמש בו בפרויקט שלך. אנא עקוב אחר Instructions אלה כדי לקבל במהירות את אישורי האבטחה הדרושים ולגשת ל- REST API שלנו.
עיין בתיעוד Repository Documentation כדי לראות את הפרטים.