// Get ClientID and ClientSecret from https://dashboard.aspose.cloud/
String clientId = "7ef10407-c1b7-43bd-9603-5ea9c6db83cd";
String clientSecret = "ba7cc4dc0c0478d7b508dd8ffa029845";

// create Imaging object
ImagingApi imageApi = new ImagingApi(clientSecret, clientId);

// load first TIFF image from local system
File file1 = new File("TiffSampleImage.tif");
byte[] imageStream = Files.readAllBytes(file1.toPath());
			
// create file upload request object
UploadFileRequest uploadRequest = new UploadFileRequest("input.tiff",imageStream,null);
// upload first TIFF image to Cloud storage
imageApi.uploadFile(uploadRequest);

Integer frameId = 0; // Frame number inside TIFF
// new width & height of extracted frame
Integer newWidth = 400;
Integer newHeight = 600;

// Result to only include the specified frame not other frames
Boolean saveOtherFrames = false;

// Create a request object to extract tiff frames based on specified details
GetImageFrameRequest getImageFrameRequest = new GetImageFrameRequest("input.tiff", frameId, newWidth, newHeight,
                    null, null, null, null, null, saveOtherFrames, null, null);

// the extracted frame is returned in response stream
byte[] updatedImage = imageApi.getImageFrame(getImageFrameRequest);

// Save extracted TIFF frame on local storage
FileOutputStream fos = new FileOutputStream("/Users/nayyer/Documents/" + "Extracted-TIFF.tiff");
fos.write(updatedImage);
fos.close();