From: Dima K. <gn...@di...> - 2025-04-04 23:14:07
|
Ethan A Merritt <me...@uw...> writes: > I would have thought the heart of it would be > set autoscale noextend > set margins 0,0,0,0 Oh wow. That actually does 99% of what I want. Thank you! The extra 1% is probably a bug: I have this script: set margin 0,0,0,0 unset xtics unset ytics set terminal png size 1027,1035 set output "/tmp/tst.png" plot "/tmp/input.png" binary filetype=png with rgbimage notitle where the requested png size is the dimensions of /tmp/input.png. If I look at the input and output side by side, I see the image shift by 1 pixel in each direction. Thanks for the suggestion. |