remove base64 comments

This commit is contained in:
Asim Aslam
2021-10-26 16:41:21 +01:00
parent 7ae30e267f
commit 51f7503e55

View File

@@ -14,7 +14,6 @@ service Image {
// To resize an image before uploading, see the Resize endpoint. // To resize an image before uploading, see the Resize endpoint.
message UploadRequest { message UploadRequest {
// Base64 encoded image to upload, // Base64 encoded image to upload,
// ie. "data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="
string base64 = 1; string base64 = 1;
// URL of the image to upload // URL of the image to upload
string url = 2; string url = 2;
@@ -53,7 +52,6 @@ message CropOptions {
// Optional cropping. // Optional cropping.
message ResizeRequest { message ResizeRequest {
// base64 encoded image to resize, // base64 encoded image to resize,
// ie. "data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="
string base64 = 1; string base64 = 1;
// url of the image to resize // url of the image to resize
string url = 2; string url = 2;
@@ -78,7 +76,6 @@ message ResizeResponse {
// or by uploading the conversion result. // or by uploading the conversion result.
message ConvertRequest { message ConvertRequest {
// base64 encoded image to resize, // base64 encoded image to resize,
// ie. "data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="
string base64 = 1; string base64 = 1;
// url of the image to resize // url of the image to resize
string url = 2; string url = 2;