ShareButton com intent - ImageView

Bom galera estou querendo fazer um share / Compartilhamento de uma imagem com intent, porém está imagem já esta definida com um id, como faço pra realizar este share seguei meu codigo que está dando erro creio que é na linha da Uri.

// Metodo do botão
public void Share (View view){

//Ter Acesso a imaem atraves do id
ImageView ivCar = (ImageView) findViewById(R.id.iv_car);

    Intent sharingIntent =  new  Intent ( Intent .ACTION_SEND);
Uri screenshotUri = Uri.parse(MediaStore.Images. Media . EXTERNAL_CONTENT_URI +  "/"  + ivCar );
    sharingIntent . setType("image/jpeg");
sharingIntent . putExtra(Intent.EXTRA_STREAM, screenshotUri);

startActivity(Intent.createChooser ( sharingIntent ,  "Share imagem usando " ));