I am trying to display an image in a new Notebook, centered on the display, using CreatePalette. Here is example code:
CreatePalette[image, WindowSize -> All,
WindowMargins -> {{Automatic, Automatic}, {Automatic, Automatic}},
WindowTitle -> None, WindowFrame -> "Frameless",
WindowFloating -> True]
This works, but when the image is small (e.g. 32 x 32) the image is magnified. Using an option such as
WindowSize -> ImageDimensions[image]
does not work. How do I get it to display at native size?
PaneandImageSizeMultipliersdon't work butImageSizeworks:RandomImage[1, {12, 12}, ImageSize -> 12]. – Kuba Jul 21 '16 at 19:01