How can I crop an image form a google web search in Android

74 Views Asked by At

I build a Google web search like example below.

String url = "https://www.google.com"
Uri picUri = Uri.parse(url);

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);

best solution so far was Android-Image-Cropper

Then I want do crop founded Images and save the Image (png) on my device. Unfortunately I just found solutions that recognized images locally on the device and not on a Webpage.

So can anyone help me?

0

There are 0 best solutions below