C-based implementation of the GDI+ API
Перейти к файлу
Hugh Bellamy 478f11b609 Fix ImageAttributes clone crash with color profile names (#583)
Regression from #560
2019-08-05 17:43:31 +02:00
.vscode Update gitignore and settings.json (#582) 2019-08-05 12:42:56 +02:00
docs
src Fix ImageAttributes clone crash with color profile names (#583) 2019-08-05 17:43:31 +02:00
tests Fix ImageAttributes clone crash with color profile names (#583) 2019-08-05 17:43:31 +02:00
.gitattributes
.gitignore Update gitignore and settings.json (#582) 2019-08-05 12:42:56 +02:00
.jenkins-linux.sh
.jenkins-osx.sh Revert "Fix cflags" 2018-11-30 17:42:54 +01:00
.jenkins-windows.ps1
.travis.yml Fix warnings on Linux Travis build 2019-07-31 17:20:47 +02:00
AUTHORS
COPYING
ChangeLog
INSTALL
LICENSE
Makefile.am
NEWS
README.md Add instructions for code coverage 2018-09-18 15:04:44 +01:00
TODO
autogen.sh configure.ac: use command -v instead of which 2019-07-31 23:42:25 +02:00
configure.ac configure.ac: Use AC_CONFIG_MACRO_DIR instead of AC_CONFIG_MACRO_DIRS 2019-08-02 20:18:17 +02:00
libgdiplus.pc.in
libgdiplus.sln
libgdiplus0.spec.in Fix shell syntax error in configure.ac (#517) 2018-11-26 23:52:39 +01:00
winconfig.h.in

README.md

libgdiplus: An Open Source implementation of the GDI+ API.

This is part of the Mono project.

Build status:

Travis (Linux/OSX) Travis Build Status
Jenkins (Linux) Jenkins Linux Build Status
Jenkins (Windows) Jenkins Windows Build Status

Requirements:

This requires the libraries used by the Cairo vector graphics library to build (freetype2, fontconfig, Xft2 and libpng).

On OSX you can use Homebrew to install the dependencies:

brew install glib cairo libexif libjpeg giflib libtiff autoconf libtool automake pango pkg-config
brew link gettext --force

On Debian-based Linux distributions you can use apt-get to install the dependencies:

sudo apt-get install libgif-dev autoconf libtool automake build-essential gettext libglib2.0-dev libcairo2-dev libtiff-dev libexif-dev

On Windows you can use Vcpkg to install the dependencies. Run the following commands from the root of the repository from an admin command prompt:

bootstrap-vcpkg.bat
vcpkg.exe integrate install
vcpkg.exe install giflib libjpeg-turbo libpng cairo glib tiff libexif glib pango --triplet x86-windows
vcpkg.exe install giflib libjpeg-turbo libpng cairo glib tiff libexif glib pango --triplet x64-windows

Build instructions

To build on OSX without X11:

./autogen.sh --without-x11 --prefix=YOUR_PREFIX
make

To build on OSX with X11 (e.g. from XQuartz):

PKG_CONFIG_PATH=/opt/X11/lib/pkgconfig ./autogen.sh --prefix=YOUR_PREFIX
make

To build on Linux:

./autogen.sh --prefix=YOUR_PREFIX
make

To build on Windows, open libgdiplus.sln.

Running the unit tests

Run the following command from the root of the repository:

make check

To run the tests with Clang sanitizers, run the following command from the root of the repository:

./autogen.sh --enable-asan
make check

Code coverage

Code coverage stats are generated with lcov. You can use Homebrew on OSX to install the dependencies:

brew install lcov

To run the tests with code coverage, run the following commands from the root of the repository:

./autogen.sh --enable-coverage
make check
lcov --capture --directory src --output-file coverage.info
genhtml coverage.info --output-directory coverage

To view the coverage report, navigate to the coverage directory in the root of the repository and open index.html.

Installing libgdiplus

Run the following command from the root of the repository:

make install

Optional build options

--with-pango

This builds libgdiplus using Pango to render (measure and draw) 
all of it's text. This requires Pango version 1.38 (or later).