libnative-utilities/include/png/UnfilterPaeth.hpp
2024-08-15 18:40:30 +08:00

19 lines
331 B
C++

#ifndef UNFILTERPAETH_H
#define UNFILTERPAETH_H
class UnfilterPaeth{
private:
unsigned int bytesPerPixel=0;
public:
UnfilterPaeth(unsigned int bitsPerPixel);
unsigned char* unfilter(unsigned char* upperLine, unsigned char* currentLine, unsigned int dataLength);
};
#endif // UNFILTERPAETH_H