Can I share text with a similar icon in my application?

Because I'm trying to do this, but it works with plain text, but when I try with the image, it shares the whole image, but I just want a slightly smaller image. This is my actual code:
Intent intent2=new Intent(Intent.ACTION_SEND); intent2.setType("image/*"); intent2.putExtra(Intent.EXTRA_TEXT,random); Uri path = Uri.fromFile(new File(Image)); intent2.putExtra(Intent.EXTRA_STREAM, path ); startActivity(Intent.createChooser(intent2, "Share via"));
source share