באמצעות Ruby API החזק שלנו, מפתחים יכולים לדחוס JPG כדי לייעל את התוכן ואת גודל קובץ הפלט. הקטנת גודל הקובץ מתרחשת על ידי ניקוי נתונים ומשאבים שאינם בשימוש. אתה יכול גם לדחוס תמונות כדי להקטין את גודל קובץ הפלט אפילו יותר.
ניתן לשמור את התוצאה של אופטימיזציה ודחיסה של תוכן ב JPG המקורי או בכל פורמט שמירה זמין - DOCX, DOC, RTF, PDF, HTML ועוד רבים אחרים.
כאמור, ה Ruby SDK שלנו מאפשר לך להקטין באופן תכנותי את גודל ה JPG. ועכשיו אתה יכול לנסות את הפונקציונליות העוצמתית שלנו ולהעריך כיצד לדחוס JPG ב Ruby בעזרת הדוגמה הבאה:
require 'aspose_words_cloud'
AsposeWordsCloud.configure do |config|
config.client_data['ClientId'] = '####-####-####-####-####'
config.client_data['ClientSecret'] = '##################'
end
@words_api = WordsAPI.new
request_document = File.open('Input.jpg')
request_compress_options = CompressOptions.new(
{:ImagesQuality => 75, :ImagesReduceSizeFactor => 1})
compress_document_request = CompressDocumentOnlineRequest.new(
document: request_document, compress_options: request_compress_options)
compress_document = @words_api.compress_document_online(compress_document_request)
convert_document = ConvertDocumentRequest.new(
document: compress_document.document.values[0], format: 'jpg')
@words_api.convert_document(convert_document)
התקן Aspose.Words Cloud SDK for Ruby באמצעות שירות אירוח RubyGems. הפעל את gem install aspose_words_cloud כדי להתקין את החבילה. כחלופה, אתה יכול לשכפל באופן ידני את Aspose.Words Cloud SDK for Ruby מ-GitHub ולהשתמש בו בפרויקט שלך. אנא עקוב אחר Instructions אלה כדי לקבל במהירות את אישורי האבטחה הדרושים ולגשת ל- REST API שלנו.
אתה יכול לבצע דחיסת מסמכים עבור פורמטים אחרים של קבצים: