Bug? I can't stream this image with Picasso

Jerez

Active Member
Licensed User
Longtime User
Hi,

I can't stream this image URL with Picasso... why? is too big?

I can stream other pics but not this url... and this url return a Jpeg image data.

http://50.197.211.181:9831/cgi-bin/CGIProxy.fcgi?cmd=snapPicture2&usr=user&pwd=foscam

B4X:
DownloadImage(Url, imgCamera)

Sub DownloadImage(url As String, imgView As ImageView)
                          
    Dim imgDownload As Picasso
    imgDownload.Initialize
    imgDownload.LoadUrl(url).Resize(imgView.Width, imgView.Height).CenterCrop.IntoImageView(imgView)  

End Sub

With ImageDownloader Module i haven't problem.

please help
 

Attachments

  • foscam.JPG
    foscam.JPG
    72.4 KB · Views: 178
Last edited:

Jerez

Active Member
Licensed User
Longtime User
You should post it in the library thread.

I can't move the post. If you can... please. This will help to get a response.
 
Top