| 1 |
/** |
|---|
| 2 |
XXX |
|---|
| 3 |
|
|---|
| 4 |
Authors: Daniel Keep |
|---|
| 5 |
Copyright: 2006, Daniel Keep |
|---|
| 6 |
License: BSD v2 (http://opensource.org/licenses/bsd-license.php). |
|---|
| 7 |
**/ |
|---|
| 8 |
/** |
|---|
| 9 |
Copyright © 2006 Daniel Keep |
|---|
| 10 |
All rights reserved. |
|---|
| 11 |
|
|---|
| 12 |
Redistribution and use in source and binary forms, with or without |
|---|
| 13 |
modification, are permitted provided that the following conditions are |
|---|
| 14 |
met: |
|---|
| 15 |
|
|---|
| 16 |
* Redistributions of source code must retain the above copyright |
|---|
| 17 |
notice, this list of conditions and the following disclaimer. |
|---|
| 18 |
|
|---|
| 19 |
* Redistributions in binary form must reproduce the above copyright |
|---|
| 20 |
notice, this list of conditions and the following disclaimer in the |
|---|
| 21 |
documentation and/or other materials provided with the distribution. |
|---|
| 22 |
|
|---|
| 23 |
* Neither the name of this software, nor the names of its contributors |
|---|
| 24 |
may be used to endorse or promote products derived from this software |
|---|
| 25 |
without specific prior written permission. |
|---|
| 26 |
|
|---|
| 27 |
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|---|
| 28 |
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
|---|
| 29 |
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|---|
| 30 |
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
|---|
| 31 |
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
|---|
| 32 |
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|---|
| 33 |
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
|---|
| 34 |
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
|---|
| 35 |
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
|---|
| 36 |
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
|---|
| 37 |
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 38 |
**/ |
|---|
| 39 |
module cairooo.imagesurface; |
|---|
| 40 |
|
|---|
| 41 |
private |
|---|
| 42 |
{ |
|---|
| 43 |
import cairo.cairo; |
|---|
| 44 |
import cairooo.enums; |
|---|
| 45 |
import cairooo.exceptions; |
|---|
| 46 |
import cairooo.surface; |
|---|
| 47 |
} |
|---|
| 48 |
|
|---|
| 49 |
private |
|---|
| 50 |
Surface |
|---|
| 51 |
rewrapImageSurface(cairo_surface_t* handle) |
|---|
| 52 |
{ |
|---|
| 53 |
return new ImageSurface(handle, true); |
|---|
| 54 |
} |
|---|
| 55 |
|
|---|
| 56 |
class ImageSurface : Surface |
|---|
| 57 |
{ |
|---|
| 58 |
this(cairo_surface_t* handle, bool takeref) |
|---|
| 59 |
{ |
|---|
| 60 |
setWrapFunction(&rewrapImageSurface, handle); |
|---|
| 61 |
super(handle, takeref); |
|---|
| 62 |
} |
|---|
| 63 |
|
|---|
| 64 |
this(Format format, int width, int height) |
|---|
| 65 |
{ |
|---|
| 66 |
this(cairo_image_surface_create(cast(cairo_format_t) format, width, |
|---|
| 67 |
height), false); |
|---|
| 68 |
} |
|---|
| 69 |
|
|---|
| 70 |
this(ImageSurface surface) |
|---|
| 71 |
{ |
|---|
| 72 |
super(surface); |
|---|
| 73 |
} |
|---|
| 74 |
|
|---|
| 75 |
// NOTE: Supoprt for cairo_image_surface_create_for_data is implemented |
|---|
| 76 |
// via the ImageBufferSurface class. |
|---|
| 77 |
|
|---|
| 78 |
// |
|---|
| 79 |
// cairo api members |
|---|
| 80 |
// |
|---|
| 81 |
int |
|---|
| 82 |
width() |
|---|
| 83 |
{ |
|---|
| 84 |
scope(success) checkStatus(); |
|---|
| 85 |
return cairo_image_surface_get_width(this.handle); |
|---|
| 86 |
} |
|---|
| 87 |
|
|---|
| 88 |
int |
|---|
| 89 |
height() |
|---|
| 90 |
{ |
|---|
| 91 |
scope(success) checkStatus(); |
|---|
| 92 |
return cairo_image_surface_get_height(this.handle); |
|---|
| 93 |
} |
|---|
| 94 |
|
|---|
| 95 |
// |
|---|
| 96 |
// miscellaneous members |
|---|
| 97 |
// |
|---|
| 98 |
override |
|---|
| 99 |
ImageSurface |
|---|
| 100 |
dup() |
|---|
| 101 |
{ |
|---|
| 102 |
return new ImageSurface(this); |
|---|
| 103 |
} |
|---|
| 104 |
} |
|---|