mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
CCITT fax decoder - second part
This commit is contained in:
@ -56,6 +56,12 @@ PDFBitReader::Value PDFBitReader::read(PDFBitReader::Value bits)
|
||||
return value;
|
||||
}
|
||||
|
||||
PDFBitReader::Value PDFBitReader::look(PDFBitReader::Value bits) const
|
||||
{
|
||||
PDFBitReader temp(*this);
|
||||
return temp.read(bits);
|
||||
}
|
||||
|
||||
void PDFBitReader::seek(qint64 position)
|
||||
{
|
||||
if (position < m_stream->size())
|
||||
|
Reference in New Issue
Block a user