Skip to content

Instantly share code, notes, and snippets.

@aspose-imaging-cloud-examples
Last active June 22, 2022 14:06

Aspose.Imaging.Cloud Java API to easy grayscale your images or photos in your Java application or Web service.

You can:

  • grayscale raster images;
  • grayscale multi-page images;
  • grayscale vector images.

Interested ?

You may go further at : https://products.aspose.cloud/imaging/java/

import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.apng";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.bmp";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.dicom";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.djvu";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.dng";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.emf";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.emz";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.gif";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.jpeg";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.jpeg2000";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.png";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.psd";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.tga";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.tiff";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.webp";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.wmf";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
import com.aspose.imaging.cloud.sdk.model.requests.CreateGrayscaledImageRequest;
import com.aspose.imaging.cloud.sdk.model.requests.GrayscaleImageRequest;
import java.nio.file.Files;
import java.nio.file.Paths;
string ImageFileName = "example_image.wmz";
string ImagesFolder = "ExampleImages";
string CloudFolder = "CloudImages";
string OutputFolder = "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/)
ImagingApi api = new ImagingApi(argumentValues.ClientSecret, argumentValues.ClientId, "https://api.aspose.cloud");
/**
* Grayscale an image from cloud storage.
*
* @throws Exception
*/
public void grayscaleImageFromStorage() throws Exception {
// Upload image to cloud storage
byte[] inputImage = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
UploadFileRequest request = new UploadFileRequest(Paths.get(CloudFolder, ImageFileName).toString(), image, null);
FilesUploadResult response = api.uploadFile(request);
if(response.getErrors() != null && response.getErrors().size() > 0)
throw new Exception("Uploading errors count: " + response.getErrors().size());
String folder = CloudFolder; // Input file is saved at the desired folder in the storage
String storage = null; // We are using default Cloud Storage
GrayscaleImageRequest request = new GrayscaleImageRequest(ImageFileName, folder, storage);
byte[] updatedImage = api.grayscaleImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
/**
* Grayscale an image. Image data is passed in a request stream.
*
* @throws Exception
*/
public void createGrayscaledImageFromRequest() throws Exception {
byte[] inputStream = Files.readAllBytes(Paths.get(ImagesFolder, ImageFileName));
String outPath = null; // Path to updated file (if this is empty, response contains streamed image)
String storage = null; // We are using default Cloud Storage
CreateGrayscaledImageRequest request = new CreateGrayscaledImageRequest(inputStream, outPath, storage);
byte[] updatedImage = api.createGrayscaledImage(request);
// Save the image file to output folder
String updatedImageName = "changed_" + ImageFileName;
Path path = Paths.get(OutputFolder, updatedImageName).toAbsolutePath();
Files.write(path, updatedImage);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment