summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibPDF
AgeCommit message (Expand)Author
2022-11-01Everywhere: Mark dependencies of most targets as PRIVATETim Schumacher
2022-11-01Everywhere: Explicitly link all binaries against the LibC targetTim Schumacher
2022-10-16LibPDF: Add very basic support for Adobe Type 1 font renderingJulian Offenhäuser
2022-10-16LibPDF: Add glyph drawing and type info methods to PDFFontJulian Offenhäuser
2022-10-16LibPDF: Allow page objects to inherit the MediaBox and Resources entriesJulian Offenhäuser
2022-10-16LibPDF: Allow text operator sequences to start with whitespaceJulian Offenhäuser
2022-10-16LibPDF: Parse floating point numbers that omit a leading zero correctlyJulian Offenhäuser
2022-09-18Libraries: Add missing includes, add namespace qualifiersBen Wiederhake
2022-09-17LibPDF: Support parsing page tree nodes that are in object streamsJulian Offenhäuser
2022-09-17LibPDF: Rename argument for the latin character set enumeration macroJulian Offenhäuser
2022-09-17LibPDF: Allow whitespace other than EOL after an object markerJulian Offenhäuser
2022-09-17LibPDF: Disallow parsing indirect values as operandsJulian Offenhäuser
2022-09-17LibPDF: Fix handling of differences array in custom encodingsJulian Offenhäuser
2022-09-17LibPDF: Don't expect glyph width arrays to contain integersJulian Offenhäuser
2022-09-17LibPDF: Fix text positioning with operator TJJulian Offenhäuser
2022-09-17LibPDF: Implement loading compressed objects from object streamsJulian Offenhäuser
2022-09-17LibPDF: Initial work on parsing xref streamsJulian Offenhäuser
2022-09-17LibPDF: Move document-specific parsing functionality into its own classJulian Offenhäuser
2022-09-17LibPDF: Move consume and match helper functions to the Reader classJulian Offenhäuser
2022-09-17LibPDF: Break inclusion cycle by removing unnecessary includeBen Wiederhake
2022-07-12Everywhere: Replace single-char StringView op. arguments with charssin-ack
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-07-12Meta+Userland: Simplify some formatterssin-ack
2022-05-29Everywhere: Fix a bunch of typosLinus Groh
2022-04-09LibGfx: Move ScaledFont and new base class VectorFont out of TTFSimon Wanner
2022-04-09LibGfx: Move other font-related files to LibGfx/Font/Simon Wanner
2022-04-09LibGfx: Move TTF files from TrueTypeFont/ to Font/TrueType/Simon Wanner
2022-04-04PDFViewer: Support a continuous page view modeMatthew Olsson
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-31LibPDF: Fix mismatched class/struct declarationMatthew Olsson
2022-03-31LibPDF: Rename Command to OperatorMatthew Olsson
2022-03-31LibPDF: Fix some base-encoding-related crashesMatthew Olsson
2022-03-31LibPDF: Add Type0 and TrueType fontsMatthew Olsson
2022-03-31LibPDF: Abstract Type1 font dataMatthew Olsson
2022-03-31LibPDF: Accept font size in PDFFont::get_char_widthMatthew Olsson
2022-03-31LibPDF: Move font files into their own directoryMatthew Olsson
2022-03-31LibPDF: Use Font /Widths array to derive character widthsMatthew Olsson
2022-03-31LibPDF: Use AntiAliasingPainter in Renderer when possibleMatthew Olsson
2022-03-31LibPDF: Fix more bad Renderer text positioning calculationsMatthew Olsson
2022-03-31LibPDF: Handle SCN and scn operatorsMatthew Olsson
2022-03-31LibPDF: Add basic ICCBased color space handlingMatthew Olsson
2022-03-31LibPDF: Move color space creation from Renderer to ColorSpaceMatthew Olsson
2022-03-29LibPDF: Attempt to unecrypt strings and streamsMatthew Olsson
2022-03-29LibPDF: Require Document* in Parser constructorMatthew Olsson
2022-03-29LibPDF: Keep track of the current object index/generation while ParsingMatthew Olsson
2022-03-29LibPDF: Add implementation of the Standard security handlerMatthew Olsson
2022-03-29LibPDF: Get rid of PlainText/Encoded StreamObjectMatthew Olsson
2022-03-29LibPDF: Change CommonNames' enumerator macro parameter nameMatthew Olsson
2022-03-29LibPDF: Store a PDFFont in the Renderer's text stateMatthew Olsson
2022-03-29LibPDF: Add initial support for Type1 fontsMatthew Olsson