libgdiplus icon indicating copy to clipboard operation
libgdiplus copied to clipboard

C-based implementation of the GDI+ API

Results 101 libgdiplus issues
Sort by recently updated
recently updated
newest added

Looks like some units are failing. ```console + cd libgdiplus-6.1 + /usr/bin/make install DESTDIR=/home/tkloczko/rpmbuild/BUILDROOT/libgdiplus-6.1-2.fc35.x86_64 'INSTALL=/usr/bin/install -p' Making install in src make[1]: Entering directory '/home/tkloczko/rpmbuild/BUILD/libgdiplus-6.1/src' make[2]: Entering directory '/home/tkloczko/rpmbuild/BUILD/libgdiplus-6.1/src' /usr/bin/mkdir -p...

( Copying from https://bugzilla.xamarin.com/show_bug.cgi?id=37608 / https://xamarin.github.io/bugzilla-archives/37/37608/bug.html ) Robert Rouhani 2016-01-12 11:35:41 UTC Created attachment 14551 [details] Screenshot of the bug in Ubuntu I'm the developer of SharpFont and a user...

Setting Graphics.ImageInterpolationMode has no effect. The following code: ``` var target = new Bitmap(100, 100); using (var g = Graphics.FromImage(target)) { g.Clear(Color.Red); g.PixelOffsetMode = PixelOffsetMode.Half; g.InterpolationMode = InterpolationMode.NearestNeighbor; var bmp...

Issue: This no longer compiles correctly. Issue is in the imported `googletest` which is not version-bound. Some changes in this external code have made it incompatible with this repo's makefile/autotools...

I know this repo is dead, but maybe this will be useful to someone... Previously `PageUnit` was being ignored when applying/calculating clips. Adds a `gdip_get_page_transform` function which combines the `clip_matrix`...

Hello, I just want to know if this library will continue to have bug fixes given GDI+ is no longer supported on non-windows platforms with .NET 7.0? Thanks.

### Steps to reproduce 1. `csc Program.cs Form1.cs Form1.Designer.cs` 2. `mono Program.exe` 3. press the button The 3 files can be found at https://gist.github.com/holgerschurig/d7358b623f874eb447d66511d9650b25 ### Current Behavior ``` schurig@desktop:~/gdiplusissue$ mono...

dotnet/runtime#49111 notes a .NET Core dependency on libgdiplus. I was able to get a build completed by ```console # Install commandline tools xcode-select --install # Install dependencies brew update brew...

This PR implements the [CachedBitmap](https://docs.microsoft.com/en-us/windows/win32/gdiplus/-gdiplus-cachedbitmap-flat) functionality from GDI+. This is in preparation for implementing https://github.com/dotnet/winforms/issues/8822, which adds `CachedBitmap` to `System.Drawing`. I would like to get CachedBitmap implemented for .NET 5....

Building unit tests by default requires all dependencies to be installed (jpeg, tiff, etc) and users may not want that. So let's disable the build of unit tests by default...