I have noticed that when I export something with an Inset objects,
pp[t_] :=
Plot[Sin[x], {x, -10, 10},
Epilog ->
{Inset[
Framed[
Text[Style[HoldForm["t=" t], 20]],
RoundingRadius -> 4, Background -> White],
Scaled[{.5, .5}]]},
Frame -> True]
When I increase the ImageResolution, the border of the inset becomes thicker. Here is what I see:
Export["/Users/xx/Desktop/ContC1.png", pp[12], ImageResolution -> 250]
Whereas, if I keep ImageResolution lower, the thickness of the inset is more reasonable.
What is happening?

ImageResolutionis simply ignored byExport. Note thatImageResolution(at least in version 10.0 where it works at all) isn't working as it is supposed to. Which version do you use? – Alexey Popkov Mar 19 '17 at 06:03