If I understand you correctly, you want the tooltip text to completely cover the image it's meant to tooltip?
Unfortunately that's not possible with tooltip. The reason being, tooltip is only valid while the mouse is "over" the element the tooltip is initiated on. The moment your tooltip covers that element, your mouse is then over the tooltip, instead of the selected element, which would trigger the close event for the tooltip.
If the end result is more important than the how, you could set both the open and close events for the tooltip to click instead of their defaults, then position accordingly.
Edit (to explain at and my:
my and at are sort of like a dynamic x,y coordinate system to help you align your elements, except each one is an x,y in and of itself. They both allow you to set reference points within 2 objects that have a relationship to each other, in this case being the tooltip (my), and the object the tooltip is instantiated on (at).
my in your case is the tooltip that pops up, and at is the image that when mousein event is triggered on, causes the tooltip to instantiate. Each one of these options, takes a flat string, or a relative string-position, to determine the 2 objects relationship (in position of the DOM) to each other. So, if you want the top center of the tooltip to align with the absolute center of the image, regardless of where they appear in the DOM, you would set the following:
position: {
my: "center top",
at: "center center"
}
You can gain further control by offsetting either/both my and at by combining a pixel value or % value.
position: {
my: "center+10 top+50",
at: "center+5 center+25"
}