Files
libnative-utilities/include/png/UnfilterPaeth.hpp

19 lines
331 B
C++
Raw Normal View History

2024-08-15 18:40:30 +08:00
#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