Giter VIP home page Giter VIP logo

Comments (3)

lvandeve avatar lvandeve commented on July 23, 2024 4

Hello,

The decision is for LodePNG to not do color conversions other than to exactly those models that exist in the PNG specification.

The reason for this is that there exist billions of possible color models, so converting to them would require a library of its own.

In your case, would it work for you to load to RGBA, and then use a for loop to swap the bytes to the order you want? This should not cost speed, since, if LodePNG did it internally it had to do the same thing anyway.

Just to give an idea about the amount of possible color models:
-any permutation of order of R, G, B and A, almost anything is getting used somewhere, ARGB, ABGR, RGBA, BGRA, ...
-whether or not A is present
-bits per pixel or per individual component (e.g. there exists 565 RGB and so on)
-whether alpha is premultiplied
-whether scanlines end at bytes or can end at bits in between, or even at a multiple of 4 bytes like BMP does
-whether it's mirrored (like BMP also does)
-and this didn't even get into YUV, HSL, and so on :)

So supporting anything outside of the PNG spec would mean having to support them all, and really that's outside of the scope of an image loading library imho :)

Regards,

-Lode

from lodepng.

LinusU avatar LinusU commented on July 23, 2024 1

Or maybe solve it by setting some other options/flags. libpng has

           PNG_TRANSFORM_BGR           Flip RGB to BGR, RGBA
                                       to BGRA
           PNG_TRANSFORM_SWAP_ALPHA    Flip RGBA to ARGB or GA
                                       to AG

from lodepng.

LinusU avatar LinusU commented on July 23, 2024

Cool, yeah I actually realised after posting that those corresponded. Thats why I switched to options flags.

But I think that you are right, it shouldn't be the responsibility of lodepng to do that. Thank you for your time.

from lodepng.

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.