Giter Club home page Giter Club logo

image-fill-color-objectivec's People

Contributors

gauravstomar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

image-fill-color-objectivec's Issues

Is undo/redo action possible in this example ?

Hello Gaurav,

I really like your work and your example. Thanks for sharing us this example.

Now I want to ask you that, is it possible to undo/redo of filled color ? If i want to go to back few steps and then paint again ? Is it possible ?

Waiting for your answer.
Thanks

green and alpha switched?

I feel like I'm taking crazy pills but I'm getting color data with green and alpha switched.
I'm running this on iPad Pro with iOS11, loading a rgb color png photo.

This method shows switched values for green and alpha.

`unsigned int getColorCode (unsigned int byteIndex, unsigned char *imageData)
{
unsigned int red = imageData[byteIndex];
unsigned int green = imageData[byteIndex + 1];
unsigned int blue = imageData[byteIndex + 2];
unsigned int alpha = imageData[byteIndex + 3];

return (red << 24) | (green << 16) | (blue << 8) | alpha;

}`

Green is always 255 and alpha is the green value.

Same results on iPad simulator running iOS11.

Any ideas?

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.