• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

D bindings to the GraphicsMagick library.


RSS
Rev. Time Author
c373e04 2021-01-09 20:14:32 kaerou

Update examples folder

This adds some automated build scripts for building each example
with different D compilers. Additionally, there is a README and
a new example (convert.d).

1f3f67b 2021-01-09 18:41:29 kaerou

Remove ImageMagick.

There were no ImageMagick specifics yet, however, I'm likely
not going to add the bindings. GraphicsMagick does all I need,
and the current bindings for it are also complete for my needs.

I'll continue adding the remaining parts of the GraphicsMagick
APIs. I'll also accept any patches for supporting ImageMagick.

e3da15f 2021-01-09 18:31:28 kaerou

Add PixelWand.

7af3e42 2021-01-09 17:33:33 kaerou

wand/c: Add MagickGetException & MagickRotateImage

fe9af95 2021-01-09 17:31:22 kaerou

Reformat "core" files.

0cfc25c 2021-01-05 18:41:24 kaerou

Add example 'demo_c.d'

2dbb39f 2021-01-05 17:48:43 kaerou

Add more functions to core/c/list.d

Specifically:
* RemoveFirstImageFromList()
* RemoveLastImageFromList()
* ReplaceImageInList()
* ReverseImageList()
* SpliceImageIntoList()
* SplitImageList()
* SyncNextImageInList()

ceb63e2 2021-01-05 17:48:43 kaerou

Add resize functions

cd92892 2021-01-05 15:54:30 kaerou

Remove invalid "deprecated" attribute and unittest.

920ec1a 2021-01-05 13:56:27 kaerou

Fix documentation bug.

Opted to rename the parameter in the signature rather than the
documentation since the "drawing_wand" is used for the other
functions.

6e74987 2021-01-05 13:53:23 kaerou

Fix initialzeMagick bugs.

When passing "null" it would (correctly) take go in to then "if"
branch. Of course, forgetting the else meant it would continue
in attempting to convert the null[0] into a C string...

397089e 2021-01-05 13:51:11 kaerou

Add documentation to Image/ImageInfo structs.

87079d0 2021-01-05 13:44:24 kaerou

Add c_ulong signature to TimerInfo.

The (previously) incorrect size of TimerInfo caused issues when
dealing with the Image struct (e.g. setting the filename member).

Kudos to the D forum:
https://forum.dlang.org/thread/pvekzcdscftspigppouv@forum.dlang.org

b9a7916 2021-01-05 12:54:38 kaerou

Add missing enum members and fix typos.

237dab8 2021-01-04 13:03:52 kaerou

Move error types into core/error.d

27ac82b 2021-01-04 12:56:34 kaerou

Add PreviewType enum and missing struct members.

e5d06e9 2021-01-04 10:24:07 kaerou

Initial commit