GithubHelp home page GithubHelp logo

Render to gray-scale about lunasvg HOT 1 CLOSED

sammycage avatar sammycage commented on August 23, 2024
Render to gray-scale

from lunasvg.

Comments (1)

sammycage avatar sammycage commented on August 23, 2024

Bitmap to GrayScale

    for (uint32_t y = 0; y < bitmap.height(); y++) {
        uint8_t* row = bitmap.data() + bitmap.stride() * y;
        for (uint32_t x = 0; x < bitmap.width(); x++) {
            uint32_t r = row[0];
            uint32_t g = row[1];
            uint32_t b = row[2];

            uint32_t l = (r * 299 + g * 587 + b * 114);

            row[0] = row[1] = row[2] = uint8_t(l / 1000);

            row += 4;
        }
    }

from lunasvg.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.