There's no "function" for what you want to do. What you're working with is collision detection and handling which is an advanced topic. But you just said you didn't want "expert" posts. You need to make up your mind.
If you're expecting someone to post a few lines of code to solve your problem, it's just not going to happen.
You have a few choices here:
1) Just use a bounding box and deflect based on offset from the center of the paddle or something (as previously suggested). It won't look awesome, but it's simple and good for learning. You could also just draw the paddle as a sharp box without rounded corners and then it would look correct too.
2) Mess around with "pixel perfect" stuff and try and fake it. I see no point in going down this road since doing an iterative pixel alpha compare will only give you a yes/no on collision with no other useful information, such as a penetration vector (which is what you need in this case). By the time you got that working, you'll be very close to implementing correct collision detection anyway.
This is just an inherent problem with this type of collision detection. You get nothing but a yes/no out of it.
3) Do it "right." This is not necessarily the best option if you are just trying to make a game and want to avoid advanced topics. If that's the case, go for option #1.
The correct way involves breaking your collision volume up into shape primitives. (For a rounded paddle, probably a box and 2 circles on the ends.) Then you do separate collision testing functions for each possible primitive interaction (probably just sphere-to-box and sphere-to-sphere in your case.)
In those functions, you'll be able to calculate exact overlaps and get other useful information. (For example the shortest path back out of a collided state which could be used for figuring out a "bounce angle.")
Also, if you were treating the ends of the paddles as circles and not pixel arrays, the information in that gamasutra article would probably be far more relevant. (Although I haven't actually read it.)
Let me know what you want to do and I can try to help you.