diff --git a/image/proto/image.proto b/image/proto/image.proto index 779337e..984b8c3 100644 --- a/image/proto/image.proto +++ b/image/proto/image.proto @@ -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;