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.
message UploadRequest {
// Base64 encoded image to upload,
// ie. "data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="
string base64 = 1;
// URL of the image to upload
string url = 2;
@@ -53,7 +52,6 @@ message CropOptions {
// Optional cropping.
message ResizeRequest {
// base64 encoded image to resize,
// ie. "data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="
string base64 = 1;
// url of the image to resize
string url = 2;
@@ -78,7 +76,6 @@ message ResizeResponse {
// or by uploading the conversion result.
message ConvertRequest {
// base64 encoded image to resize,
// ie. "data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="
string base64 = 1;
// url of the image to resize
string url = 2;