⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 misc.c

📁 speech signal process tools
💻 C
字号:
/* misc.c: * * miscellaneous funcs * * jim frost 10.05.89 * * Copyright 1989, 1990 Jim Frost.  See included file "copyright.h" for * complete copyright information. */#ifdef SCCS    static char *sccs_id = "@(#)misc.c	1.1  10/13/90";#endif#include "copyright.h"#include "xloadimage.h"void usage(name)     char *name;{  printf("Usage: %s [global options] {[image options] image_name ...}\n",	 tail(name));  printf("Global options:\n");  printf("  -onroot               - load image onto root window\n");  printf("  -border colorname     - border image with this color\n");  printf("  -display dispname     - destination display\n");  printf("  -fullscreen           - use entire screen for display\n");  printf("  -geometry WxH+X+Y     - destination size and location\n");  printf("  -help                 - print this help message\n");  printf("  -identify             - identify given images\n");  printf("  -list                 - list images in path\n");  printf("  -install              - explicitly install colormap\n");  printf("  -path                 - show image path for loading\n");  printf("  -quiet                - silence is golden\n");  printf("  -slideshow            - show show images in slideshow style\n");  printf("  -supported            - show supported image types\n");  printf("  -verbose              - whistle while you work\n");  printf("  -version              - show version and patchlevel\n");  printf("  -view                 - view image in a window\n");  printf("Image_options:\n");  printf("  -at X,Y               - load image at location\n");  printf("  -background colorname - background color for bitmap images\n");  printf("  -brighten percentage  - specify brightness multiplier\n");  printf("  -center               - center image\n");  printf("  -colors number        - specify maximum number of RGB colors\n");  printf("  -clip X,Y,W,H         - use clipped portion of image\n");  printf("  -dither               - dither color image to bitmap image\n");  printf("  -foreground colorname - foreground color for bitmap images\n");  printf("  -halftone             - halftone a color image to bitmap image\n");  printf("  -name name            - force next argument to be image name\n");  printf("  -xzoom percentage     - zoom the X axis by a percentage\n");  printf("  -yzoom percentage     - zoom the Y axis by a percentage\n");  printf("  -zoom percentage      - zoom the image by a percentage\n");  exit(1);}char *tail(path)     char *path;{ int   s;  char *t;  t= path;  for (s= 0; *(path + s) != '\0'; s++)    if (*(path + s) == '/')      t= path + s + 1;  return(t);}Image *processImage(disp, scrn, image, options, verbose)     Display      *disp;     int           scrn;     Image        *image;     ImageOptions *options;     unsigned int  verbose;{ Image        *tmpimage;  XColor        xcolor;  unsigned int  compressed= 0;  goodImage(image, "processImage");  /* clip the image if requested   */  if ((options->clipx != 0) || (options->clipy != 0) ||      (options->clipw != 0) || (options->cliph != 0)) {    if (!options->clipw)      options->clipw= image->width;    if (!options->cliph)      options->cliph= image->height;    tmpimage= clip(image, options->clipx, options->clipy,		   (options->clipw ? options->clipw : image->width),		   (options->cliph ? options->cliph : image->height),		   verbose);    freeImage(image);    image= tmpimage;  }  if (options->xzoom || options->yzoom) { /* zoom image */    if (!options->colors && RGBP(image) &&             /* if the image is to */	(!options->xzoom && (options->yzoom > 100)) || /* be blown up, */	(!options->yzoom && (options->xzoom > 100)) || /* compress before */	(options->xzoom + options->yzoom > 200)) {     /* doing it */      compress(image, verbose);      compressed= 1;    }    tmpimage= zoom(image, options->xzoom, options->yzoom, verbose);    freeImage(image);    image= tmpimage;  }  if (options->bright) /* alter image brightness */    brighten(image, options->bright, verbose);  /* forcibly reduce colormap   */  if (options->colors && RGBP(image) && (options->colors < image->rgb.used)) {    reduce(image, options->colors, verbose);    image->rgb.size= options->colors; /* lie */    compressed= 1;  }  if (options->dither && (image->depth > 1)) { /* image is to be dithered */    if (options->dither == 1)      tmpimage= dither(image, verbose);    else      tmpimage= halftone(image, verbose);    freeImage(image);    image= tmpimage;  }  else if (!compressed)       /* make sure colormap is minimized */    compress(image, verbose);  /* set foreground and background colors of mono image   */  xcolor.flags= DoRed | DoGreen | DoBlue;  if ((image->depth == 1) && options->fg) {    XParseColor(disp, DefaultColormap(disp, scrn), options->fg, &xcolor);    *(image->rgb.red + 1)= xcolor.red;    *(image->rgb.green + 1)= xcolor.green;    *(image->rgb.blue + 1)= xcolor.blue;  }  if ((image->depth == 1) && options->bg) {    XParseColor(disp, DefaultColormap(disp, scrn), options->bg, &xcolor);    *image->rgb.red= xcolor.red;    *image->rgb.green= xcolor.green;    *image->rgb.blue= xcolor.blue;  }  return(image);}/* this gets called on an I/O error; it really assumes that a KillClient * was issued. *//* ARGSUSED */int ioErrorHandler(disp)     Display *disp;{  exit(0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -