|
Revision 2428, 2.2 kB
(checked in by hhubner, 1 year ago)
|
Update cl-gd.
|
| Line | |
|---|
| 1 |
(in-package #:cl-user) |
|---|
| 2 |
|
|---|
| 3 |
(defpackage #:cl-gd |
|---|
| 4 |
(:use #:cl #:uffi) |
|---|
| 5 |
(:export #:*default-image* |
|---|
| 6 |
#:*default-color* |
|---|
| 7 |
#:*default-font* |
|---|
| 8 |
#:+max-colors+ |
|---|
| 9 |
#:without-transformations |
|---|
| 10 |
#:with-transformation |
|---|
| 11 |
#:create-image |
|---|
| 12 |
#:destroy-image |
|---|
| 13 |
#:with-image |
|---|
| 14 |
#:create-image-from-file |
|---|
| 15 |
#:with-image-from-file |
|---|
| 16 |
#:create-image-from-gd2-part |
|---|
| 17 |
#:with-image-from-gd2-part |
|---|
| 18 |
#:with-default-image |
|---|
| 19 |
#:with-image* |
|---|
| 20 |
#:with-image-from-file* |
|---|
| 21 |
#:with-image-from-gd2-part* |
|---|
| 22 |
#:write-jpeg-to-stream |
|---|
| 23 |
#:write-png-to-stream |
|---|
| 24 |
#:write-wbmp-to-stream |
|---|
| 25 |
#:write-gd-to-stream |
|---|
| 26 |
#:write-gd2-to-stream |
|---|
| 27 |
#-:cl-gd-no-gif #:write-gif-to-stream |
|---|
| 28 |
#:write-image-to-stream |
|---|
| 29 |
#:write-image-to-file |
|---|
| 30 |
#:image-width |
|---|
| 31 |
#:image-height |
|---|
| 32 |
#:image-size |
|---|
| 33 |
#:make-brush |
|---|
| 34 |
#:make-tile |
|---|
| 35 |
#:make-anti-aliased |
|---|
| 36 |
#:with-default-color |
|---|
| 37 |
#:allocate-color |
|---|
| 38 |
#:deallocate-color |
|---|
| 39 |
#:transparent-color |
|---|
| 40 |
#:true-color-p |
|---|
| 41 |
#:number-of-colors |
|---|
| 42 |
#:find-color |
|---|
| 43 |
#:find-color-from-image |
|---|
| 44 |
#:thickness |
|---|
| 45 |
#:with-thickness |
|---|
| 46 |
#:alpha-blending-p |
|---|
| 47 |
#:save-alpha-p |
|---|
| 48 |
#:color-component |
|---|
| 49 |
#:color-components |
|---|
| 50 |
#:draw-polygon |
|---|
| 51 |
#:draw-line |
|---|
| 52 |
#:get-pixel |
|---|
| 53 |
#:set-pixel |
|---|
| 54 |
#:set-pixels |
|---|
| 55 |
#:draw-rectangle |
|---|
| 56 |
#:draw-rectangle* |
|---|
| 57 |
#:draw-arc |
|---|
| 58 |
#:draw-filled-ellipse |
|---|
| 59 |
#:draw-filled-circle |
|---|
| 60 |
#:fill-image |
|---|
| 61 |
#:clipping-rectangle |
|---|
| 62 |
#:clipping-rectangle* |
|---|
| 63 |
#:set-clipping-rectangle* |
|---|
| 64 |
#:with-clipping-rectangle |
|---|
| 65 |
#:with-clipping-rectangle* |
|---|
| 66 |
#:with-default-font |
|---|
| 67 |
#:draw-character |
|---|
| 68 |
#:draw-string |
|---|
| 69 |
#:draw-freetype-string |
|---|
| 70 |
#:interlacedp |
|---|
| 71 |
#:differentp |
|---|
| 72 |
#:copy-image |
|---|
| 73 |
#:copy-palette |
|---|
| 74 |
#:true-color-to-palette |
|---|
| 75 |
#:do-rows |
|---|
| 76 |
#:do-pixels-in-row |
|---|
| 77 |
#:do-pixels |
|---|
| 78 |
#:raw-pixel)) |
|---|
| 79 |
|
|---|
| 80 |
(pushnew :cl-gd *features*) |
|---|