apivovarov / ANSI

ANSI escape sequence for c++, Use this library to color you terminal by using standard ANSI escape sequence

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


ANSI

ANSI escape sequence
Explore the docs »
Report Bug · Request Feature

Table of Contents

  1. About The Project
  2. Getting Started
  3. Usage
  4. Contributing
  5. License
  6. Contact

About The Project

This is a wrapper over ANSI escape sequence for color, cursor movementand etc.

Getting Started

Installation

It's a Header only library so just dounload ANSI.hpp

Usage

Usage is very easy this library uses manipulators to make work easy, if you are using windows you may need to enable virtual terminal processing,

// sample to enable
int EnableVirtualTerminalProcessing()
{
  HANDLE StdOut = GetStdHandle(STD_OUTPUT_HANDLE);

  if (StdOut != INVALID_HANDLE_VALUE)
  {
    DWORD mode = 0;
    if (GetConsoleMode(StdOut, &mode))
    {
      mode |= ENABLE_VIRTUAL_TERMINAL_PROCESSING;
      if (SetConsoleMode(StdOut, mode))
      {
        return 0;
      }
    }
  }

  return GetLastError();
}

3 and 4 bit colors:

// background
std::cout << ansi::bg_yellow;
// foreground
std::cout << ansi::fg_blue;
// output
std::cout << "Blue on yellow";
// reset
std::cout << ansi::reset;

8 bit color:

// background
std::cout << ansi::bg_color(157);
// foreground
std::cout << ansi::fg_color(100);
// outpt
std::cout << "8 bit color";
// reset
std::cout << ansi::reset;

24 bit color:

// background
std::cout << ansi::bg_color(0, 255, 0);
// foreground
std::cout << ansi::fg_color(0, 0, 255);
// output
std::cout << "24 bit color";
// reset
std::cout << ansi::reset;

to string:

You can easily convert this manipulators to string by using ansi::str

std::string bg_yellow = ansi::str(ansi::bg_yellow);
std::string fg_blue   = ansi::str(ansi::fg_blue);
std::string reset     = ansi::str(ansi::reset);

std::cout << bg_yelow;
// foreground
std::cout << fg_blue;
// output
std::cout << "Blue on Yellow";
// reset
std::cout << reset;

For more examples, please refer to the Documentation

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Project Link: https://github.com/srilakshmikanthanp/ANSI

About

ANSI escape sequence for c++, Use this library to color you terminal by using standard ANSI escape sequence

License:MIT License


Languages

Language:C++ 100.0%