Skip to content
View mara004's full-sized avatar
πŸ’­
πŸ’­

Organizations

@pypdfium2-team

Block or report mara004

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. pypdfium2-team/pypdfium2 pypdfium2-team/pypdfium2 Public

    Python bindings to PDFium

    Python 346 15

  2. pypdfium2-team/ctypesgen pypdfium2-team/ctypesgen Public

    Forked from ctypesgen/ctypesgen

    Wrapper generator for Python ctypes

    Python 1

  3. PDF rendering with PDFBox, from Python PDF rendering with PDFBox, from Python
    1
    # SPDX-FileCopyrightText: 2023 geisserml <[email protected]>
    2
    # SPDX-License-Identifier: Apache-2.0
    3
    
                  
    4
    # Assuming you have an Apache PDFBox 3 jar in the same directory
    5
    
                  
  4. PDF rendering with pdf.js, from Python PDF rendering with pdf.js, from Python
    1
    # SPDX-FileCopyrightText: 2023 geisserml <[email protected]>
    2
    # SPDX-License-Identifier: Apache-2.0
    3
    
                  
    4
    # See also https://github.com/extremeheat/JSPyBridge/blob/master/examples/python/pdfjs.py
    5
    
                  
  5. JPEG to PDF N-up with pypdfium2 JPEG to PDF N-up with pypdfium2
    1
    # SPDX-FileCopyrightText: 2024 geisserml <[email protected]>
    2
    # SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause
    3
    
                  
    4
    import argparse
    5
    from pathlib import Path
  6. Page number spec parser [Draft] Page number spec parser [Draft]
    1
    # SPDX-FileCopyrightText: 2024 geisserml <[email protected]>
    2
    # SPDX-License-Identifier: MPL-2.0
    3
    
                  
    4
    # Sophisticated parser for a page number spec mini-language
    5
    # Technically, this might be a use case for some parser generator like pyparsing or PLY, but this is a manual implementation based on common string operations.