Function replaceColor

  • Replaces a target color in an image with a different color

    Parameters

    • options: {
          image: Buffer;
          target: string;
          replace: string;
          tolerance?: number;
      }

      The options object

      • image: Buffer

        The image buffer to process

      • target: string

        The target color in hex format (with or without # prefix)

      • replace: string

        The replacement color in hex format (with or without # prefix)

      • Optional tolerance?: number

        The color matching tolerance (0-100)

    Returns Promise<Buffer>

    A Promise that resolves to the modified image buffer

    Throws

    If image processing fails

Generated using TypeDoc