wmjordan / SharpMuPDF

Compiled DLL for MuPDF (https://github.com/ArtifexSoftware/mupdf) with a C# P/Invoke demo program

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sharp MuPDF

Sharp MuPDF demonstrates how to compile MuPDF source code into a dynamic link library and consume its functionality in .NET.

Compile

To compile the source code.

  1. Install Visual Studio 2019 or newer versions.

  2. Install python 3 (Python.exe must be accessible via the PATH environment variable).

  3. Open the MuPDF.sln in the solution folder with Visual Studio.

  4. Compile the solution.

  5. During compilation, Python will be called to generate the definition file for the target dll file.

  6. Results:

    MuPDFLib project will produce two DLL files for mupdf, one for x86 and the other for x64.

    Demo project contains some code to demonstrate how to use functions in mupdflib.dll

Shrinking MuPDF.dll

Open the property page for the libmupdf project.

Add ;TOFU;TOFU_CJK_EXT to C/C++/Preprocessor/Preprocessor Definitions for All Configurations and All Platforms in configuration manager.

So you can exclude several huge fonts from the DLL.

Update source code

  1. Use git pull command to update the repository.

  2. To update source code, tags and submodules, use:

    cd mupdf
    git pull origin master --recurse-submodules

    It is possible that local modifications have been made. To discard local modifications when updating submodules, use the following command before pulling from master:

    git reset --hard --recurse-submodules origin/master
    git reset --hard --recurse-submodules <TAG>

    To fetch remote tags, use:

    git fetch origin --tags

    Afterwards, it is possible to check out the newly added tags:

    git checkout <TAG>
  3. Check out whether the mupdf has upgraded to a new version. If so, change the FZ_VERSION before compiling the solution after update.

Git Proxy

If accessing the Internet requires HTTPS proxy, use the following command:

git config --global http.proxy <PROXY:PORT>
git config --global https.proxy <PROXY:PORT>

When you are done, use the following command to reset the proxy to default:

git config --global --unset http.proxy
git config --global --unset https.proxy

License

This project follows the license terms of MuPDF.

About

Compiled DLL for MuPDF (https://github.com/ArtifexSoftware/mupdf) with a C# P/Invoke demo program

License:GNU Affero General Public License v3.0


Languages

Language:Python 100.0%