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

19 lines
339 B
C++

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