Sometimes I need Notebook-specific options such as Background color or FontProperties -> "ScreenResolution". (Ref: How to set default magnification for all windows.)
This works just fine in most ways, except that when I use any of:
the Global value is used rather than the Notebook value, and the image is very different.
Here is a self-contained example:
SetOptions[$FrontEndSession,
{Background -> None,
FontProperties -> {"ScreenResolution" -> 96}}];
SetOptions[EvaluationNotebook[],
{Background -> LightBlue,
FontProperties -> {"ScreenResolution" -> 72}}];
Plot[Sinc[x], {x, 0, 10},
Epilog -> Text[Style[Sinc[x], 16], {5.5, 1/2}],
ImageSize -> Small
]
Rasterize[%]
Is there some way to make these export methods use the Notebook options?
(I am especially concerned with the FontProperties -> "ScreenResolution" value.)


