Set thumbnail image for uploading on Google Drive

前端 未结 2 945
梦如初夏
梦如初夏 2021-01-27 08:52

I use the following code to set thumb nail for file to upload on Google Drive :

// Set thumb nail path                  
String thumbnail_path =         


        
2条回答
  •  梦如初夏
    2021-01-27 09:43

    You need to provide the Base64 encoded image content instead of the path.

    final Thumbnail thumbnail = new Thumbnail();                    
    thumbnail.setMimeType("image/jpeg");            
    thumbnail.setImage(base64encodedContent);
    

提交回复
热议问题