mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Inline image implementation
This commit is contained in:
@ -397,10 +397,10 @@ protected:
|
||||
virtual void performMarkedContentEnd();
|
||||
|
||||
/// Implement to react on set char width request
|
||||
virtual void performSetCharWidth(PDFReal wx, PDFReal wy) { }
|
||||
virtual void performSetCharWidth(PDFReal wx, PDFReal wy);
|
||||
|
||||
/// Implement to react on set cache device request
|
||||
virtual void performSetCacheDevice(PDFReal wx, PDFReal wy, PDFReal llx, PDFReal lly, PDFReal urx, PDFReal ury) { }
|
||||
virtual void performSetCacheDevice(PDFReal wx, PDFReal wy, PDFReal llx, PDFReal lly, PDFReal urx, PDFReal ury);
|
||||
|
||||
/// Returns current graphic state
|
||||
const PDFPageContentProcessorState* getGraphicState() const { return &m_graphicState; }
|
||||
@ -679,6 +679,9 @@ private:
|
||||
/// Read object from operand stack
|
||||
PDFObject readObjectFromOperandStack(size_t startPosition) const;
|
||||
|
||||
/// Implementation of painting of XObject image
|
||||
void paintXObjectImage(const PDFStream* stream);
|
||||
|
||||
const PDFPage* m_page;
|
||||
const PDFDocument* m_document;
|
||||
const PDFFontCache* m_fontCache;
|
||||
|
Reference in New Issue
Block a user