Adicionando preenchimento e borda a um UIImageView

Como posso adicionar preenchimento entre um UIImageView e sua borda?

    Img.layer.cornerRadius = Img.bounds.width / 2
    Img.layer.borderWidth = 2
    Img.layer.borderColor = UIColor.blue.cgColor
    Img.clipsToBounds = true

Como isso: