fbstretch — stretch a frame buffer image
fbstretch
[-h ] [ -f input
image
name
] [ -s input
square
size
] [ -w input
width
]
[ -n input
height
] [-a ] [ -x horizontal
scale
factor
] [ -y vertical
scale
factor
]
[-v ] [ -S output
square
size
] [ -W output
width
] [ -N output
height
]
[[-F ] output
frame
buffer
name
]
Âfbstretch expands or compresses a frame buffer image, in either or both the horizontal and vertical directions. The image scaling origin (fixed point) is the lower left-hand corner of the display. When expanding (scale factor greater than 1), pixels are simply replicated; when compressing (scale factor less than 1), pixel averaging is performed unless sampling is explicitly requested by the Â-a option.
(âhigh resolutionâ)Assumes 1024 by 1024 pixels for default input image size instead of 512 by 512. Explicitly specified sizes override the default, and if actual input image size is smaller than requested, the actual size will be used. If not specified, requested output frame buffer size will be the stretched revised input size. If there are margins within the requested output beyond the stretched image, they will be cleared to background; if the stretched image would extend beyond the requested output size, it will be clipped to fit, even if there is room for it in the actual frame buffer. Actual sizes depend on details of specific frame buffers.
Inputs the image to be displayed from the specified frame buffer or pix(5) file, instead of modifying the output frame buffer in place. This option may not work if input and output frame buffers are the same device.
Specifies input image width and height.
Specifies input image width.
Specifies input image height.
(âno averagingâ)Specifies that output pixels will be sampled from the input, instead of being computed by averaging RGB values.
(âverboseâ)Causes actual sizes and scale factors used to be printed on the standard error output.
Scales the image by the specified factor in the horizontal direction; the default is the ratio of requested output to input widths, if specified, otherwise 1.
Scales the image by the specified factor in the vertical direction; the default is the ratio of requested output to input heights, if specified, otherwise 1.
Specifies output frame buffer width and height.
Specifies output frame buffer width.
Specifies output frame buffer height.
Outputs to the specified frame buffer instead of the one specified by the ÂFB_FILE environment variable (or the default, if ÂFB_FILE is not set). If this is the last option specified, the Â-F is optional.
Pixel averaging may be meaningless for some images or color maps, in which case sampling should be specified. Images of the Mandelbrot set (see mandel(1)) are a good example of this.
The following procedure enlarges an image, obtained from a personal computer via the Âgif-fb utility, to fill a 1280-by-1024 frame buffer.
$ âgif-fb âimage.gif # displays the 320x200 PC image $ âfbstretch â-w 320 â-n 200 â-W 1280 â-N 1024