Resize JPEG2000 via Ruby Cloud API
Resize JPEG2000 using native Ruby Cloud APIs without needing any image editor or 3rd-party libraries.
Get StartedHow to Resize JPEG2000 Using Ruby Cloud API
Aspose.Imaging.Cloud for Ruby API which is a feature-rich, powerful and easy to use image manipulation and conversion Cloud API for Ruby platform. You can download its latest version directly from rubygems.org or install it from gem command line.
Command Prompt
> gem install aspose_imaging_cloud
Steps to Resize JPEG2000 via Ruby Cloud API
Developers can easily load & resize JPEG2000 files in just a few lines of code.
- Load JPEG2000 file as stream
- Create & set the instance of CreateResizedImageRequest
- Set new Width and Height properties
- Call the CreateResizedImage method
- Get resized image from response stream
System Requirements
Aspose.Imaging Cloud for Ruby is supported on all major operating systems. Just make sure that you have the following prerequisites.
- Ruby version >= 2.5.1
Resize JPEG2000 - Cloud
require 'fileutils' | |
require 'aspose-imaging-cloud' | |
IMAGE_FILE_NAME= 'example_image.jpeg2000'; | |
IMAGES_FOLDER = 'ExampleImages'; | |
CLOUD_FOLDER = 'CloudImages'; | |
OUTPUT_FOLDER = 'Output'; | |
# Get ClientId and ClientSecret from https://dashboard.aspose.cloud/ | |
# or use on-premise version (https://docs.aspose.cloud/imaging/getting-started/how-to-run-docker-container/) | |
imaging_api = AsposeImagingCloud::ImagingApi.new(client_secret, client_id, 'https://api.aspose.cloud') | |
# Resizes the image from cloud storage | |
def resize_image_from_storage | |
input_image = File.join(IMAGES_FOLDER, IMAGE_FILE_NAME) | |
upload_file_request = AsposeImagingCloud::UploadFileRequest.new(File.join(CLOUD_FOLDER, IMAGE_FILE_NAME), input_image) | |
result = self.imaging_api.upload_file(upload_file_request) | |
if result.errors.any? | |
puts('Uploading errors count: ' + result.errors.size.to_s) | |
# Please refer to https://docs.aspose.cloud/imaging/supported-file-formats/#resize for possible formats | |
format = 'jpeg2000' # Resulting image format | |
width = 100 | |
height = 150 | |
folder = CLOUD_FOLDER # Input file is saved at the desired folder in the storage | |
storage = nil # We are using default Cloud Storage | |
request = AsposeImagingCloud::ResizeImageRequest.new( | |
IMAGE_FILE_NAME, width, height, format, folder, storage) | |
resized_image = imaging_api.resize_image(request) | |
# Save the image file to output folder | |
filename_part = File.basename(IMAGE_FILE_NAME, ".*") | |
image_name = filename_part + '.' + 'jpeg2000' | |
path = File.absolute_path(File.join(OUTPUT_FOLDER, image_name)) | |
File.write(path, resized_image) | |
end | |
# Resizes an image. Image data is passed in a request stream | |
def create_resized_image_from_request | |
# Please refer to https://docs.aspose.cloud/imaging/supported-file-formats/#resize for possible formats | |
format = 'jpeg2000' # Resulting image format | |
width = 100 | |
height = 150 | |
storage = nil # We are using default Cloud Storage | |
out_path = nil # Path to updated file (if this is empty, response contains streamed image) | |
input_stream = File.open(File.join(IMAGES_FOLDER, IMAGE_FILE_NAME), 'r') | |
request = AsposeImagingCloud::CreateResizedImageRequest.new( | |
input_stream, width, height, format, out_path, storage) | |
resized_image = imaging_api.create_resized_image(request) | |
# Save the image file to output folder | |
filename_part = File.basename(IMAGE_FILE_NAME, ".*") | |
image_name = filename_part + '.' + 'jpeg2000' | |
path = File.absolute_path(File.join(OUTPUT_FOLDER, image_name)) | |
File.write(path, resized_image) | |
end |
About Aspose.Imaging Cloud API for Ruby
Aspose.Imaging Cloud API is an image processing solution to process images (photos) within your cloud or web applications. It offers: cross-platform Image processing, including but not limited to conversions between various image formats (including uniform multi-page or multi-frame image processing), transformations (resize, crop, flip&rotate, grayscale, adjust), advanced image manipulation features (filtering, deskewing), AI features (i.e. object detection and reverse image search). It’s a Cloud API and does not depend on any software for image operations. One can easily add high-performance image conversion features with Cloud APIs within projects. Flexible integrations options including SDKs for various languages (Python, Ruby, .NET, Java, NodeJS, PHP) and the use of the REST API allow to make the integration easy.
Resize JPEG2000s via Online App
Resize JPEG2000 documents by visiting our Live Demos website. The live demo has the following benefits:
JPEG2000 What is JPEG2000 File Format
JPEG 2000 (JP2) is an image coding system and state-of-the-art image compression standard. Designed, using wavelet technology JPEG 2000 can code lossless content in any quality at once. Moreover, without any substantial penalty in coding efficiency, JPEG 2000 have the capability to access and decode the same content efficaciously into a variety of other resolutions and qualities. The code streams in JPEG 2000 is significantly scalable having regions of interest that provide the facility for spatial random access. Possessing Up to 16384 diverse components with the dimensions in terapixels, and precision that can be high as 38 bits/sample.
Read MoreOther Supported Conversions
Using Ruby Cloud API, one can easily resize different formats including: