Commit | Line | Data |
---|---|---|
b13a3ddb | 1 | #define PERL_NO_GET_CONTEXT |
02d1d628 AMH |
2 | #ifdef __cplusplus |
3 | extern "C" { | |
4 | #endif | |
5 | #include "EXTERN.h" | |
6 | #include "perl.h" | |
7 | #include "XSUB.h" | |
7a6cd05b TC |
8 | #define NEED_newRV_noinc |
9 | #define NEED_sv_2pv_nolen | |
f35d1231 | 10 | #define NEED_sv_2pvbyte |
02d1d628 AMH |
11 | #include "ppport.h" |
12 | #ifdef __cplusplus | |
92bda632 | 13 | } |
02d1d628 AMH |
14 | #endif |
15 | ||
a8652edf TC |
16 | #define i_int_hlines_testing() 1 |
17 | ||
92bda632 | 18 | #include "imager.h" |
02d1d628 AMH |
19 | #include "feat.h" |
20 | #include "dynaload.h" | |
21 | #include "regmach.h" | |
92bda632 | 22 | #include "imextdef.h" |
ec6d8908 | 23 | #include "imextpltypes.h" |
52d990d6 | 24 | #include "imperlio.h" |
4498c8bd | 25 | #include <float.h> |
a8652edf | 26 | |
92bda632 TC |
27 | #if i_int_hlines_testing() |
28 | #include "imageri.h" | |
02d1d628 AMH |
29 | #endif |
30 | ||
92bda632 | 31 | #include "imperl.h" |
faa9b3e7 | 32 | |
0d80f37e TC |
33 | #define ARRAY_COUNT(array) (sizeof(array)/sizeof(*array)) |
34 | ||
31a13473 TC |
35 | /* |
36 | ||
37 | Context object management | |
38 | ||
39 | */ | |
40 | ||
41 | typedef im_context_t Imager__Context; | |
42 | ||
43 | #define im_context_DESTROY(ctx) im_context_refdec((ctx), "DESTROY") | |
44 | ||
45 | #ifdef PERL_IMPLICIT_CONTEXT | |
46 | ||
47 | #define MY_CXT_KEY "Imager::_context" XS_VERSION | |
48 | ||
49 | typedef struct { | |
50 | im_context_t ctx; | |
51 | } my_cxt_t; | |
52 | ||
53 | START_MY_CXT | |
54 | ||
31a13473 TC |
55 | static void |
56 | start_context(pTHX) { | |
57 | dMY_CXT; | |
58 | MY_CXT.ctx = im_context_new(); | |
59 | sv_setref_pv(get_sv("Imager::_context", GV_ADD), "Imager::Context", MY_CXT.ctx); | |
31a13473 TC |
60 | } |
61 | ||
62 | static im_context_t | |
63 | perl_get_context(void) { | |
64 | dTHX; | |
65 | dMY_CXT; | |
66 | ||
2e23caff | 67 | return MY_CXT.ctx; |
31a13473 TC |
68 | } |
69 | ||
70 | #else | |
71 | ||
72 | static im_context_t perl_context; | |
73 | ||
74 | static void | |
75 | start_context(pTHX) { | |
76 | perl_context = im_context_new(); | |
2e23caff TC |
77 | |
78 | /* just so it gets destroyed */ | |
79 | sv_setref_pv(get_sv("Imager::_context", GV_ADD), "Imager::Context", perl_context); | |
31a13473 | 80 | } |
cf8c77ae TC |
81 | |
82 | static im_context_t | |
83 | perl_get_context(void) { | |
31a13473 | 84 | return perl_context; |
cf8c77ae TC |
85 | } |
86 | ||
31a13473 TC |
87 | #endif |
88 | ||
6a9807e8 TC |
89 | /* used to represent channel lists parameters */ |
90 | typedef struct i_channel_list_tag { | |
91 | int *channels; | |
92 | int count; | |
93 | } i_channel_list; | |
94 | ||
48b9a7bf TC |
95 | typedef struct { |
96 | size_t count; | |
97 | const i_sample_t *samples; | |
98 | } i_sample_list; | |
99 | ||
100 | typedef struct { | |
101 | size_t count; | |
102 | const i_fsample_t *samples; | |
103 | } i_fsample_list; | |
104 | ||
0d80f37e TC |
105 | typedef struct { |
106 | size_t count; | |
107 | const i_polygon_t *polygons; | |
108 | } i_polygon_list; | |
109 | ||
ebe9b189 TC |
110 | /* |
111 | ||
112 | Allocate memory that will be discarded when mortals are discarded. | |
113 | ||
114 | */ | |
115 | ||
116 | static void * | |
117 | malloc_temp(pTHX_ size_t size) { | |
3230a191 TC |
118 | void *result; |
119 | Newx(result, size, char); | |
120 | SAVEFREEPV(result); | |
ebe9b189 | 121 | |
3230a191 | 122 | return result; |
ebe9b189 TC |
123 | } |
124 | ||
0aaa8b4d TC |
125 | static void * |
126 | calloc_temp(pTHX_ size_t size) { | |
3230a191 TC |
127 | void *result; |
128 | Newxz(result, size, char); | |
129 | SAVEFREEPV(result); | |
0aaa8b4d TC |
130 | |
131 | return result; | |
132 | } | |
133 | ||
19e9591b | 134 | /* for use with the T_AVARRAY typemap */ |
0aaa8b4d TC |
135 | #define doublePtr(size) ((double *)calloc_temp(aTHX_ sizeof(double) * (size))) |
136 | #define SvDouble(sv, pname) (SvNV(sv)) | |
137 | ||
138 | #define intPtr(size) ((int *)calloc_temp(aTHX_ sizeof(int) * (size))) | |
139 | #define SvInt(sv, pname) (SvIV(sv)) | |
140 | ||
141 | #define i_img_dimPtr(size) ((i_img_dim *)calloc_temp(aTHX_ sizeof(i_img_dim) * (size))) | |
142 | #define SvI_img_dim(sv, pname) (SvIV(sv)) | |
19e9591b | 143 | |
4615ad8d | 144 | #define i_colorPtr(size) ((i_color *)calloc_temp(aTHX_ sizeof(i_color) * (size))) |
0aaa8b4d TC |
145 | |
146 | #define SvI_color(sv, pname) S_sv_to_i_color(aTHX_ sv, pname) | |
147 | ||
148 | static i_color | |
149 | S_sv_to_i_color(pTHX_ SV *sv, const char *pname) { | |
150 | if (!sv_derived_from(sv, "Imager::Color")) { | |
b6565be6 | 151 | croak("%s: not a color object", pname); |
0aaa8b4d TC |
152 | } |
153 | return *INT2PTR(i_color *, SvIV((SV *)SvRV(sv))); | |
154 | } | |
19e9591b | 155 | |
b33c08f8 TC |
156 | /* These functions are all shared - then comes platform dependant code */ |
157 | static int getstr(void *hv_t,char *key,char **store) { | |
b13a3ddb | 158 | dTHX; |
b33c08f8 TC |
159 | SV** svpp; |
160 | HV* hv=(HV*)hv_t; | |
161 | ||
8d14daab | 162 | mm_log((1,"getstr(hv_t %p, key %s, store %p)\n",hv_t,key,store)); |
b33c08f8 TC |
163 | |
164 | if ( !hv_exists(hv,key,strlen(key)) ) return 0; | |
165 | ||
166 | svpp=hv_fetch(hv, key, strlen(key), 0); | |
167 | *store=SvPV(*svpp, PL_na ); | |
168 | ||
169 | return 1; | |
170 | } | |
171 | ||
172 | static int getint(void *hv_t,char *key,int *store) { | |
b13a3ddb | 173 | dTHX; |
b33c08f8 TC |
174 | SV** svpp; |
175 | HV* hv=(HV*)hv_t; | |
176 | ||
8d14daab | 177 | mm_log((1,"getint(hv_t %p, key %s, store %p)\n",hv_t,key,store)); |
b33c08f8 TC |
178 | |
179 | if ( !hv_exists(hv,key,strlen(key)) ) return 0; | |
180 | ||
181 | svpp=hv_fetch(hv, key, strlen(key), 0); | |
182 | *store=(int)SvIV(*svpp); | |
183 | return 1; | |
184 | } | |
185 | ||
186 | static int getdouble(void *hv_t,char* key,double *store) { | |
b13a3ddb | 187 | dTHX; |
b33c08f8 TC |
188 | SV** svpp; |
189 | HV* hv=(HV*)hv_t; | |
190 | ||
8d14daab | 191 | mm_log((1,"getdouble(hv_t %p, key %s, store %p)\n",hv_t,key,store)); |
b33c08f8 TC |
192 | |
193 | if ( !hv_exists(hv,key,strlen(key)) ) return 0; | |
194 | svpp=hv_fetch(hv, key, strlen(key), 0); | |
8d14daab | 195 | *store=(double)SvNV(*svpp); |
b33c08f8 TC |
196 | return 1; |
197 | } | |
198 | ||
199 | static int getvoid(void *hv_t,char* key,void **store) { | |
b13a3ddb | 200 | dTHX; |
b33c08f8 TC |
201 | SV** svpp; |
202 | HV* hv=(HV*)hv_t; | |
203 | ||
8d14daab | 204 | mm_log((1,"getvoid(hv_t %p, key %s, store %p)\n",hv_t,key,store)); |
b33c08f8 TC |
205 | |
206 | if ( !hv_exists(hv,key,strlen(key)) ) return 0; | |
207 | ||
208 | svpp=hv_fetch(hv, key, strlen(key), 0); | |
209 | *store = INT2PTR(void*, SvIV(*svpp)); | |
210 | ||
211 | return 1; | |
212 | } | |
213 | ||
214 | static int getobj(void *hv_t,char *key,char *type,void **store) { | |
b13a3ddb | 215 | dTHX; |
b33c08f8 TC |
216 | SV** svpp; |
217 | HV* hv=(HV*)hv_t; | |
218 | ||
8d14daab | 219 | mm_log((1,"getobj(hv_t %p, key %s,type %s, store %p)\n",hv_t,key,type,store)); |
b33c08f8 TC |
220 | |
221 | if ( !hv_exists(hv,key,strlen(key)) ) return 0; | |
222 | ||
223 | svpp=hv_fetch(hv, key, strlen(key), 0); | |
224 | ||
225 | if (sv_derived_from(*svpp,type)) { | |
226 | IV tmp = SvIV((SV*)SvRV(*svpp)); | |
227 | *store = INT2PTR(void*, tmp); | |
228 | } else { | |
229 | mm_log((1,"getobj: key exists in hash but is not of correct type")); | |
230 | return 0; | |
231 | } | |
232 | ||
233 | return 1; | |
234 | } | |
235 | ||
236 | UTIL_table_t i_UTIL_table={getstr,getint,getdouble,getvoid,getobj}; | |
4dfa5522 | 237 | |
a87997b2 TC |
238 | static void |
239 | free_buffer(void *p) { | |
240 | myfree(p); | |
4dfa5522 AMH |
241 | } |
242 | ||
7f882a01 | 243 | |
b33c08f8 | 244 | static void |
bf1573f9 | 245 | i_log_entry(char *string, int level) { |
b7506a07 | 246 | mm_log((level, "%s", string)); |
7f882a01 AMH |
247 | } |
248 | ||
5e9a7fbd TC |
249 | static SV * |
250 | make_i_color_sv(pTHX_ const i_color *c) { | |
251 | SV *sv; | |
252 | i_color *col = mymalloc(sizeof(i_color)); | |
253 | *col = *c; | |
254 | sv = sv_newmortal(); | |
255 | sv_setref_pv(sv, "Imager::Color", (void *)col); | |
256 | ||
257 | return sv; | |
258 | } | |
7f882a01 | 259 | |
10461f9a TC |
260 | #define CBDATA_BUFSIZE 8192 |
261 | ||
262 | struct cbdata { | |
263 | /* the SVs we use to call back to Perl */ | |
264 | SV *writecb; | |
265 | SV *readcb; | |
266 | SV *seekcb; | |
267 | SV *closecb; | |
10461f9a TC |
268 | }; |
269 | ||
6d5c85a2 TC |
270 | static ssize_t |
271 | call_reader(struct cbdata *cbd, void *buf, size_t size, | |
272 | size_t maxread) { | |
b13a3ddb | 273 | dTHX; |
10461f9a TC |
274 | int count; |
275 | int result; | |
276 | SV *data; | |
277 | dSP; | |
278 | ||
9d5ff8a6 TC |
279 | if (!SvOK(cbd->readcb)) { |
280 | mm_log((1, "read callback called but no readcb supplied\n")); | |
281 | i_push_error(0, "read callback called but no readcb supplied"); | |
10461f9a | 282 | return -1; |
9d5ff8a6 | 283 | } |
10461f9a TC |
284 | |
285 | ENTER; | |
286 | SAVETMPS; | |
287 | EXTEND(SP, 2); | |
288 | PUSHMARK(SP); | |
289 | PUSHs(sv_2mortal(newSViv(size))); | |
290 | PUSHs(sv_2mortal(newSViv(maxread))); | |
291 | PUTBACK; | |
292 | ||
293 | count = perl_call_sv(cbd->readcb, G_SCALAR); | |
294 | ||
295 | SPAGAIN; | |
296 | ||
297 | if (count != 1) | |
298 | croak("Result of perl_call_sv(..., G_SCALAR) != 1"); | |
299 | ||
300 | data = POPs; | |
301 | ||
302 | if (SvOK(data)) { | |
303 | STRLEN len; | |
6d5c85a2 | 304 | char *ptr = SvPVbyte(data, len); |
10461f9a | 305 | if (len > maxread) |
6d5c85a2 TC |
306 | croak("Too much data returned in reader callback (wanted %d, got %d, expected %d)", |
307 | (int)size, (int)len, (int)maxread); | |
10461f9a TC |
308 | |
309 | memcpy(buf, ptr, len); | |
310 | result = len; | |
311 | } | |
312 | else { | |
313 | result = -1; | |
314 | } | |
315 | ||
316 | PUTBACK; | |
317 | FREETMPS; | |
318 | LEAVE; | |
319 | ||
320 | return result; | |
321 | } | |
322 | ||
6d5c85a2 TC |
323 | static off_t |
324 | io_seeker(void *p, off_t offset, int whence) { | |
b13a3ddb | 325 | dTHX; |
10461f9a TC |
326 | struct cbdata *cbd = p; |
327 | int count; | |
328 | off_t result; | |
329 | dSP; | |
330 | ||
9d5ff8a6 TC |
331 | if (!SvOK(cbd->seekcb)) { |
332 | mm_log((1, "seek callback called but no seekcb supplied\n")); | |
333 | i_push_error(0, "seek callback called but no seekcb supplied"); | |
10461f9a | 334 | return -1; |
9d5ff8a6 | 335 | } |
10461f9a | 336 | |
10461f9a TC |
337 | ENTER; |
338 | SAVETMPS; | |
339 | EXTEND(SP, 2); | |
340 | PUSHMARK(SP); | |
341 | PUSHs(sv_2mortal(newSViv(offset))); | |
342 | PUSHs(sv_2mortal(newSViv(whence))); | |
343 | PUTBACK; | |
344 | ||
345 | count = perl_call_sv(cbd->seekcb, G_SCALAR); | |
346 | ||
347 | SPAGAIN; | |
348 | ||
349 | if (count != 1) | |
350 | croak("Result of perl_call_sv(..., G_SCALAR) != 1"); | |
351 | ||
352 | result = POPi; | |
353 | ||
354 | PUTBACK; | |
355 | FREETMPS; | |
356 | LEAVE; | |
357 | ||
358 | return result; | |
359 | } | |
360 | ||
6d5c85a2 TC |
361 | static ssize_t |
362 | io_writer(void *p, void const *data, size_t size) { | |
b13a3ddb | 363 | dTHX; |
10461f9a | 364 | struct cbdata *cbd = p; |
6d5c85a2 TC |
365 | I32 count; |
366 | SV *sv; | |
367 | dSP; | |
368 | bool success; | |
10461f9a | 369 | |
9d5ff8a6 TC |
370 | if (!SvOK(cbd->writecb)) { |
371 | mm_log((1, "write callback called but no writecb supplied\n")); | |
372 | i_push_error(0, "write callback called but no writecb supplied"); | |
6d5c85a2 | 373 | return -1; |
9d5ff8a6 | 374 | } |
6d5c85a2 TC |
375 | |
376 | ENTER; | |
377 | SAVETMPS; | |
378 | EXTEND(SP, 1); | |
379 | PUSHMARK(SP); | |
380 | PUSHs(sv_2mortal(newSVpv((char *)data, size))); | |
381 | PUTBACK; | |
382 | ||
383 | count = perl_call_sv(cbd->writecb, G_SCALAR); | |
384 | ||
385 | SPAGAIN; | |
386 | if (count != 1) | |
387 | croak("Result of perl_call_sv(..., G_SCALAR) != 1"); | |
388 | ||
389 | sv = POPs; | |
390 | success = SvTRUE(sv); | |
391 | ||
392 | ||
393 | PUTBACK; | |
394 | FREETMPS; | |
395 | LEAVE; | |
396 | ||
397 | return success ? size : -1; | |
10461f9a TC |
398 | } |
399 | ||
1f6c1c10 TC |
400 | static ssize_t |
401 | io_reader(void *p, void *data, size_t size) { | |
10461f9a | 402 | struct cbdata *cbd = p; |
10461f9a | 403 | |
6d5c85a2 | 404 | return call_reader(cbd, data, size, size); |
10461f9a TC |
405 | } |
406 | ||
2b405c9e | 407 | static int io_closer(void *p) { |
b13a3ddb | 408 | dTHX; |
10461f9a | 409 | struct cbdata *cbd = p; |
6d5c85a2 | 410 | int success = 1; |
10461f9a TC |
411 | |
412 | if (SvOK(cbd->closecb)) { | |
413 | dSP; | |
6d5c85a2 | 414 | I32 count; |
10461f9a TC |
415 | |
416 | ENTER; | |
417 | SAVETMPS; | |
418 | PUSHMARK(SP); | |
419 | PUTBACK; | |
420 | ||
6d5c85a2 | 421 | count = perl_call_sv(cbd->closecb, G_SCALAR); |
10461f9a TC |
422 | |
423 | SPAGAIN; | |
6d5c85a2 | 424 | |
98747309 TC |
425 | if (count) { |
426 | SV *sv = POPs; | |
427 | success = SvTRUE(sv); | |
428 | } | |
429 | else | |
430 | success = 0; | |
6d5c85a2 | 431 | |
10461f9a TC |
432 | PUTBACK; |
433 | FREETMPS; | |
434 | LEAVE; | |
435 | } | |
2b405c9e | 436 | |
6d5c85a2 | 437 | return success ? 0 : -1; |
10461f9a TC |
438 | } |
439 | ||
440 | static void io_destroyer(void *p) { | |
b13a3ddb | 441 | dTHX; |
10461f9a TC |
442 | struct cbdata *cbd = p; |
443 | ||
444 | SvREFCNT_dec(cbd->writecb); | |
445 | SvREFCNT_dec(cbd->readcb); | |
446 | SvREFCNT_dec(cbd->seekcb); | |
447 | SvREFCNT_dec(cbd->closecb); | |
a4168bea | 448 | myfree(cbd); |
10461f9a TC |
449 | } |
450 | ||
a87997b2 TC |
451 | static bool |
452 | im_SvREFSCALAR(SV *sv) { | |
453 | svtype type = SvTYPE(sv); | |
ea87cee9 TC |
454 | |
455 | switch (type) { | |
456 | case SVt_PV: | |
457 | case SVt_PVIV: | |
458 | case SVt_PVNV: | |
459 | case SVt_PVMG: | |
460 | case SVt_IV: | |
461 | case SVt_NV: | |
462 | case SVt_PVLV: | |
463 | #if PERL_VERSION > 10 | |
464 | case SVt_REGEXP: | |
465 | #endif | |
466 | return 1; | |
467 | ||
468 | default: | |
469 | return 0; | |
470 | } | |
471 | } | |
472 | ||
473 | static const char * | |
474 | describe_sv(SV *sv) { | |
475 | if (SvOK(sv)) { | |
476 | if (SvROK(sv)) { | |
477 | svtype type = SvTYPE(SvRV(sv)); | |
478 | switch (type) { | |
479 | case SVt_PVCV: return "CV"; | |
480 | case SVt_PVGV: return "GV"; | |
481 | case SVt_PVLV: return "LV"; | |
482 | default: return "some reference"; | |
483 | } | |
484 | } | |
485 | else { | |
486 | return "non-reference scalar"; | |
487 | } | |
488 | } | |
489 | else { | |
490 | return "undef"; | |
491 | } | |
a87997b2 TC |
492 | } |
493 | ||
6d5c85a2 TC |
494 | static i_io_glue_t * |
495 | do_io_new_buffer(pTHX_ SV *data_sv) { | |
496 | const char *data; | |
a87997b2 | 497 | char *data_copy; |
6d5c85a2 | 498 | STRLEN length; |
a87997b2 TC |
499 | SV *sv; |
500 | ||
501 | SvGETMAGIC(data_sv); | |
502 | if (SvROK(data_sv)) { | |
ea87cee9 | 503 | if (im_SvREFSCALAR(SvRV(data_sv))) { |
a87997b2 TC |
504 | sv = SvRV(data_sv); |
505 | } | |
506 | else { | |
ea87cee9 | 507 | i_push_errorf(0, "data is not a scalar or a reference to scalar"); |
a87997b2 TC |
508 | return NULL; |
509 | } | |
510 | } | |
511 | else { | |
512 | sv = data_sv; | |
513 | } | |
6d5c85a2 | 514 | |
a87997b2 TC |
515 | /* previously this would keep the SV around, but this is unsafe in |
516 | many ways, so always copy the bytes */ | |
517 | data = SvPVbyte(sv, length); | |
518 | data_copy = mymalloc(length); | |
519 | memcpy(data_copy, data, length); | |
520 | return io_new_buffer(data_copy, length, free_buffer, data_copy); | |
6d5c85a2 TC |
521 | } |
522 | ||
523 | static i_io_glue_t * | |
524 | do_io_new_cb(pTHX_ SV *writecb, SV *readcb, SV *seekcb, SV *closecb) { | |
525 | struct cbdata *cbd; | |
526 | ||
527 | cbd = mymalloc(sizeof(struct cbdata)); | |
528 | cbd->writecb = newSVsv(writecb); | |
529 | cbd->readcb = newSVsv(readcb); | |
530 | cbd->seekcb = newSVsv(seekcb); | |
531 | cbd->closecb = newSVsv(closecb); | |
532 | ||
9d5ff8a6 TC |
533 | mm_log((1, "do_io_new_cb(writecb %p (%s), readcb %p (%s), seekcb %p (%s), closecb %p (%s))\n", writecb, describe_sv(writecb), readcb, describe_sv(readcb), seekcb, describe_sv(seekcb), closecb, describe_sv(closecb))); |
534 | ||
6d5c85a2 TC |
535 | return io_new_cb(cbd, io_reader, io_writer, io_seeker, io_closer, |
536 | io_destroyer); | |
537 | } | |
538 | ||
02d1d628 | 539 | struct value_name { |
a3b721bb | 540 | const char *name; |
02d1d628 AMH |
541 | int value; |
542 | }; | |
a3b721bb TC |
543 | static int |
544 | lookup_name(const struct value_name *names, int count, char *name, int def_value, int push_errors, const char *id, int *failed) | |
02d1d628 AMH |
545 | { |
546 | int i; | |
a3b721bb TC |
547 | |
548 | if (push_errors) | |
549 | *failed = 0; | |
550 | ||
02d1d628 AMH |
551 | for (i = 0; i < count; ++i) |
552 | if (strEQ(names[i].name, name)) | |
553 | return names[i].value; | |
554 | ||
a3b721bb TC |
555 | if (push_errors) { |
556 | i_push_errorf(0, "unknown value '%s' for %s", name, id); | |
557 | *failed = 1; | |
558 | } | |
559 | ||
02d1d628 AMH |
560 | return def_value; |
561 | } | |
a3b721bb | 562 | |
02d1d628 AMH |
563 | static struct value_name transp_names[] = |
564 | { | |
565 | { "none", tr_none }, | |
566 | { "threshold", tr_threshold }, | |
567 | { "errdiff", tr_errdiff }, | |
568 | { "ordered", tr_ordered, }, | |
569 | }; | |
570 | ||
571 | static struct value_name make_color_names[] = | |
572 | { | |
573 | { "none", mc_none, }, | |
574 | { "webmap", mc_web_map, }, | |
575 | { "addi", mc_addi, }, | |
97c4effc | 576 | { "mediancut", mc_median_cut, }, |
9c106321 TC |
577 | { "mono", mc_mono, }, |
578 | { "monochrome", mc_mono, }, | |
5e9a7fbd TC |
579 | { "gray", mc_gray, }, |
580 | { "gray4", mc_gray4, }, | |
581 | { "gray16", mc_gray16, }, | |
02d1d628 AMH |
582 | }; |
583 | ||
584 | static struct value_name translate_names[] = | |
585 | { | |
02d1d628 | 586 | { "giflib", pt_giflib, }, |
02d1d628 AMH |
587 | { "closest", pt_closest, }, |
588 | { "perturb", pt_perturb, }, | |
589 | { "errdiff", pt_errdiff, }, | |
590 | }; | |
591 | ||
592 | static struct value_name errdiff_names[] = | |
593 | { | |
594 | { "floyd", ed_floyd, }, | |
595 | { "jarvis", ed_jarvis, }, | |
596 | { "stucki", ed_stucki, }, | |
597 | { "custom", ed_custom, }, | |
598 | }; | |
599 | ||
600 | static struct value_name orddith_names[] = | |
601 | { | |
602 | { "random", od_random, }, | |
603 | { "dot8", od_dot8, }, | |
604 | { "dot4", od_dot4, }, | |
605 | { "hline", od_hline, }, | |
606 | { "vline", od_vline, }, | |
607 | { "/line", od_slashline, }, | |
608 | { "slashline", od_slashline, }, | |
609 | { "\\line", od_backline, }, | |
610 | { "backline", od_backline, }, | |
e7d4ea82 | 611 | { "tiny", od_tiny, }, |
02d1d628 AMH |
612 | { "custom", od_custom, }, |
613 | }; | |
614 | ||
615 | /* look through the hash for quantization options */ | |
a3b721bb TC |
616 | static int |
617 | ip_handle_quant_opts_low(pTHX_ i_quantize *quant, HV *hv, int push_errors) | |
02d1d628 | 618 | { |
02d1d628 AMH |
619 | SV **sv; |
620 | int i; | |
621 | STRLEN len; | |
622 | char *str; | |
a3b721bb | 623 | int failed = 0; |
02d1d628 | 624 | |
46a04ceb TC |
625 | quant->mc_colors = mymalloc(quant->mc_size * sizeof(i_color)); |
626 | ||
02d1d628 AMH |
627 | sv = hv_fetch(hv, "transp", 6, 0); |
628 | if (sv && *sv && (str = SvPV(*sv, len))) { | |
629 | quant->transp = | |
630 | lookup_name(transp_names, sizeof(transp_names)/sizeof(*transp_names), | |
a3b721bb TC |
631 | str, tr_none, push_errors, "transp", &failed); |
632 | if (failed) | |
633 | return 0; | |
02d1d628 AMH |
634 | if (quant->transp != tr_none) { |
635 | quant->tr_threshold = 127; | |
636 | sv = hv_fetch(hv, "tr_threshold", 12, 0); | |
637 | if (sv && *sv) | |
638 | quant->tr_threshold = SvIV(*sv); | |
639 | } | |
640 | if (quant->transp == tr_errdiff) { | |
641 | sv = hv_fetch(hv, "tr_errdiff", 10, 0); | |
642 | if (sv && *sv && (str = SvPV(*sv, len))) | |
a3b721bb TC |
643 | quant->tr_errdiff = lookup_name(errdiff_names, sizeof(errdiff_names)/sizeof(*errdiff_names), str, ed_floyd, push_errors, "tr_errdiff", &failed); |
644 | if (failed) | |
645 | return 0; | |
02d1d628 AMH |
646 | } |
647 | if (quant->transp == tr_ordered) { | |
e7d4ea82 | 648 | quant->tr_orddith = od_tiny; |
02d1d628 | 649 | sv = hv_fetch(hv, "tr_orddith", 10, 0); |
a3b721bb TC |
650 | if (sv && *sv && (str = SvPV(*sv, len))) { |
651 | quant->tr_orddith = lookup_name(orddith_names, sizeof(orddith_names)/sizeof(*orddith_names), str, od_random, push_errors, "tr_orddith", &failed); | |
652 | if (failed) | |
653 | return 0; | |
654 | } | |
02d1d628 AMH |
655 | |
656 | if (quant->tr_orddith == od_custom) { | |
657 | sv = hv_fetch(hv, "tr_map", 6, 0); | |
658 | if (sv && *sv && SvTYPE(SvRV(*sv)) == SVt_PVAV) { | |
659 | AV *av = (AV*)SvRV(*sv); | |
660 | len = av_len(av) + 1; | |
661 | if (len > sizeof(quant->tr_custom)) | |
662 | len = sizeof(quant->tr_custom); | |
663 | for (i = 0; i < len; ++i) { | |
664 | SV **sv2 = av_fetch(av, i, 0); | |
665 | if (sv2 && *sv2) { | |
666 | quant->tr_custom[i] = SvIV(*sv2); | |
667 | } | |
668 | } | |
669 | while (i < sizeof(quant->tr_custom)) | |
670 | quant->tr_custom[i++] = 0; | |
671 | } | |
672 | } | |
673 | } | |
674 | } | |
0348fe07 | 675 | quant->make_colors = mc_median_cut; |
02d1d628 AMH |
676 | sv = hv_fetch(hv, "make_colors", 11, 0); |
677 | if (sv && *sv && (str = SvPV(*sv, len))) { | |
678 | quant->make_colors = | |
a3b721bb TC |
679 | lookup_name(make_color_names, sizeof(make_color_names)/sizeof(*make_color_names), str, mc_median_cut, push_errors, "make_colors", &failed); |
680 | if (failed) | |
681 | return 0; | |
02d1d628 AMH |
682 | } |
683 | sv = hv_fetch(hv, "colors", 6, 0); | |
684 | if (sv && *sv && SvROK(*sv) && SvTYPE(SvRV(*sv)) == SVt_PVAV) { | |
685 | /* needs to be an array of Imager::Color | |
686 | note that the caller allocates the mc_color array and sets mc_size | |
687 | to it's size */ | |
688 | AV *av = (AV *)SvRV(*sv); | |
689 | quant->mc_count = av_len(av)+1; | |
690 | if (quant->mc_count > quant->mc_size) | |
691 | quant->mc_count = quant->mc_size; | |
692 | for (i = 0; i < quant->mc_count; ++i) { | |
693 | SV **sv1 = av_fetch(av, i, 0); | |
694 | if (sv1 && *sv1 && SvROK(*sv1) && sv_derived_from(*sv1, "Imager::Color")) { | |
4c4c2ffd | 695 | i_color *col = INT2PTR(i_color *, SvIV((SV*)SvRV(*sv1))); |
02d1d628 AMH |
696 | quant->mc_colors[i] = *col; |
697 | } | |
a3b721bb TC |
698 | else if (push_errors) { |
699 | i_push_errorf(0, "colors[%d] isn't an Imager::Color object", i); | |
700 | return 0; | |
701 | } | |
02d1d628 AMH |
702 | } |
703 | } | |
704 | sv = hv_fetch(hv, "max_colors", 10, 0); | |
705 | if (sv && *sv) { | |
706 | i = SvIV(*sv); | |
707 | if (i <= quant->mc_size && i >= quant->mc_count) | |
708 | quant->mc_size = i; | |
709 | } | |
710 | ||
711 | quant->translate = pt_closest; | |
712 | sv = hv_fetch(hv, "translate", 9, 0); | |
713 | if (sv && *sv && (str = SvPV(*sv, len))) { | |
a3b721bb TC |
714 | quant->translate = lookup_name(translate_names, sizeof(translate_names)/sizeof(*translate_names), str, pt_closest, push_errors, "translate", &failed); |
715 | if (failed) | |
716 | return 0; | |
02d1d628 AMH |
717 | } |
718 | sv = hv_fetch(hv, "errdiff", 7, 0); | |
719 | if (sv && *sv && (str = SvPV(*sv, len))) { | |
a3b721bb TC |
720 | quant->errdiff = lookup_name(errdiff_names, sizeof(errdiff_names)/sizeof(*errdiff_names), str, ed_floyd, push_errors, "errdiff", &failed); |
721 | if (failed) | |
722 | return 0; | |
02d1d628 AMH |
723 | } |
724 | if (quant->translate == pt_errdiff && quant->errdiff == ed_custom) { | |
725 | /* get the error diffusion map */ | |
726 | sv = hv_fetch(hv, "errdiff_width", 13, 0); | |
727 | if (sv && *sv) | |
728 | quant->ed_width = SvIV(*sv); | |
729 | sv = hv_fetch(hv, "errdiff_height", 14, 0); | |
730 | if (sv && *sv) | |
731 | quant->ed_height = SvIV(*sv); | |
732 | sv = hv_fetch(hv, "errdiff_orig", 12, 0); | |
733 | if (sv && *sv) | |
734 | quant->ed_orig = SvIV(*sv); | |
735 | if (quant->ed_width > 0 && quant->ed_height > 0) { | |
736 | int sum = 0; | |
737 | quant->ed_map = mymalloc(sizeof(int)*quant->ed_width*quant->ed_height); | |
738 | sv = hv_fetch(hv, "errdiff_map", 11, 0); | |
739 | if (sv && *sv && SvROK(*sv) && SvTYPE(SvRV(*sv)) == SVt_PVAV) { | |
740 | AV *av = (AV*)SvRV(*sv); | |
741 | len = av_len(av) + 1; | |
742 | if (len > quant->ed_width * quant->ed_height) | |
743 | len = quant->ed_width * quant->ed_height; | |
744 | for (i = 0; i < len; ++i) { | |
745 | SV **sv2 = av_fetch(av, i, 0); | |
746 | if (sv2 && *sv2) { | |
a3b721bb TC |
747 | IV iv = SvIV(*sv2); |
748 | if (push_errors && iv < 0) { | |
749 | i_push_errorf(0, "errdiff_map values must be non-negative, errdiff[%d] is negative", i); | |
750 | return 0; | |
751 | } | |
752 | quant->ed_map[i] = iv; | |
02d1d628 AMH |
753 | sum += quant->ed_map[i]; |
754 | } | |
755 | } | |
756 | } | |
757 | if (!sum) { | |
758 | /* broken map */ | |
759 | myfree(quant->ed_map); | |
760 | quant->ed_map = 0; | |
761 | quant->errdiff = ed_floyd; | |
a3b721bb TC |
762 | if (push_errors) { |
763 | i_push_error(0, "error diffusion map must contain some non-zero values"); | |
764 | return 0; | |
765 | } | |
02d1d628 AMH |
766 | } |
767 | } | |
768 | } | |
769 | sv = hv_fetch(hv, "perturb", 7, 0); | |
770 | if (sv && *sv) | |
771 | quant->perturb = SvIV(*sv); | |
a3b721bb TC |
772 | |
773 | return 1; | |
02d1d628 AMH |
774 | } |
775 | ||
ec6d8908 TC |
776 | static void |
777 | ip_cleanup_quant_opts(pTHX_ i_quantize *quant) { | |
46a04ceb TC |
778 | myfree(quant->mc_colors); |
779 | if (quant->ed_map) | |
780 | myfree(quant->ed_map); | |
781 | } | |
782 | ||
a3b721bb TC |
783 | static int |
784 | ip_handle_quant_opts2(pTHX_ i_quantize *quant, HV *hv) { | |
785 | int result = ip_handle_quant_opts_low(aTHX_ quant, hv, 1); | |
786 | if (!result) { | |
787 | ip_cleanup_quant_opts(aTHX_ quant); | |
788 | } | |
789 | return result; | |
790 | } | |
791 | ||
792 | static void | |
793 | ip_handle_quant_opts(pTHX_ i_quantize *quant, HV *hv) { | |
794 | (void)ip_handle_quant_opts_low(aTHX_ quant, hv, 0); | |
795 | } | |
796 | ||
02d1d628 | 797 | /* copies the color map from the hv into the colors member of the HV */ |
ec6d8908 TC |
798 | static void |
799 | ip_copy_colors_back(pTHX_ HV *hv, i_quantize *quant) { | |
02d1d628 AMH |
800 | SV **sv; |
801 | AV *av; | |
802 | int i; | |
803 | SV *work; | |
804 | ||
805 | sv = hv_fetch(hv, "colors", 6, 0); | |
806 | if (!sv || !*sv || !SvROK(*sv) || SvTYPE(SvRV(*sv)) != SVt_PVAV) { | |
5c0d0ddf TC |
807 | /* nothing to do */ |
808 | return; | |
02d1d628 | 809 | } |
5c0d0ddf TC |
810 | |
811 | av = (AV *)SvRV(*sv); | |
812 | av_clear(av); | |
02d1d628 AMH |
813 | av_extend(av, quant->mc_count+1); |
814 | for (i = 0; i < quant->mc_count; ++i) { | |
815 | i_color *in = quant->mc_colors+i; | |
816 | Imager__Color c = ICL_new_internal(in->rgb.r, in->rgb.g, in->rgb.b, 255); | |
817 | work = sv_newmortal(); | |
818 | sv_setref_pv(work, "Imager::Color", (void *)c); | |
819 | SvREFCNT_inc(work); | |
5c0d0ddf | 820 | av_push(av, work); |
02d1d628 AMH |
821 | } |
822 | } | |
823 | ||
0d80f37e TC |
824 | static struct value_name |
825 | poly_fill_mode_names[] = | |
826 | { | |
827 | { "evenodd", i_pfm_evenodd }, | |
828 | { "nonzero", i_pfm_nonzero } | |
829 | }; | |
830 | ||
831 | static i_poly_fill_mode_t | |
832 | S_get_poly_fill_mode(pTHX_ SV *sv) { | |
833 | if (looks_like_number(sv)) { | |
834 | IV work = SvIV(sv); | |
835 | if (work < (IV)i_pfm_evenodd || work > (IV)i_pfm_nonzero) | |
836 | work = (IV)i_pfm_evenodd; | |
837 | return (i_poly_fill_mode_t)work; | |
838 | } | |
839 | else { | |
840 | return (i_poly_fill_mode_t)lookup_name | |
841 | (poly_fill_mode_names, ARRAY_COUNT(poly_fill_mode_names), | |
a3b721bb | 842 | SvPV_nolen(sv), i_pfm_evenodd, 0, NULL, NULL); |
0d80f37e TC |
843 | } |
844 | } | |
845 | ||
846 | static void | |
847 | S_get_polygon_list(pTHX_ i_polygon_list *polys, SV *sv) { | |
848 | AV *av; | |
849 | int i; | |
850 | i_polygon_t *s; | |
851 | ||
852 | SvGETMAGIC(sv); | |
853 | if (!SvOK(sv) || !SvROK(sv) || SvTYPE(SvRV(sv)) != SVt_PVAV) | |
854 | croak("polys must be an arrayref"); | |
855 | ||
856 | av = (AV*)SvRV(sv); | |
857 | polys->count = av_len(av) + 1; | |
858 | if (polys->count < 1) | |
859 | croak("polypolygon: no polygons provided"); | |
860 | s = malloc_temp(aTHX_ sizeof(i_polygon_t) * polys->count); | |
861 | for (i = 0; i < polys->count; ++i) { | |
862 | SV **poly_sv = av_fetch(av, i, 0); | |
863 | AV *poly_av; | |
864 | SV **x_sv, **y_sv; | |
865 | AV *x_av, *y_av; | |
866 | double *x_data, *y_data; | |
867 | ssize_t j; | |
868 | ssize_t point_count; | |
869 | ||
870 | if (!poly_sv) | |
871 | croak("poly_polygon: nothing found for polygon %d", i); | |
872 | /* needs to be another av */ | |
873 | SvGETMAGIC(*poly_sv); | |
874 | if (!SvOK(*poly_sv) || !SvROK(*poly_sv) || SvTYPE(SvRV(*poly_sv)) != SVt_PVAV) | |
875 | croak("poly_polygon: polygon %d isn't an arrayref", i); | |
876 | poly_av = (AV*)SvRV(*poly_sv); | |
877 | /* with two elements */ | |
878 | if (av_len(poly_av) != 1) | |
879 | croak("poly_polygon: polygon %d should contain two arrays", i); | |
880 | x_sv = av_fetch(poly_av, 0, 0); | |
881 | y_sv = av_fetch(poly_av, 1, 0); | |
882 | if (!x_sv) | |
883 | croak("poly_polygon: polygon %d has no x elements", i); | |
884 | if (!y_sv) | |
885 | croak("poly_polygon: polygon %d has no y elements", i); | |
886 | SvGETMAGIC(*x_sv); | |
887 | SvGETMAGIC(*y_sv); | |
888 | if (!SvOK(*x_sv) || !SvROK(*x_sv) || SvTYPE(SvRV(*x_sv)) != SVt_PVAV) | |
889 | croak("poly_polygon: polygon %d x elements isn't an array", i); | |
890 | if (!SvOK(*y_sv) || !SvROK(*y_sv) || SvTYPE(SvRV(*y_sv)) != SVt_PVAV) | |
891 | croak("poly_polygon: polygon %d y elements isn't an array", i); | |
892 | x_av = (AV*)SvRV(*x_sv); | |
893 | y_av = (AV*)SvRV(*y_sv); | |
894 | if (av_len(x_av) != av_len(y_av)) | |
895 | croak("poly_polygon: polygon %d x and y arrays different lengths", i+1); | |
896 | point_count = av_len(x_av)+1; | |
897 | x_data = malloc_temp(aTHX_ sizeof(double) * point_count * 2); | |
898 | y_data = x_data + point_count; | |
899 | ||
900 | for (j = 0; j < point_count; ++j) { | |
901 | SV **x_item_sv = av_fetch(x_av, j, 0); | |
902 | SV **y_item_sv = av_fetch(y_av, j, 0); | |
903 | x_data[j] = x_item_sv ? SvNV(*x_item_sv) : 0; | |
904 | y_data[j] = y_item_sv ? SvNV(*y_item_sv) : 0; | |
905 | } | |
906 | s[i].x = x_data; | |
907 | s[i].y = y_data; | |
908 | s[i].count = point_count; | |
909 | } | |
910 | polys->polygons = s; | |
911 | } | |
912 | ||
f1ac5027 | 913 | /* loads the segments of a fountain fill into an array */ |
b33c08f8 | 914 | static i_fountain_seg * |
b13a3ddb | 915 | load_fount_segs(pTHX_ AV *asegs, int *count) { |
f1ac5027 TC |
916 | /* Each element of segs must contain: |
917 | [ start, middle, end, c0, c1, segtype, colortrans ] | |
918 | start, middle, end are doubles from 0 to 1 | |
919 | c0, c1 are Imager::Color::Float or Imager::Color objects | |
920 | segtype, colortrans are ints | |
921 | */ | |
922 | int i, j; | |
923 | AV *aseg; | |
f1ac5027 TC |
924 | i_fountain_seg *segs; |
925 | double work[3]; | |
926 | int worki[2]; | |
927 | ||
928 | *count = av_len(asegs)+1; | |
929 | if (*count < 1) | |
930 | croak("i_fountain must have at least one segment"); | |
931 | segs = mymalloc(sizeof(i_fountain_seg) * *count); | |
932 | for(i = 0; i < *count; i++) { | |
933 | SV **sv1 = av_fetch(asegs, i, 0); | |
934 | if (!sv1 || !*sv1 || !SvROK(*sv1) | |
935 | || SvTYPE(SvRV(*sv1)) != SVt_PVAV) { | |
936 | myfree(segs); | |
937 | croak("i_fountain: segs must be an arrayref of arrayrefs"); | |
938 | } | |
939 | aseg = (AV *)SvRV(*sv1); | |
940 | if (av_len(aseg) != 7-1) { | |
941 | myfree(segs); | |
942 | croak("i_fountain: a segment must have 7 members"); | |
943 | } | |
944 | for (j = 0; j < 3; ++j) { | |
945 | SV **sv2 = av_fetch(aseg, j, 0); | |
946 | if (!sv2 || !*sv2) { | |
947 | myfree(segs); | |
948 | croak("i_fountain: XS error"); | |
949 | } | |
950 | work[j] = SvNV(*sv2); | |
951 | } | |
952 | segs[i].start = work[0]; | |
953 | segs[i].middle = work[1]; | |
954 | segs[i].end = work[2]; | |
955 | for (j = 0; j < 2; ++j) { | |
956 | SV **sv3 = av_fetch(aseg, 3+j, 0); | |
957 | if (!sv3 || !*sv3 || !SvROK(*sv3) || | |
958 | (!sv_derived_from(*sv3, "Imager::Color") | |
959 | && !sv_derived_from(*sv3, "Imager::Color::Float"))) { | |
960 | myfree(segs); | |
961 | croak("i_fountain: segs must contain colors in elements 3 and 4"); | |
962 | } | |
963 | if (sv_derived_from(*sv3, "Imager::Color::Float")) { | |
4c4c2ffd | 964 | segs[i].c[j] = *INT2PTR(i_fcolor *, SvIV((SV *)SvRV(*sv3))); |
f1ac5027 TC |
965 | } |
966 | else { | |
4c4c2ffd | 967 | i_color c = *INT2PTR(i_color *, SvIV((SV *)SvRV(*sv3))); |
f1ac5027 TC |
968 | int ch; |
969 | for (ch = 0; ch < MAXCHANNELS; ++ch) { | |
970 | segs[i].c[j].channel[ch] = c.channel[ch] / 255.0; | |
971 | } | |
972 | } | |
973 | } | |
974 | for (j = 0; j < 2; ++j) { | |
975 | SV **sv2 = av_fetch(aseg, j+5, 0); | |
976 | if (!sv2 || !*sv2) { | |
977 | myfree(segs); | |
978 | croak("i_fountain: XS error"); | |
979 | } | |
980 | worki[j] = SvIV(*sv2); | |
981 | } | |
982 | segs[i].type = worki[0]; | |
983 | segs[i].color = worki[1]; | |
984 | } | |
985 | ||
986 | return segs; | |
987 | } | |
988 | ||
4cda4e76 TC |
989 | /* validates the indexes supplied to i_ppal |
990 | ||
991 | i_ppal() doesn't do that for speed, but I'm not comfortable doing that | |
992 | for calls from perl. | |
993 | ||
994 | */ | |
995 | static void | |
996 | validate_i_ppal(i_img *im, i_palidx const *indexes, int count) { | |
997 | int color_count = i_colorcount(im); | |
998 | int i; | |
999 | ||
1000 | if (color_count == -1) | |
1001 | croak("i_plin() called on direct color image"); | |
1002 | ||
1003 | for (i = 0; i < count; ++i) { | |
1004 | if (indexes[i] >= color_count) { | |
1005 | croak("i_plin() called with out of range color index %d (max %d)", | |
1006 | indexes[i], color_count-1); | |
1007 | } | |
1008 | } | |
1009 | } | |
1010 | ||
faa9b3e7 TC |
1011 | /* I don't think ICLF_* names belong at the C interface |
1012 | this makes the XS code think we have them, to let us avoid | |
1013 | putting function bodies in the XS code | |
1014 | */ | |
1015 | #define ICLF_new_internal(r, g, b, a) i_fcolor_new((r), (g), (b), (a)) | |
1016 | #define ICLF_DESTROY(cl) i_fcolor_destroy(cl) | |
1017 | ||
10ea52a3 TC |
1018 | #ifdef IMAGER_LOG |
1019 | #define i_log_enabled() 1 | |
1020 | #else | |
1021 | #define i_log_enabled() 0 | |
1022 | #endif | |
1023 | ||
a8652edf TC |
1024 | #if i_int_hlines_testing() |
1025 | ||
1026 | typedef i_int_hlines *Imager__Internal__Hlines; | |
1027 | ||
1028 | static i_int_hlines * | |
8d14daab | 1029 | i_int_hlines_new(i_img_dim start_y, i_img_dim count_y, i_img_dim start_x, i_img_dim count_x) { |
a8652edf TC |
1030 | i_int_hlines *result = mymalloc(sizeof(i_int_hlines)); |
1031 | i_int_init_hlines(result, start_y, count_y, start_x, count_x); | |
1032 | ||
1033 | return result; | |
1034 | } | |
1035 | ||
1036 | static i_int_hlines * | |
1037 | i_int_hlines_new_img(i_img *im) { | |
1038 | i_int_hlines *result = mymalloc(sizeof(i_int_hlines)); | |
1039 | i_int_init_hlines_img(result, im); | |
1040 | ||
1041 | return result; | |
1042 | } | |
1043 | ||
1044 | static void | |
1045 | i_int_hlines_DESTROY(i_int_hlines *hlines) { | |
1046 | i_int_hlines_destroy(hlines); | |
1047 | myfree(hlines); | |
1048 | } | |
1049 | ||
ffddd407 TC |
1050 | #define i_int_hlines_CLONE_SKIP(cls) 1 |
1051 | ||
a8652edf TC |
1052 | static int seg_compare(const void *vleft, const void *vright) { |
1053 | const i_int_hline_seg *left = vleft; | |
1054 | const i_int_hline_seg *right = vright; | |
1055 | ||
1056 | return left->minx - right->minx; | |
1057 | } | |
1058 | ||
1059 | static SV * | |
1060 | i_int_hlines_dump(i_int_hlines *hlines) { | |
b13a3ddb | 1061 | dTHX; |
8d14daab TC |
1062 | SV *dump = newSVpvf("start_y: %" i_DF " limit_y: %" i_DF " start_x: %" i_DF " limit_x: %" i_DF"\n", |
1063 | i_DFc(hlines->start_y), i_DFc(hlines->limit_y), i_DFc(hlines->start_x), i_DFc(hlines->limit_x)); | |
1064 | i_img_dim y; | |
a8652edf TC |
1065 | |
1066 | for (y = hlines->start_y; y < hlines->limit_y; ++y) { | |
1067 | i_int_hline_entry *entry = hlines->entries[y-hlines->start_y]; | |
1068 | if (entry) { | |
1069 | int i; | |
1070 | /* sort the segments, if any */ | |
1071 | if (entry->count) | |
1072 | qsort(entry->segs, entry->count, sizeof(i_int_hline_seg), seg_compare); | |
1073 | ||
8d14daab | 1074 | sv_catpvf(dump, " %" i_DF " (%" i_DF "):", i_DFc(y), i_DFc(entry->count)); |
a8652edf | 1075 | for (i = 0; i < entry->count; ++i) { |
8d14daab TC |
1076 | sv_catpvf(dump, " [%" i_DF ", %" i_DF ")", i_DFc(entry->segs[i].minx), |
1077 | i_DFc(entry->segs[i].x_limit)); | |
a8652edf TC |
1078 | } |
1079 | sv_catpv(dump, "\n"); | |
1080 | } | |
1081 | } | |
1082 | ||
1083 | return dump; | |
1084 | } | |
1085 | ||
1086 | #endif | |
1087 | ||
8d14daab TC |
1088 | static off_t |
1089 | i_sv_off_t(pTHX_ SV *sv) { | |
1090 | #if LSEEKSIZE > IVSIZE | |
1091 | return (off_t)SvNV(sv); | |
1092 | #else | |
1093 | return (off_t)SvIV(sv); | |
1094 | #endif | |
1095 | } | |
1096 | ||
1097 | static SV * | |
1098 | i_new_sv_off_t(pTHX_ off_t off) { | |
1099 | #if LSEEKSIZE > IVSIZE | |
1100 | return newSVnv(off); | |
1101 | #else | |
1102 | return newSViv(off); | |
1103 | #endif | |
1104 | } | |
1105 | ||
ec6d8908 TC |
1106 | static im_pl_ext_funcs im_perl_funcs = |
1107 | { | |
1108 | IMAGER_PL_API_VERSION, | |
1109 | IMAGER_PL_API_LEVEL, | |
1110 | ip_handle_quant_opts, | |
1111 | ip_cleanup_quant_opts, | |
a3b721bb TC |
1112 | ip_copy_colors_back, |
1113 | ip_handle_quant_opts2 | |
ec6d8908 TC |
1114 | }; |
1115 | ||
1116 | #define PERL_PL_SET_GLOBAL_CALLBACKS \ | |
1117 | sv_setiv(get_sv(PERL_PL_FUNCTION_TABLE_NAME, 1), PTR2IV(&im_perl_funcs)); | |
1118 | ||
bdd4c63b TC |
1119 | #define IIM_new i_img_8_new |
1120 | #define IIM_DESTROY i_img_destroy | |
42505e61 | 1121 | typedef int SysRet; |
bdd4c63b | 1122 | |
f7450478 TC |
1123 | #ifdef IMEXIF_ENABLE |
1124 | #define i_exif_enabled() 1 | |
1125 | #else | |
1126 | #define i_exif_enabled() 0 | |
1127 | #endif | |
1128 | ||
d16420e9 | 1129 | /* trying to use more C style names, map them here */ |
eda1622c | 1130 | #define i_io_DESTROY(ig) io_glue_destroy(ig) |
d16420e9 | 1131 | |
3b000586 TC |
1132 | #define i_img_get_width(im) ((im)->xsize) |
1133 | #define i_img_get_height(im) ((im)->ysize) | |
1134 | ||
4498c8bd TC |
1135 | #define i_img_epsilonf() (DBL_EPSILON * 4) |
1136 | ||
6d5c85a2 TC |
1137 | /* avoid some xsubpp strangeness */ |
1138 | #define NEWLINE '\n' | |
1139 | ||
02d1d628 AMH |
1140 | MODULE = Imager PACKAGE = Imager::Color PREFIX = ICL_ |
1141 | ||
1142 | Imager::Color | |
1143 | ICL_new_internal(r,g,b,a) | |
1144 | unsigned char r | |
1145 | unsigned char g | |
1146 | unsigned char b | |
1147 | unsigned char a | |
1148 | ||
1149 | void | |
1150 | ICL_DESTROY(cl) | |
1151 | Imager::Color cl | |
1152 | ||
1153 | ||
29106a11 | 1154 | void |
02d1d628 AMH |
1155 | ICL_set_internal(cl,r,g,b,a) |
1156 | Imager::Color cl | |
1157 | unsigned char r | |
1158 | unsigned char g | |
1159 | unsigned char b | |
1160 | unsigned char a | |
29106a11 | 1161 | PPCODE: |
b7346865 TC |
1162 | cl->rgba.r = r; |
1163 | cl->rgba.g = g; | |
1164 | cl->rgba.b = b; | |
1165 | cl->rgba.a = a; | |
29106a11 TC |
1166 | EXTEND(SP, 1); |
1167 | PUSHs(ST(0)); | |
02d1d628 AMH |
1168 | |
1169 | void | |
1170 | ICL_info(cl) | |
1171 | Imager::Color cl | |
1172 | ||
1173 | ||
1174 | void | |
1175 | ICL_rgba(cl) | |
1176 | Imager::Color cl | |
1177 | PPCODE: | |
1178 | EXTEND(SP, 4); | |
b482243a TC |
1179 | PUSHs(sv_2mortal(newSViv(cl->rgba.r))); |
1180 | PUSHs(sv_2mortal(newSViv(cl->rgba.g))); | |
1181 | PUSHs(sv_2mortal(newSViv(cl->rgba.b))); | |
1182 | PUSHs(sv_2mortal(newSViv(cl->rgba.a))); | |
02d1d628 | 1183 | |
efdc2568 TC |
1184 | Imager::Color |
1185 | i_hsv_to_rgb(c) | |
1186 | Imager::Color c | |
1187 | CODE: | |
1188 | RETVAL = mymalloc(sizeof(i_color)); | |
1189 | *RETVAL = *c; | |
1190 | i_hsv_to_rgb(RETVAL); | |
1191 | OUTPUT: | |
1192 | RETVAL | |
1193 | ||
1194 | Imager::Color | |
1195 | i_rgb_to_hsv(c) | |
1196 | Imager::Color c | |
1197 | CODE: | |
1198 | RETVAL = mymalloc(sizeof(i_color)); | |
1199 | *RETVAL = *c; | |
1200 | i_rgb_to_hsv(RETVAL); | |
1201 | OUTPUT: | |
1202 | RETVAL | |
1203 | ||
02d1d628 AMH |
1204 | |
1205 | ||
faa9b3e7 | 1206 | MODULE = Imager PACKAGE = Imager::Color::Float PREFIX=ICLF_ |
02d1d628 | 1207 | |
faa9b3e7 TC |
1208 | Imager::Color::Float |
1209 | ICLF_new_internal(r, g, b, a) | |
1210 | double r | |
1211 | double g | |
1212 | double b | |
1213 | double a | |
1214 | ||
1215 | void | |
1216 | ICLF_DESTROY(cl) | |
1217 | Imager::Color::Float cl | |
02d1d628 | 1218 | |
faa9b3e7 TC |
1219 | void |
1220 | ICLF_rgba(cl) | |
1221 | Imager::Color::Float cl | |
1222 | PREINIT: | |
1223 | int ch; | |
1224 | PPCODE: | |
1225 | EXTEND(SP, MAXCHANNELS); | |
1226 | for (ch = 0; ch < MAXCHANNELS; ++ch) { | |
1227 | /* printf("%d: %g\n", ch, cl->channel[ch]); */ | |
1228 | PUSHs(sv_2mortal(newSVnv(cl->channel[ch]))); | |
1229 | } | |
1230 | ||
1231 | void | |
1232 | ICLF_set_internal(cl,r,g,b,a) | |
1233 | Imager::Color::Float cl | |
1234 | double r | |
1235 | double g | |
1236 | double b | |
1237 | double a | |
1238 | PPCODE: | |
1239 | cl->rgba.r = r; | |
1240 | cl->rgba.g = g; | |
1241 | cl->rgba.b = b; | |
1242 | cl->rgba.a = a; | |
1243 | EXTEND(SP, 1); | |
1244 | PUSHs(ST(0)); | |
02d1d628 | 1245 | |
efdc2568 TC |
1246 | Imager::Color::Float |
1247 | i_hsv_to_rgb(c) | |
1248 | Imager::Color::Float c | |
1249 | CODE: | |
1250 | RETVAL = mymalloc(sizeof(i_fcolor)); | |
1251 | *RETVAL = *c; | |
1252 | i_hsv_to_rgbf(RETVAL); | |
1253 | OUTPUT: | |
1254 | RETVAL | |
1255 | ||
1256 | Imager::Color::Float | |
1257 | i_rgb_to_hsv(c) | |
1258 | Imager::Color::Float c | |
1259 | CODE: | |
1260 | RETVAL = mymalloc(sizeof(i_fcolor)); | |
1261 | *RETVAL = *c; | |
1262 | i_rgb_to_hsvf(RETVAL); | |
1263 | OUTPUT: | |
1264 | RETVAL | |
efdc2568 | 1265 | |
02d1d628 AMH |
1266 | MODULE = Imager PACKAGE = Imager::ImgRaw PREFIX = IIM_ |
1267 | ||
1268 | Imager::ImgRaw | |
1269 | IIM_new(x,y,ch) | |
8d14daab TC |
1270 | i_img_dim x |
1271 | i_img_dim y | |
02d1d628 AMH |
1272 | int ch |
1273 | ||
1274 | void | |
1275 | IIM_DESTROY(im) | |
1276 | Imager::ImgRaw im | |
1277 | ||
1278 | ||
1279 | ||
1280 | MODULE = Imager PACKAGE = Imager | |
1281 | ||
1282 | PROTOTYPES: ENABLE | |
1283 | ||
1284 | ||
1285 | Imager::IO | |
1286 | io_new_fd(fd) | |
1287 | int fd | |
1288 | ||
1289 | Imager::IO | |
1290 | io_new_bufchain() | |
1291 | ||
1292 | ||
4dfa5522 | 1293 | Imager::IO |
6d5c85a2 TC |
1294 | io_new_buffer(data_sv) |
1295 | SV *data_sv | |
4dfa5522 | 1296 | CODE: |
a87997b2 | 1297 | i_clear_error(); |
6d5c85a2 | 1298 | RETVAL = do_io_new_buffer(aTHX_ data_sv); |
a87997b2 TC |
1299 | if (!RETVAL) |
1300 | XSRETURN(0); | |
4dfa5522 AMH |
1301 | OUTPUT: |
1302 | RETVAL | |
10461f9a TC |
1303 | |
1304 | Imager::IO | |
1305 | io_new_cb(writecb, readcb, seekcb, closecb, maxwrite = CBDATA_BUFSIZE) | |
1306 | SV *writecb; | |
1307 | SV *readcb; | |
1308 | SV *seekcb; | |
1309 | SV *closecb; | |
10461f9a | 1310 | CODE: |
6d5c85a2 | 1311 | RETVAL = do_io_new_cb(aTHX_ writecb, readcb, seekcb, closecb); |
10461f9a TC |
1312 | OUTPUT: |
1313 | RETVAL | |
4dfa5522 | 1314 | |
6d5c85a2 | 1315 | SV * |
02d1d628 AMH |
1316 | io_slurp(ig) |
1317 | Imager::IO ig | |
1318 | PREINIT: | |
1319 | unsigned char* data; | |
4dfa5522 | 1320 | size_t tlength; |
6d5c85a2 | 1321 | CODE: |
02d1d628 AMH |
1322 | data = NULL; |
1323 | tlength = io_slurp(ig, &data); | |
6d5c85a2 | 1324 | RETVAL = newSVpv((char *)data,tlength); |
02d1d628 | 1325 | myfree(data); |
6d5c85a2 TC |
1326 | OUTPUT: |
1327 | RETVAL | |
02d1d628 AMH |
1328 | |
1329 | ||
77157728 TC |
1330 | undef_int |
1331 | i_set_image_file_limits(width, height, bytes) | |
8d14daab TC |
1332 | i_img_dim width |
1333 | i_img_dim height | |
1334 | size_t bytes | |
77157728 TC |
1335 | |
1336 | void | |
1337 | i_get_image_file_limits() | |
1338 | PREINIT: | |
8d14daab TC |
1339 | i_img_dim width, height; |
1340 | size_t bytes; | |
77157728 TC |
1341 | PPCODE: |
1342 | if (i_get_image_file_limits(&width, &height, &bytes)) { | |
1343 | EXTEND(SP, 3); | |
1344 | PUSHs(sv_2mortal(newSViv(width))); | |
1345 | PUSHs(sv_2mortal(newSViv(height))); | |
8d14daab | 1346 | PUSHs(sv_2mortal(newSVuv(bytes))); |
77157728 TC |
1347 | } |
1348 | ||
e1558ffe TC |
1349 | bool |
1350 | i_int_check_image_file_limits(width, height, channels, sample_size) | |
1351 | i_img_dim width | |
1352 | i_img_dim height | |
1353 | int channels | |
1354 | size_t sample_size | |
1355 | PROTOTYPE: DISABLE | |
1356 | ||
6d5c85a2 TC |
1357 | MODULE = Imager PACKAGE = Imager::IO PREFIX = io_ |
1358 | ||
1359 | Imager::IO | |
1360 | io_new_fd(class, fd) | |
1361 | int fd | |
1362 | CODE: | |
1363 | RETVAL = io_new_fd(fd); | |
1364 | OUTPUT: | |
1365 | RETVAL | |
1366 | ||
1367 | Imager::IO | |
1368 | io_new_buffer(class, data_sv) | |
1369 | SV *data_sv | |
1370 | CODE: | |
a87997b2 | 1371 | i_clear_error(); |
6d5c85a2 | 1372 | RETVAL = do_io_new_buffer(aTHX_ data_sv); |
a87997b2 TC |
1373 | if (!RETVAL) |
1374 | XSRETURN(0); | |
6d5c85a2 TC |
1375 | OUTPUT: |
1376 | RETVAL | |
1377 | ||
1378 | Imager::IO | |
1379 | io_new_cb(class, writecb, readcb, seekcb, closecb) | |
1380 | SV *writecb; | |
1381 | SV *readcb; | |
1382 | SV *seekcb; | |
1383 | SV *closecb; | |
1384 | CODE: | |
1385 | RETVAL = do_io_new_cb(aTHX_ writecb, readcb, seekcb, closecb); | |
1386 | OUTPUT: | |
1387 | RETVAL | |
1388 | ||
1389 | Imager::IO | |
1390 | io_new_bufchain(class) | |
1391 | CODE: | |
1392 | RETVAL = io_new_bufchain(); | |
1393 | OUTPUT: | |
1394 | RETVAL | |
1395 | ||
52d990d6 TC |
1396 | Imager::IO |
1397 | io__new_perlio(class, io) | |
1398 | PerlIO *io | |
1399 | CODE: | |
1400 | RETVAL = im_io_new_perlio(aTHX_ io); | |
1401 | OUTPUT: | |
1402 | RETVAL | |
1403 | ||
6d5c85a2 TC |
1404 | SV * |
1405 | io_slurp(class, ig) | |
1406 | Imager::IO ig | |
1407 | PREINIT: | |
1408 | unsigned char* data; | |
1409 | size_t tlength; | |
1410 | CODE: | |
1411 | data = NULL; | |
1412 | tlength = io_slurp(ig, &data); | |
1413 | RETVAL = newSVpv((char *)data,tlength); | |
1414 | myfree(data); | |
1415 | OUTPUT: | |
1416 | RETVAL | |
1417 | ||
eda1622c TC |
1418 | MODULE = Imager PACKAGE = Imager::IO PREFIX = i_io_ |
1419 | ||
6d5c85a2 TC |
1420 | IV |
1421 | i_io_raw_write(ig, data_sv) | |
eda1622c TC |
1422 | Imager::IO ig |
1423 | SV *data_sv | |
1424 | PREINIT: | |
1425 | void *data; | |
1426 | STRLEN size; | |
1427 | CODE: | |
40a88898 | 1428 | data = SvPVbyte(data_sv, size); |
6d5c85a2 | 1429 | RETVAL = i_io_raw_write(ig, data, size); |
eda1622c TC |
1430 | OUTPUT: |
1431 | RETVAL | |
1432 | ||
1f6c1c10 | 1433 | void |
6d5c85a2 | 1434 | i_io_raw_read(ig, buffer_sv, size) |
eda1622c TC |
1435 | Imager::IO ig |
1436 | SV *buffer_sv | |
8d14daab | 1437 | IV size |
eda1622c TC |
1438 | PREINIT: |
1439 | void *buffer; | |
8d14daab | 1440 | ssize_t result; |
1f6c1c10 TC |
1441 | PPCODE: |
1442 | if (size <= 0) | |
6d5c85a2 | 1443 | croak("size negative in call to i_io_raw_read()"); |
d1442cc4 TC |
1444 | /* prevent an undefined value warning if they supplied an |
1445 | undef buffer. | |
1446 | Orginally conditional on !SvOK(), but this will prevent the | |
1447 | downgrade from croaking */ | |
1448 | sv_setpvn(buffer_sv, "", 0); | |
1449 | #ifdef SvUTF8 | |
1450 | if (SvUTF8(buffer_sv)) | |
1451 | sv_utf8_downgrade(buffer_sv, FALSE); | |
1452 | #endif | |
eda1622c | 1453 | buffer = SvGROW(buffer_sv, size+1); |
6d5c85a2 | 1454 | result = i_io_raw_read(ig, buffer, size); |
1f6c1c10 TC |
1455 | if (result >= 0) { |
1456 | SvCUR_set(buffer_sv, result); | |
1457 | *SvEND(buffer_sv) = '\0'; | |
1458 | SvPOK_only(buffer_sv); | |
1459 | EXTEND(SP, 1); | |
1460 | PUSHs(sv_2mortal(newSViv(result))); | |
eda1622c | 1461 | } |
1f6c1c10 TC |
1462 | ST(1) = buffer_sv; |
1463 | SvSETMAGIC(ST(1)); | |
1464 | ||
1465 | void | |
6d5c85a2 | 1466 | i_io_raw_read2(ig, size) |
1f6c1c10 | 1467 | Imager::IO ig |
8d14daab | 1468 | IV size |
1f6c1c10 TC |
1469 | PREINIT: |
1470 | SV *buffer_sv; | |
1471 | void *buffer; | |
8d14daab | 1472 | ssize_t result; |
1f6c1c10 TC |
1473 | PPCODE: |
1474 | if (size <= 0) | |
1475 | croak("size negative in call to i_io_read2()"); | |
1476 | buffer_sv = newSV(size); | |
1477 | buffer = SvGROW(buffer_sv, size+1); | |
6d5c85a2 | 1478 | result = i_io_raw_read(ig, buffer, size); |
1f6c1c10 | 1479 | if (result >= 0) { |
eda1622c TC |
1480 | SvCUR_set(buffer_sv, result); |
1481 | *SvEND(buffer_sv) = '\0'; | |
1482 | SvPOK_only(buffer_sv); | |
1f6c1c10 TC |
1483 | EXTEND(SP, 1); |
1484 | PUSHs(sv_2mortal(buffer_sv)); | |
eda1622c | 1485 | } |
1f6c1c10 TC |
1486 | else { |
1487 | /* discard it */ | |
1488 | SvREFCNT_dec(buffer_sv); | |
1489 | } | |
eda1622c | 1490 | |
8d14daab | 1491 | off_t |
6d5c85a2 | 1492 | i_io_raw_seek(ig, position, whence) |
eda1622c | 1493 | Imager::IO ig |
8d14daab | 1494 | off_t position |
eda1622c | 1495 | int whence |
c3cc977e | 1496 | |
1f6c1c10 | 1497 | int |
6d5c85a2 | 1498 | i_io_raw_close(ig) |
eda1622c TC |
1499 | Imager::IO ig |
1500 | ||
1501 | void | |
1502 | i_io_DESTROY(ig) | |
c3cc977e AMH |
1503 | Imager::IO ig |
1504 | ||
ffddd407 TC |
1505 | int |
1506 | i_io_CLONE_SKIP(...) | |
1507 | CODE: | |
8d14daab | 1508 | (void)items; /* avoid unused warning for XS variable */ |
ffddd407 TC |
1509 | RETVAL = 1; |
1510 | OUTPUT: | |
1511 | RETVAL | |
1512 | ||
6d5c85a2 TC |
1513 | int |
1514 | i_io_getc(ig) | |
1515 | Imager::IO ig | |
1516 | ||
215d9ead TC |
1517 | void |
1518 | i_io_nextc(ig) | |
1519 | Imager::IO ig | |
1520 | ||
6d5c85a2 TC |
1521 | int |
1522 | i_io_putc(ig, c) | |
1523 | Imager::IO ig | |
1524 | int c | |
1525 | ||
1526 | int | |
1527 | i_io_close(ig) | |
1528 | Imager::IO ig | |
1529 | ||
1530 | int | |
1531 | i_io_flush(ig) | |
1532 | Imager::IO ig | |
1533 | ||
1534 | int | |
1535 | i_io_peekc(ig) | |
1536 | Imager::IO ig | |
1537 | ||
1538 | int | |
1539 | i_io_seek(ig, off, whence) | |
1540 | Imager::IO ig | |
1541 | off_t off | |
1542 | int whence | |
1543 | ||
1544 | void | |
1545 | i_io_peekn(ig, size) | |
1546 | Imager::IO ig | |
1547 | STRLEN size | |
1548 | PREINIT: | |
1549 | SV *buffer_sv; | |
1550 | void *buffer; | |
1551 | ssize_t result; | |
1552 | PPCODE: | |
1553 | buffer_sv = newSV(size+1); | |
1554 | buffer = SvGROW(buffer_sv, size+1); | |
1555 | result = i_io_peekn(ig, buffer, size); | |
1556 | if (result >= 0) { | |
1557 | SvCUR_set(buffer_sv, result); | |
1558 | *SvEND(buffer_sv) = '\0'; | |
1559 | SvPOK_only(buffer_sv); | |
1560 | EXTEND(SP, 1); | |
1561 | PUSHs(sv_2mortal(buffer_sv)); | |
1562 | } | |
1563 | else { | |
1564 | /* discard it */ | |
1565 | SvREFCNT_dec(buffer_sv); | |
1566 | } | |
1567 | ||
1568 | void | |
1569 | i_io_read(ig, buffer_sv, size) | |
1570 | Imager::IO ig | |
1571 | SV *buffer_sv | |
1572 | IV size | |
1573 | PREINIT: | |
1574 | void *buffer; | |
1575 | ssize_t result; | |
1576 | PPCODE: | |
1577 | if (size <= 0) | |
1578 | croak("size negative in call to i_io_read()"); | |
d1442cc4 TC |
1579 | /* prevent an undefined value warning if they supplied an |
1580 | undef buffer. | |
1581 | Orginally conditional on !SvOK(), but this will prevent the | |
1582 | downgrade from croaking */ | |
1583 | sv_setpvn(buffer_sv, "", 0); | |
1584 | #ifdef SvUTF8 | |
1585 | if (SvUTF8(buffer_sv)) | |
1586 | sv_utf8_downgrade(buffer_sv, FALSE); | |
1587 | #endif | |
6d5c85a2 TC |
1588 | buffer = SvGROW(buffer_sv, size+1); |
1589 | result = i_io_read(ig, buffer, size); | |
1590 | if (result >= 0) { | |
1591 | SvCUR_set(buffer_sv, result); | |
1592 | *SvEND(buffer_sv) = '\0'; | |
1593 | SvPOK_only(buffer_sv); | |
1594 | EXTEND(SP, 1); | |
1595 | PUSHs(sv_2mortal(newSViv(result))); | |
1596 | } | |
1597 | ST(1) = buffer_sv; | |
1598 | SvSETMAGIC(ST(1)); | |
1599 | ||
1600 | void | |
1601 | i_io_read2(ig, size) | |
1602 | Imager::IO ig | |
1603 | STRLEN size | |
1604 | PREINIT: | |
1605 | SV *buffer_sv; | |
1606 | void *buffer; | |
1607 | ssize_t result; | |
1608 | PPCODE: | |
1609 | if (size == 0) | |
1610 | croak("size zero in call to read2()"); | |
1611 | buffer_sv = newSV(size); | |
1612 | buffer = SvGROW(buffer_sv, size+1); | |
1613 | result = i_io_read(ig, buffer, size); | |
1614 | if (result > 0) { | |
1615 | SvCUR_set(buffer_sv, result); | |
1616 | *SvEND(buffer_sv) = '\0'; | |
1617 | SvPOK_only(buffer_sv); | |
1618 | EXTEND(SP, 1); | |
1619 | PUSHs(sv_2mortal(buffer_sv)); | |
1620 | } | |
1621 | else { | |
1622 | /* discard it */ | |
1623 | SvREFCNT_dec(buffer_sv); | |
1624 | } | |
1625 | ||
1626 | void | |
1627 | i_io_gets(ig, size = 8192, eol = NEWLINE) | |
1628 | Imager::IO ig | |
1629 | STRLEN size | |
1630 | int eol | |
1631 | PREINIT: | |
1632 | SV *buffer_sv; | |
1633 | void *buffer; | |
1634 | ssize_t result; | |
1635 | PPCODE: | |
1636 | if (size < 2) | |
1637 | croak("size too small in call to gets()"); | |
1638 | buffer_sv = sv_2mortal(newSV(size+1)); | |
1639 | buffer = SvPVX(buffer_sv); | |
1640 | result = i_io_gets(ig, buffer, size+1, eol); | |
1641 | if (result > 0) { | |
1642 | SvCUR_set(buffer_sv, result); | |
1643 | *SvEND(buffer_sv) = '\0'; | |
1644 | SvPOK_only(buffer_sv); | |
1645 | EXTEND(SP, 1); | |
1646 | PUSHs(buffer_sv); | |
1647 | } | |
1648 | ||
1649 | IV | |
1650 | i_io_write(ig, data_sv) | |
1651 | Imager::IO ig | |
1652 | SV *data_sv | |
1653 | PREINIT: | |
1654 | void *data; | |
1655 | STRLEN size; | |
1656 | CODE: | |
40a88898 | 1657 | data = SvPVbyte(data_sv, size); |
6d5c85a2 TC |
1658 | RETVAL = i_io_write(ig, data, size); |
1659 | OUTPUT: | |
1660 | RETVAL | |
1661 | ||
1662 | void | |
1663 | i_io_dump(ig, flags = I_IO_DUMP_DEFAULT) | |
1664 | Imager::IO ig | |
1665 | int flags | |
1666 | ||
1667 | bool | |
1668 | i_io_set_buffered(ig, flag = 1) | |
1669 | Imager::IO ig | |
1670 | int flag | |
1671 | ||
1672 | bool | |
1673 | i_io_is_buffered(ig) | |
1674 | Imager::IO ig | |
1675 | ||
1676 | bool | |
1677 | i_io_eof(ig) | |
1678 | Imager::IO ig | |
1679 | ||
1680 | bool | |
1681 | i_io_error(ig) | |
1682 | Imager::IO ig | |
1683 | ||
c3cc977e AMH |
1684 | MODULE = Imager PACKAGE = Imager |
1685 | ||
1686 | PROTOTYPES: ENABLE | |
1687 | ||
02d1d628 AMH |
1688 | void |
1689 | i_list_formats() | |
1690 | PREINIT: | |
1691 | char* item; | |
1692 | int i; | |
1693 | PPCODE: | |
1694 | i=0; | |
1695 | while( (item=i_format_list[i++]) != NULL ) { | |
1696 | EXTEND(SP, 1); | |
1697 | PUSHs(sv_2mortal(newSVpv(item,0))); | |
1698 | } | |
1699 | ||
ec76939c TC |
1700 | Imager::ImgRaw |
1701 | i_sametype(im, x, y) | |
1702 | Imager::ImgRaw im | |
8d14daab TC |
1703 | i_img_dim x |
1704 | i_img_dim y | |
ec76939c TC |
1705 | |
1706 | Imager::ImgRaw | |
1707 | i_sametype_chans(im, x, y, channels) | |
1708 | Imager::ImgRaw im | |
8d14daab TC |
1709 | i_img_dim x |
1710 | i_img_dim y | |
ec76939c TC |
1711 | int channels |
1712 | ||
10ea52a3 | 1713 | int |
bd8052a6 TC |
1714 | i_init_log(name_sv,level) |
1715 | SV* name_sv | |
02d1d628 | 1716 | int level |
bd8052a6 TC |
1717 | PREINIT: |
1718 | const char *name = SvOK(name_sv) ? SvPV_nolen(name_sv) : NULL; | |
1719 | CODE: | |
10ea52a3 TC |
1720 | RETVAL = i_init_log(name, level); |
1721 | OUTPUT: | |
1722 | RETVAL | |
02d1d628 | 1723 | |
7f882a01 | 1724 | void |
bf1573f9 | 1725 | i_log_entry(string,level) |
7f882a01 AMH |
1726 | char* string |
1727 | int level | |
1728 | ||
10ea52a3 TC |
1729 | int |
1730 | i_log_enabled() | |
7f882a01 | 1731 | |
02d1d628 AMH |
1732 | void |
1733 | i_img_info(im) | |
1734 | Imager::ImgRaw im | |
1735 | PREINIT: | |
8d14daab | 1736 | i_img_dim info[4]; |
02d1d628 AMH |
1737 | PPCODE: |
1738 | i_img_info(im,info); | |
1739 | EXTEND(SP, 4); | |
1740 | PUSHs(sv_2mortal(newSViv(info[0]))); | |
1741 | PUSHs(sv_2mortal(newSViv(info[1]))); | |
1742 | PUSHs(sv_2mortal(newSViv(info[2]))); | |
1743 | PUSHs(sv_2mortal(newSViv(info[3]))); | |
1744 | ||
1745 | ||
1746 | ||
1747 | ||
1748 | void | |
1749 | i_img_setmask(im,ch_mask) | |
1750 | Imager::ImgRaw im | |
1751 | int ch_mask | |
1752 | ||
1753 | int | |
1754 | i_img_getmask(im) | |
1755 | Imager::ImgRaw im | |
1756 | ||
1757 | int | |
1758 | i_img_getchannels(im) | |
1759 | Imager::ImgRaw im | |
1760 | ||
1761 | void | |
1762 | i_img_getdata(im) | |
1763 | Imager::ImgRaw im | |
1764 | PPCODE: | |
1765 | EXTEND(SP, 1); | |
26fd367b TC |
1766 | PUSHs(im->idata ? |
1767 | sv_2mortal(newSVpv((char *)im->idata, im->bytes)) | |
faa9b3e7 | 1768 | : &PL_sv_undef); |
02d1d628 | 1769 | |
3b000586 TC |
1770 | IV |
1771 | i_img_get_width(im) | |
1772 | Imager::ImgRaw im | |
1773 | ||
1774 | IV | |
1775 | i_img_get_height(im) | |
1776 | Imager::ImgRaw im | |
1777 | ||
35db02fc TC |
1778 | int |
1779 | i_img_color_model(im) | |
1780 | Imager::ImgRaw im | |
1781 | ||
1782 | int | |
1783 | i_img_color_channels(im) | |
1784 | Imager::ImgRaw im | |
1785 | ||
1786 | int | |
1787 | i_img_alpha_channel(im) | |
1788 | Imager::ImgRaw im | |
1789 | CODE: | |
1790 | if (!i_img_alpha_channel(im, &RETVAL)) | |
1791 | XSRETURN(0); | |
1792 | OUTPUT: | |
1793 | RETVAL | |
3b000586 | 1794 | |
bd8052a6 TC |
1795 | void |
1796 | i_img_is_monochrome(im) | |
1797 | Imager::ImgRaw im | |
1798 | PREINIT: | |
1799 | int zero_is_white; | |
1800 | int result; | |
1801 | PPCODE: | |
1802 | result = i_img_is_monochrome(im, &zero_is_white); | |
1803 | if (result) { | |
1804 | if (GIMME_V == G_ARRAY) { | |
1805 | EXTEND(SP, 2); | |
1806 | PUSHs(&PL_sv_yes); | |
1807 | PUSHs(sv_2mortal(newSViv(zero_is_white))); | |
1808 | } | |
1809 | else { | |
1810 | EXTEND(SP, 1); | |
1811 | PUSHs(&PL_sv_yes); | |
1812 | } | |
1813 | } | |
02d1d628 AMH |
1814 | |
1815 | void | |
aa833c97 | 1816 | i_line(im,x1,y1,x2,y2,val,endp) |
02d1d628 | 1817 | Imager::ImgRaw im |
8d14daab TC |
1818 | i_img_dim x1 |
1819 | i_img_dim y1 | |
1820 | i_img_dim x2 | |
1821 | i_img_dim y2 | |
02d1d628 | 1822 | Imager::Color val |
aa833c97 | 1823 | int endp |
02d1d628 AMH |
1824 | |
1825 | void | |
b437ce0a | 1826 | i_line_aa(im,x1,y1,x2,y2,val,endp) |
02d1d628 | 1827 | Imager::ImgRaw im |
8d14daab TC |
1828 | i_img_dim x1 |
1829 | i_img_dim y1 | |
1830 | i_img_dim x2 | |
1831 | i_img_dim y2 | |
02d1d628 | 1832 | Imager::Color val |
b437ce0a | 1833 | int endp |
02d1d628 AMH |
1834 | |
1835 | void | |
1836 | i_box(im,x1,y1,x2,y2,val) | |
1837 | Imager::ImgRaw im | |
8d14daab TC |
1838 | i_img_dim x1 |
1839 | i_img_dim y1 | |
1840 | i_img_dim x2 | |
1841 | i_img_dim y2 | |
02d1d628 AMH |
1842 | Imager::Color val |
1843 | ||
1844 | void | |
1845 | i_box_filled(im,x1,y1,x2,y2,val) | |
1846 | Imager::ImgRaw im | |
8d14daab TC |
1847 | i_img_dim x1 |
1848 | i_img_dim y1 | |
1849 | i_img_dim x2 | |
1850 | i_img_dim y2 | |
02d1d628 AMH |
1851 | Imager::Color val |
1852 | ||
7477ff14 TC |
1853 | int |
1854 | i_box_filledf(im,x1,y1,x2,y2,val) | |
1855 | Imager::ImgRaw im | |
8d14daab TC |
1856 | i_img_dim x1 |
1857 | i_img_dim y1 | |
1858 | i_img_dim x2 | |
1859 | i_img_dim y2 | |
7477ff14 TC |
1860 | Imager::Color::Float val |
1861 | ||
f1ac5027 TC |
1862 | void |
1863 | i_box_cfill(im,x1,y1,x2,y2,fill) | |
1864 | Imager::ImgRaw im | |
8d14daab TC |
1865 | i_img_dim x1 |
1866 | i_img_dim y1 | |
1867 | i_img_dim x2 | |
1868 | i_img_dim y2 | |
f1ac5027 TC |
1869 | Imager::FillHandle fill |
1870 | ||
02d1d628 AMH |
1871 | void |
1872 | i_arc(im,x,y,rad,d1,d2,val) | |
1873 | Imager::ImgRaw im | |
8d14daab TC |
1874 | i_img_dim x |
1875 | i_img_dim y | |
1876 | double rad | |
1877 | double d1 | |
1878 | double d2 | |
02d1d628 AMH |
1879 | Imager::Color val |
1880 | ||
a8652edf TC |
1881 | void |
1882 | i_arc_aa(im,x,y,rad,d1,d2,val) | |
1883 | Imager::ImgRaw im | |
1884 | double x | |
1885 | double y | |
1886 | double rad | |
1887 | double d1 | |
1888 | double d2 | |
1889 | Imager::Color val | |
1890 | ||
f1ac5027 TC |
1891 | void |
1892 | i_arc_cfill(im,x,y,rad,d1,d2,fill) | |
1893 | Imager::ImgRaw im | |
8d14daab TC |
1894 | i_img_dim x |
1895 | i_img_dim y | |
1896 | double rad | |
1897 | double d1 | |
1898 | double d2 | |
f1ac5027 TC |
1899 | Imager::FillHandle fill |
1900 | ||
a8652edf TC |
1901 | void |
1902 | i_arc_aa_cfill(im,x,y,rad,d1,d2,fill) | |
1903 | Imager::ImgRaw im | |
1904 | double x | |
1905 | double y | |
1906 | double rad | |
1907 | double d1 | |
1908 | double d2 | |
1909 | Imager::FillHandle fill | |
02d1d628 AMH |
1910 | |
1911 | ||
6af18d2b AMH |
1912 | void |
1913 | i_circle_aa(im,x,y,rad,val) | |
1914 | Imager::ImgRaw im | |
8d14daab TC |
1915 | double x |
1916 | double y | |
1917 | double rad | |
6af18d2b AMH |
1918 | Imager::Color val |
1919 | ||
bf18ef3a TC |
1920 | void |
1921 | i_circle_aa_fill(im,x,y,rad,fill) | |
1922 | Imager::ImgRaw im | |
1923 | double x | |
1924 | double y | |
1925 | double rad | |
1926 | Imager::FillHandle fill | |
1927 | ||
40068b33 TC |
1928 | int |
1929 | i_circle_out(im,x,y,rad,val) | |
1930 | Imager::ImgRaw im | |
1931 | i_img_dim x | |
1932 | i_img_dim y | |
1933 | i_img_dim rad | |
1934 | Imager::Color val | |
1935 | ||
1936 | int | |
1937 | i_circle_out_aa(im,x,y,rad,val) | |
1938 | Imager::ImgRaw im | |
1939 | i_img_dim x | |
1940 | i_img_dim y | |
1941 | i_img_dim rad | |
1942 | Imager::Color val | |
1943 | ||
1944 | int | |
1945 | i_arc_out(im,x,y,rad,d1,d2,val) | |
1946 | Imager::ImgRaw im | |
1947 | i_img_dim x | |
1948 | i_img_dim y | |
1949 | i_img_dim rad | |
8d14daab TC |
1950 | double d1 |
1951 | double d2 | |
40068b33 TC |
1952 | Imager::Color val |
1953 | ||
1954 | int | |
1955 | i_arc_out_aa(im,x,y,rad,d1,d2,val) | |
1956 | Imager::ImgRaw im | |
1957 | i_img_dim x | |
1958 | i_img_dim y | |
1959 | i_img_dim rad | |
8d14daab TC |
1960 | double d1 |
1961 | double d2 | |
40068b33 | 1962 | Imager::Color val |
6af18d2b AMH |
1963 | |
1964 | ||
02d1d628 | 1965 | void |
987245e2 | 1966 | i_bezier_multi(im,x,y,val) |
02d1d628 | 1967 | Imager::ImgRaw im |
987245e2 TC |
1968 | double *x |
1969 | double *y | |
1970 | Imager::Color val | |
1971 | PREINIT: | |
1972 | STRLEN size_x; | |
1973 | STRLEN size_y; | |
1974 | PPCODE: | |
1975 | if (size_x != size_y) | |
1976 | croak("Imager: x and y arrays to i_bezier_multi must be equal length\n"); | |
1977 | i_bezier_multi(im,size_x,x,y,val); | |
02d1d628 | 1978 | |
1c5252ed | 1979 | int |
0d80f37e | 1980 | i_poly_aa_m(im,x,y,mode,val) |
02d1d628 | 1981 | Imager::ImgRaw im |
19e9591b TC |
1982 | double *x |
1983 | double *y | |
0d80f37e | 1984 | i_poly_fill_mode_t mode |
a54e32ba TC |
1985 | Imager::Color val |
1986 | PREINIT: | |
19e9591b TC |
1987 | STRLEN size_x; |
1988 | STRLEN size_y; | |
a54e32ba | 1989 | CODE: |
19e9591b | 1990 | if (size_x != size_y) |
a54e32ba | 1991 | croak("Imager: x and y arrays to i_poly_aa must be equal length\n"); |
0d80f37e | 1992 | RETVAL = i_poly_aa_m(im, size_x, x, y, mode, val); |
a54e32ba TC |
1993 | OUTPUT: |
1994 | RETVAL | |
02d1d628 | 1995 | |
1c5252ed | 1996 | int |
0d80f37e | 1997 | i_poly_aa_cfill_m(im, x, y, mode, fill) |
43c5dacb | 1998 | Imager::ImgRaw im |
19e9591b TC |
1999 | double *x |
2000 | double *y | |
0d80f37e | 2001 | i_poly_fill_mode_t mode |
a54e32ba TC |
2002 | Imager::FillHandle fill |
2003 | PREINIT: | |
19e9591b TC |
2004 | STRLEN size_x; |
2005 | STRLEN size_y; | |
a54e32ba | 2006 | CODE: |
19e9591b | 2007 | if (size_x != size_y) |
a54e32ba | 2008 | croak("Imager: x and y arrays to i_poly_aa_cfill must be equal length\n"); |
0d80f37e | 2009 | RETVAL = i_poly_aa_cfill_m(im, size_x, x, y, mode, fill); |
a54e32ba TC |
2010 | OUTPUT: |
2011 | RETVAL | |
02d1d628 | 2012 | |
0d80f37e TC |
2013 | int |
2014 | i_poly_poly_aa(im, polys, mode, color) | |
2015 | Imager::ImgRaw im | |
2016 | i_polygon_list polys | |
2017 | i_poly_fill_mode_t mode | |
2018 | Imager::Color color | |
2019 | CODE: | |
2020 | RETVAL = i_poly_poly_aa(im, polys.count, polys.polygons, mode, color); | |
2021 | OUTPUT: | |
2022 | RETVAL | |
2023 | ||
2024 | int | |
2025 | i_poly_poly_aa_cfill(im, polys, mode, fill) | |
2026 | Imager::ImgRaw im | |
2027 | i_polygon_list polys | |
2028 | i_poly_fill_mode_t mode | |
2029 | Imager::FillHandle fill | |
2030 | CODE: | |
2031 | RETVAL = i_poly_poly_aa_cfill(im, polys.count, polys.polygons, mode, fill); | |
2032 | OUTPUT: | |
2033 | RETVAL | |
2034 | ||
a321d497 | 2035 | undef_int |
02d1d628 AMH |
2036 | i_flood_fill(im,seedx,seedy,dcol) |
2037 | Imager::ImgRaw im | |
8d14daab TC |
2038 | i_img_dim seedx |
2039 | i_img_dim seedy | |
02d1d628 AMH |
2040 | Imager::Color dcol |
2041 | ||
a321d497 | 2042 | undef_int |
cc6483e0 TC |
2043 | i_flood_cfill(im,seedx,seedy,fill) |
2044 | Imager::ImgRaw im | |
8d14daab TC |
2045 | i_img_dim seedx |
2046 | i_img_dim seedy | |
cc6483e0 TC |
2047 | Imager::FillHandle fill |
2048 | ||
3efb0915 TC |
2049 | undef_int |
2050 | i_flood_fill_border(im,seedx,seedy,dcol, border) | |
2051 | Imager::ImgRaw im | |
8d14daab TC |
2052 | i_img_dim seedx |
2053 | i_img_dim seedy | |
3efb0915 TC |
2054 | Imager::Color dcol |
2055 | Imager::Color border | |
2056 | ||
2057 | undef_int | |
2058 | i_flood_cfill_border(im,seedx,seedy,fill, border) | |
2059 | Imager::ImgRaw im | |
8d14daab TC |
2060 | i_img_dim seedx |
2061 | i_img_dim seedy | |
3efb0915 TC |
2062 | Imager::FillHandle fill |
2063 | Imager::Color border | |
2064 | ||
02d1d628 AMH |
2065 | |
2066 | void | |
2067 | i_copyto(im,src,x1,y1,x2,y2,tx,ty) | |
2068 | Imager::ImgRaw im | |
2069 | Imager::ImgRaw src | |
8d14daab TC |
2070 | i_img_dim x1 |
2071 | i_img_dim y1 | |
2072 | i_img_dim x2 | |
2073 | i_img_dim y2 | |
2074 | i_img_dim tx | |
2075 | i_img_dim ty | |
02d1d628 AMH |
2076 | |
2077 | ||
2078 | void | |
2079 | i_copyto_trans(im,src,x1,y1,x2,y2,tx,ty,trans) | |
2080 | Imager::ImgRaw im | |
2081 | Imager::ImgRaw src | |
8d14daab TC |
2082 | i_img_dim x1 |
2083 | i_img_dim y1 | |
2084 | i_img_dim x2 | |
2085 | i_img_dim y2 | |
2086 | i_img_dim tx | |
2087 | i_img_dim ty | |
02d1d628 AMH |
2088 | Imager::Color trans |
2089 | ||
92bda632 TC |
2090 | Imager::ImgRaw |
2091 | i_copy(src) | |
02d1d628 AMH |
2092 | Imager::ImgRaw src |
2093 | ||
2094 | ||
faa9b3e7 | 2095 | undef_int |
71dc4a83 | 2096 | i_rubthru(im,src,tx,ty,src_minx,src_miny,src_maxx,src_maxy) |
02d1d628 AMH |
2097 | Imager::ImgRaw im |
2098 | Imager::ImgRaw src | |
8d14daab TC |
2099 | i_img_dim tx |
2100 | i_img_dim ty | |
2101 | i_img_dim src_minx | |
2102 | i_img_dim src_miny | |
2103 | i_img_dim src_maxx | |
2104 | i_img_dim src_maxy | |
71dc4a83 | 2105 | |
9b1ec2b8 TC |
2106 | undef_int |
2107 | i_compose(out, src, out_left, out_top, src_left, src_top, width, height, combine = ic_normal, opacity = 0.0) | |
2108 | Imager::ImgRaw out | |
2109 | Imager::ImgRaw src | |
8d14daab TC |
2110 | i_img_dim out_left |
2111 | i_img_dim out_top | |
2112 | i_img_dim src_left | |
2113 | i_img_dim src_top | |
2114 | i_img_dim width | |
2115 | i_img_dim height | |
9b1ec2b8 TC |
2116 | int combine |
2117 | double opacity | |
2118 | ||
2119 | undef_int | |
2120 | i_compose_mask(out, src, mask, out_left, out_top, src_left, src_top, mask_left, mask_top, width, height, combine = ic_normal, opacity = 0.0) | |
2121 | Imager::ImgRaw out | |
2122 | Imager::ImgRaw src | |
2123 | Imager::ImgRaw mask | |
8d14daab TC |
2124 | i_img_dim out_left |
2125 | i_img_dim out_top | |
2126 | i_img_dim src_left | |
2127 | i_img_dim src_top | |
2128 | i_img_dim mask_left | |
2129 | i_img_dim mask_top | |
2130 | i_img_dim width | |
2131 | i_img_dim height | |
9b1ec2b8 TC |
2132 | int combine |
2133 | double opacity | |
02d1d628 | 2134 | |
b47464c1 TC |
2135 | Imager::ImgRaw |
2136 | i_combine(src_av, channels_av = NULL) | |
2137 | AV *src_av | |
2138 | AV *channels_av | |
2139 | PREINIT: | |
2140 | i_img **imgs = NULL; | |
2141 | STRLEN in_count; | |
2142 | int *channels = NULL; | |
2143 | int i; | |
2144 | SV **psv; | |
2145 | IV tmp; | |
2146 | CODE: | |
2147 | in_count = av_len(src_av) + 1; | |
2148 | if (in_count > 0) { | |
2149 | imgs = mymalloc(sizeof(i_img*) * in_count); | |
2150 | channels = mymalloc(sizeof(int) * in_count); | |
2151 | for (i = 0; i < in_count; ++i) { | |
2152 | psv = av_fetch(src_av, i, 0); | |
2153 | if (!psv || !*psv || !sv_derived_from(*psv, "Imager::ImgRaw")) { | |
2154 | myfree(imgs); | |
2155 | myfree(channels); | |
2156 | croak("imgs must contain only images"); | |
2157 | } | |
2158 | tmp = SvIV((SV*)SvRV(*psv)); | |
2159 | imgs[i] = INT2PTR(i_img*, tmp); | |
2160 | if (channels_av && | |
2161 | (psv = av_fetch(channels_av, i, 0)) != NULL && | |
2162 | *psv) { | |
2163 | channels[i] = SvIV(*psv); | |
2164 | } | |
2165 | else { | |
2166 | channels[i] = 0; | |
2167 | } | |
2168 | } | |
2169 | } | |
2170 | RETVAL = i_combine(imgs, channels, in_count); | |
2171 | myfree(imgs); | |
2172 | myfree(channels); | |
2173 | OUTPUT: | |
2174 | RETVAL | |
2175 | ||
142c26ff AMH |
2176 | undef_int |
2177 | i_flipxy(im, direction) | |
2178 | Imager::ImgRaw im | |
2179 | int direction | |
2180 | ||
faa9b3e7 TC |
2181 | Imager::ImgRaw |
2182 | i_rotate90(im, degrees) | |
2183 | Imager::ImgRaw im | |
2184 | int degrees | |
2185 | ||
2186 | Imager::ImgRaw | |
0d3b936e | 2187 | i_rotate_exact(im, amount, ...) |
faa9b3e7 TC |
2188 | Imager::ImgRaw im |
2189 | double amount | |
0d3b936e TC |
2190 | PREINIT: |
2191 | i_color *backp = NULL; | |
2192 | i_fcolor *fbackp = NULL; | |
2193 | int i; | |
2194 | SV * sv1; | |
2195 | CODE: | |
2196 | /* extract the bg colors if any */ | |
2197 | /* yes, this is kind of strange */ | |
2198 | for (i = 2; i < items; ++i) { | |
2199 | sv1 = ST(i); | |
2200 | if (sv_derived_from(sv1, "Imager::Color")) { | |
2201 | IV tmp = SvIV((SV*)SvRV(sv1)); | |
2202 | backp = INT2PTR(i_color *, tmp); | |
2203 | } | |
2204 | else if (sv_derived_from(sv1, "Imager::Color::Float")) { | |
2205 | IV tmp = SvIV((SV*)SvRV(sv1)); | |
2206 | fbackp = INT2PTR(i_fcolor *, tmp); | |
2207 | } | |
2208 | } | |
2209 | RETVAL = i_rotate_exact_bg(im, amount, backp, fbackp); | |
2210 | OUTPUT: | |
2211 | RETVAL | |
faa9b3e7 TC |
2212 | |
2213 | Imager::ImgRaw | |
87b3f212 | 2214 | i_matrix_transform(im, xsize, ysize, matrix_av, ...) |
faa9b3e7 | 2215 | Imager::ImgRaw im |
487ec752 TC |
2216 | i_img_dim xsize |
2217 | i_img_dim ysize | |
87b3f212 | 2218 | AV *matrix_av |
487ec752 TC |
2219 | PREINIT: |
2220 | double matrix[9]; | |
2221 | STRLEN len; | |
2222 | SV *sv1; | |
2223 | int i; | |
2224 | i_color *backp = NULL; | |
2225 | i_fcolor *fbackp = NULL; | |
2226 | CODE: | |
2227 | len=av_len(matrix_av)+1; | |
2228 | if (len > 9) | |
2229 | len = 9; | |
2230 | for (i = 0; i < len; ++i) { | |
2231 | sv1=(*(av_fetch(matrix_av,i,0))); | |
2232 | matrix[i] = SvNV(sv1); | |
2233 | } | |
2234 | for (; i < 9; ++i) | |
2235 | matrix[i] = 0; | |
2236 | /* extract the bg colors if any */ | |
2237 | /* yes, this is kind of strange */ | |
2238 | for (i = 4; i < items; ++i) { | |
2239 | sv1 = ST(i); | |
2240 | if (sv_derived_from(sv1, "Imager::Color")) { | |
2241 | IV tmp = SvIV((SV*)SvRV(sv1)); | |
2242 | backp = INT2PTR(i_color *, tmp); | |
2243 | } | |
2244 | else if (sv_derived_from(sv1, "Imager::Color::Float")) { | |
2245 | IV tmp = SvIV((SV*)SvRV(sv1)); | |
2246 | fbackp = INT2PTR(i_fcolor *, tmp); | |
2247 | } | |
2248 | } | |
2249 | RETVAL = i_matrix_transform_bg(im, xsize, ysize, matrix, backp, fbackp); | |
2250 | OUTPUT: | |
2251 | RETVAL | |
02d1d628 | 2252 | |
167660cd | 2253 | undef_int |
02d1d628 AMH |
2254 | i_gaussian(im,stdev) |
2255 | Imager::ImgRaw im | |
167660cd | 2256 | double stdev |
02d1d628 | 2257 | |
b6381851 TC |
2258 | void |
2259 | i_unsharp_mask(im,stdev,scale) | |
2260 | Imager::ImgRaw im | |
8d14daab | 2261 | double stdev |
b6381851 TC |
2262 | double scale |
2263 | ||
6a3cbaef TC |
2264 | int |
2265 | i_conv(im,coef) | |
2266 | Imager::ImgRaw im | |
2267 | AV *coef | |
2268 | PREINIT: | |
2269 | double* c_coef; | |
2270 | int len; | |
2271 | SV* sv1; | |
2272 | int i; | |
2273 | CODE: | |
2274 | len = av_len(coef) + 1; | |
2275 | c_coef=mymalloc( len * sizeof(double) ); | |
2276 | for(i = 0; i < len; i++) { | |
2277 | sv1 = (*(av_fetch(coef, i, 0))); | |
2278 | c_coef[i] = (double)SvNV(sv1); | |
2279 | } | |
2280 | RETVAL = i_conv(im, c_coef, len); | |
2281 | myfree(c_coef); | |
2282 | OUTPUT: | |
2283 | RETVAL | |
02d1d628 | 2284 | |
d5477d3d TC |
2285 | Imager::ImgRaw |
2286 | i_convert(src, avmain) | |
f5991c03 | 2287 | Imager::ImgRaw src |
d5477d3d | 2288 | AV *avmain |
f5991c03 | 2289 | PREINIT: |
62869327 | 2290 | double *coeff; |
f5991c03 TC |
2291 | int outchan; |
2292 | int inchan; | |
f5991c03 | 2293 | SV **temp; |
f5991c03 TC |
2294 | AV *avsub; |
2295 | int len; | |
2296 | int i, j; | |
2297 | CODE: | |
f5991c03 TC |
2298 | outchan = av_len(avmain)+1; |
2299 | /* find the biggest */ | |
2300 | inchan = 0; | |
2301 | for (j=0; j < outchan; ++j) { | |
2302 | temp = av_fetch(avmain, j, 0); | |
2303 | if (temp && SvROK(*temp) && SvTYPE(SvRV(*temp)) == SVt_PVAV) { | |
2304 | avsub = (AV*)SvRV(*temp); | |
2305 | len = av_len(avsub)+1; | |
2306 | if (len > inchan) | |
2307 | inchan = len; | |
2308 | } | |
26eb06dd TC |
2309 | else { |
2310 | i_push_errorf(0, "invalid matrix: element %d is not an array ref", j); | |
2311 | XSRETURN(0); | |
2312 | } | |
f5991c03 | 2313 | } |
62869327 | 2314 | coeff = mymalloc(sizeof(double) * outchan * inchan); |
f5991c03 TC |
2315 | for (j = 0; j < outchan; ++j) { |
2316 | avsub = (AV*)SvRV(*av_fetch(avmain, j, 0)); | |
2317 | len = av_len(avsub)+1; | |
2318 | for (i = 0; i < len; ++i) { | |
2319 | temp = av_fetch(avsub, i, 0); | |
2320 | if (temp) | |
2321 | coeff[i+j*inchan] = SvNV(*temp); | |
2322 | else | |
2323 | coeff[i+j*inchan] = 0; | |
2324 | } | |
2325 | while (i < inchan) | |
2326 | coeff[i++ + j*inchan] = 0; | |
2327 | } | |
d5477d3d | 2328 | RETVAL = i_convert(src, coeff, outchan, inchan); |
f5991c03 | 2329 | myfree(coeff); |
f5991c03 TC |
2330 | OUTPUT: |
2331 | RETVAL | |
40eba1ea AMH |
2332 | |
2333 | ||
1136f089 | 2334 | undef_int |
85f38e13 | 2335 | i_map(im, pmaps_av) |
40eba1ea | 2336 | Imager::ImgRaw im |
85f38e13 | 2337 | AV *pmaps_av |
64655904 TC |
2338 | PREINIT: |
2339 | unsigned int mask = 0; | |
64655904 TC |
2340 | AV *avsub; |
2341 | SV **temp; | |
2342 | int len; | |
2343 | int i, j; | |
2344 | unsigned char (*maps)[256]; | |
2345 | CODE: | |
2346 | len = av_len(pmaps_av)+1; | |
2347 | if (im->channels < len) | |
2348 | len = im->channels; | |
2349 | maps = mymalloc( len * sizeof(unsigned char [256]) ); | |
2350 | for (j=0; j<len ; j++) { | |
2351 | temp = av_fetch(pmaps_av, j, 0); | |
2352 | if (temp && SvROK(*temp) && (SvTYPE(SvRV(*temp)) == SVt_PVAV) ) { | |
2353 | avsub = (AV*)SvRV(*temp); | |
2354 | if(av_len(avsub) != 255) | |
2355 | continue; | |
2356 | mask |= 1<<j; | |
2357 | for (i=0; i<256 ; i++) { | |
2358 | int val; | |
2359 | temp = av_fetch(avsub, i, 0); | |
2360 | val = temp ? SvIV(*temp) : 0; | |
2361 | if (val<0) val = 0; | |
2362 | if (val>255) val = 255; | |
2363 | maps[j][i] = val; | |
2364 | } | |
2365 | } | |
2366 | } | |
2367 | i_map(im, maps, mask); | |
2368 | myfree(maps); | |
2369 | RETVAL = 1; | |
2370 | OUTPUT: | |
2371 | RETVAL | |
40eba1ea | 2372 | |
02d1d628 AMH |
2373 | float |
2374 | i_img_diff(im1,im2) | |
2375 | Imager::ImgRaw im1 | |
2376 | Imager::ImgRaw im2 | |
2377 | ||
e41cfe8f TC |
2378 | double |
2379 | i_img_diffd(im1,im2) | |
2380 | Imager::ImgRaw im1 | |
2381 | Imager::ImgRaw im2 | |
02d1d628 | 2382 | |
4498c8bd TC |
2383 | int |
2384 | i_img_samef(im1, im2, epsilon = i_img_epsilonf(), what=NULL) | |
2385 | Imager::ImgRaw im1 | |
2386 | Imager::ImgRaw im2 | |
2387 | double epsilon | |
2388 | const char *what | |
2389 | ||
2390 | double | |
2391 | i_img_epsilonf() | |
2392 | ||
813d4d0a TC |
2393 | bool |
2394 | _is_color_object(sv) | |
2395 | SV* sv | |
2396 | CODE: | |
2397 | SvGETMAGIC(sv); | |
2398 | RETVAL = SvOK(sv) && SvROK(sv) && | |
2399 | (sv_derived_from(sv, "Imager::Color") | |
2400 | || sv_derived_from(sv, "Imager::Color::Float")); | |
2401 | OUTPUT: | |
2402 | RETVAL | |
2403 | ||
02d1d628 AMH |
2404 | #ifdef HAVE_LIBTT |
2405 | ||
2406 | ||
4b19f77a | 2407 | Imager::Font::TT |
02d1d628 AMH |
2408 | i_tt_new(fontname) |
2409 | char* fontname | |
2410 | ||
4b19f77a AMH |
2411 | |
2412 | MODULE = Imager PACKAGE = Imager::Font::TT PREFIX=TT_ | |
2413 | ||
2414 | #define TT_DESTROY(handle) i_tt_destroy(handle) | |
2415 | ||
02d1d628 | 2416 | void |
4b19f77a AMH |
2417 | TT_DESTROY(handle) |
2418 | Imager::Font::TT handle | |
2419 | ||
ffddd407 TC |
2420 | int |
2421 | TT_CLONE_SKIP(...) | |
2422 | CODE: | |
8d14daab | 2423 | (void)items; /* avoid unused warning */ |
ffddd407 TC |
2424 | RETVAL = 1; |
2425 | OUTPUT: | |
2426 | RETVAL | |
2427 | ||
02d1d628 | 2428 | |
4b19f77a | 2429 | MODULE = Imager PACKAGE = Imager |
02d1d628 AMH |
2430 | |
2431 | ||
2432 | undef_int | |
e3b4d6c3 | 2433 | i_tt_text(handle,im,xb,yb,cl,points,str_sv,smooth,utf8,align=1) |
4b19f77a | 2434 | Imager::Font::TT handle |
02d1d628 | 2435 | Imager::ImgRaw im |
8d14daab TC |
2436 | i_img_dim xb |
2437 | i_img_dim yb | |
02d1d628 | 2438 | Imager::Color cl |
8d14daab | 2439 | double points |
4f68b48f | 2440 | SV * str_sv |
02d1d628 | 2441 | int smooth |
4f68b48f | 2442 | int utf8 |
9ab6338b | 2443 | int align |
4f68b48f TC |
2444 | PREINIT: |
2445 | char *str; | |
2446 | STRLEN len; | |
2447 | CODE: | |
e3b4d6c3 | 2448 | str = SvPV(str_sv, len); |
4f68b48f TC |
2449 | #ifdef SvUTF8 |
2450 | if (SvUTF8(str_sv)) | |
2451 | utf8 = 1; | |
2452 | #endif | |
4f68b48f | 2453 | RETVAL = i_tt_text(handle, im, xb, yb, cl, points, str, |
9ab6338b | 2454 | len, smooth, utf8, align); |
4f68b48f TC |
2455 | OUTPUT: |
2456 | RETVAL | |
02d1d628 AMH |
2457 | |
2458 | ||
2459 | undef_int | |
e3b4d6c3 | 2460 | i_tt_cp(handle,im,xb,yb,channel,points,str_sv,smooth,utf8,align=1) |
4b19f77a | 2461 | Imager::Font::TT handle |
02d1d628 | 2462 | Imager::ImgRaw im |
8d14daab TC |
2463 | i_img_dim xb |
2464 | i_img_dim yb | |
02d1d628 | 2465 | int channel |
8d14daab | 2466 | double points |
4f68b48f | 2467 | SV * str_sv |
02d1d628 | 2468 | int smooth |
4f68b48f | 2469 | int utf8 |
9ab6338b | 2470 | int align |
4f68b48f TC |
2471 | PREINIT: |
2472 | char *str; | |
2473 | STRLEN len; | |
2474 | CODE: | |
e3b4d6c3 | 2475 | str = SvPV(str_sv, len); |
4f68b48f TC |
2476 | #ifdef SvUTF8 |
2477 | if (SvUTF8(str_sv)) | |
2478 | utf8 = 1; | |
2479 | #endif | |
4f68b48f | 2480 | RETVAL = i_tt_cp(handle, im, xb, yb, channel, points, str, len, |
9ab6338b | 2481 | smooth, utf8, align); |
4f68b48f TC |
2482 | OUTPUT: |
2483 | RETVAL | |
02d1d628 AMH |
2484 | |
2485 | ||
a659442a | 2486 | void |
7e3298ec | 2487 | i_tt_bbox(handle,point,str_sv,utf8) |
4b19f77a | 2488 | Imager::Font::TT handle |
8d14daab | 2489 | double point |
4f68b48f | 2490 | SV* str_sv |
4f68b48f | 2491 | int utf8 |
02d1d628 | 2492 | PREINIT: |
8d14daab TC |
2493 | i_img_dim cords[BOUNDING_BOX_COUNT]; |
2494 | int rc; | |
4f68b48f TC |
2495 | char * str; |
2496 | STRLEN len; | |
3799c4d1 | 2497 | int i; |
02d1d628 | 2498 | PPCODE: |
7e3298ec | 2499 | str = SvPV(str_sv, len); |
4f68b48f TC |
2500 | #ifdef SvUTF8 |
2501 | if (SvUTF8(ST(2))) | |
2502 | utf8 = 1; | |
2503 | #endif | |
4f68b48f | 2504 | if ((rc=i_tt_bbox(handle,point,str,len,cords, utf8))) { |
3799c4d1 TC |
2505 | EXTEND(SP, rc); |
2506 | for (i = 0; i < rc; ++i) { | |
2507 | PUSHs(sv_2mortal(newSViv(cords[i]))); | |
2508 | } | |
02d1d628 AMH |
2509 | } |
2510 | ||
eeaa33fd TC |
2511 | void |
2512 | i_tt_has_chars(handle, text_sv, utf8) | |
2513 | Imager::Font::TT handle | |
2514 | SV *text_sv | |
2515 | int utf8 | |
2516 | PREINIT: | |
2517 | char const *text; | |
2518 | STRLEN len; | |
2519 | char *work; | |
8d14daab TC |
2520 | size_t count; |
2521 | size_t i; | |
eeaa33fd | 2522 | PPCODE: |
7e3298ec TC |
2523 | i_clear_error(); |
2524 | text = SvPV(text_sv, len); | |
eeaa33fd TC |
2525 | #ifdef SvUTF8 |
2526 | if (SvUTF8(text_sv)) | |
2527 | utf8 = 1; | |
2528 | #endif | |
eeaa33fd TC |
2529 | work = mymalloc(len); |
2530 | count = i_tt_has_chars(handle, text, len, utf8, work); | |
2531 | if (GIMME_V == G_ARRAY) { | |
7eb58d07 TC |
2532 | if (count) { |
2533 | EXTEND(SP, count); | |
2534 | for (i = 0; i < count; ++i) { | |
2535 | PUSHs(boolSV(work[i])); | |
2536 | } | |
2537 | } | |
eeaa33fd TC |
2538 | } |
2539 | else { | |
2540 | EXTEND(SP, 1); | |
2541 | PUSHs(sv_2mortal(newSVpv(work, count))); | |
2542 | } | |
2543 | myfree(work); | |
02d1d628 | 2544 | |
3799c4d1 TC |
2545 | void |
2546 | i_tt_dump_names(handle) | |
2547 | Imager::Font::TT handle | |
02d1d628 | 2548 | |
3799c4d1 TC |
2549 | void |
2550 | i_tt_face_name(handle) | |
2551 | Imager::Font::TT handle | |
2552 | PREINIT: | |
2553 | char name[255]; | |
8d14daab | 2554 | size_t len; |
3799c4d1 TC |
2555 | PPCODE: |
2556 | len = i_tt_face_name(handle, name, sizeof(name)); | |
2557 | if (len) { | |
2558 | EXTEND(SP, 1); | |
8d14daab | 2559 | PUSHs(sv_2mortal(newSVpv(name, len-1))); |
3799c4d1 | 2560 | } |
02d1d628 | 2561 | |
19fa4baf AMH |
2562 | void |
2563 | i_tt_glyph_name(handle, text_sv, utf8 = 0) | |
3799c4d1 TC |
2564 | Imager::Font::TT handle |
2565 | SV *text_sv | |
2566 | int utf8 | |
2567 | PREINIT: | |
2568 | char const *text; | |
2569 | STRLEN work_len; | |
718b8c97 | 2570 | size_t len; |
8d14daab | 2571 | size_t outsize; |
3799c4d1 TC |
2572 | char name[255]; |
2573 | PPCODE: | |
7e3298ec TC |
2574 | i_clear_error(); |
2575 | text = SvPV(text_sv, work_len); | |
3799c4d1 TC |
2576 | #ifdef SvUTF8 |
2577 | if (SvUTF8(text_sv)) | |
2578 | utf8 = 1; | |
2579 | #endif | |
3799c4d1 TC |
2580 | len = work_len; |
2581 | while (len) { | |
17892255 | 2582 | unsigned long ch; |
3799c4d1 TC |
2583 | if (utf8) { |
2584 | ch = i_utf8_advance(&text, &len); | |
2585 | if (ch == ~0UL) { | |
2586 | i_push_error(0, "invalid UTF8 character"); | |
7e3298ec | 2587 | XSRETURN_EMPTY; |
3799c4d1 TC |
2588 | } |
2589 | } | |
2590 | else { | |
2591 | ch = *text++; | |
2592 | --len; | |
2593 | } | |
ea3099db | 2594 | EXTEND(SP, 1); |
af070d99 | 2595 | if ((outsize = i_tt_glyph_name(handle, ch, name, sizeof(name))) != 0) { |
ea3099db | 2596 | PUSHs(sv_2mortal(newSVpv(name, 0))); |
3799c4d1 TC |
2597 | } |
2598 | else { | |
ea3099db | 2599 | PUSHs(&PL_sv_undef); |
7e3298ec | 2600 | } |
3799c4d1 TC |
2601 | } |
2602 | ||
2603 | #endif | |
02d1d628 | 2604 | |
53a6bbd4 | 2605 | const char * |
e10bf46e AMH |
2606 | i_test_format_probe(ig, length) |
2607 | Imager::IO ig | |
2608 | int length | |
2609 | ||
02d1d628 | 2610 | Imager::ImgRaw |
d87dc9a4 | 2611 | i_readpnm_wiol(ig, allow_incomplete) |
02d1d628 | 2612 | Imager::IO ig |
d87dc9a4 | 2613 | int allow_incomplete |
02d1d628 AMH |
2614 | |
2615 | ||
2086be61 TC |
2616 | void |
2617 | i_readpnm_multi_wiol(ig, allow_incomplete) | |
2618 | Imager::IO ig | |
2619 | int allow_incomplete | |
2620 | PREINIT: | |
2621 | i_img **imgs; | |
2622 | int count=0; | |
2623 | int i; | |
2624 | PPCODE: | |
2625 | imgs = i_readpnm_multi_wiol(ig, &count, allow_incomplete); | |
2626 | if (imgs) { | |
2627 | EXTEND(SP, count); | |
2628 | for (i = 0; i < count; ++i) { | |
2629 | SV *sv = sv_newmortal(); | |
2630 | sv_setref_pv(sv, "Imager::ImgRaw", (void *)imgs[i]); | |
2631 | PUSHs(sv); | |
2632 | } | |
2633 | myfree(imgs); | |
2634 | } | |
2635 | ||
067d6bdc AMH |
2636 | undef_int |
2637 | i_writeppm_wiol(im, ig) | |
2638 | Imager::ImgRaw im | |
2639 | Imager::IO ig | |
2640 | ||
2641 | ||
2086be61 TC |
2642 | |
2643 | ||
2644 | ||
02d1d628 | 2645 | Imager::ImgRaw |
895dbd34 AMH |
2646 | i_readraw_wiol(ig,x,y,datachannels,storechannels,intrl) |
2647 | Imager::IO ig | |
8d14daab TC |
2648 | i_img_dim x |
2649 | i_img_dim y | |
02d1d628 AMH |
2650 | int datachannels |
2651 | int storechannels | |
2652 | int intrl | |
2653 | ||
2654 | undef_int | |
895dbd34 | 2655 | i_writeraw_wiol(im,ig) |
02d1d628 | 2656 | Imager::ImgRaw im |
895dbd34 AMH |
2657 | Imager::IO ig |
2658 | ||
261f91c5 TC |
2659 | undef_int |
2660 | i_writebmp_wiol(im,ig) | |
2661 | Imager::ImgRaw im | |
2662 | Imager::IO ig | |
02d1d628 | 2663 | |
705fd961 | 2664 | Imager::ImgRaw |
d87dc9a4 | 2665 | i_readbmp_wiol(ig, allow_incomplete=0) |
705fd961 | 2666 | Imager::IO ig |
d87dc9a4 | 2667 | int allow_incomplete |
705fd961 | 2668 | |
1ec86afa AMH |
2669 | |
2670 | undef_int | |
febba01f | 2671 | i_writetga_wiol(im,ig, wierdpack, compress, idstring) |
1ec86afa AMH |
2672 | Imager::ImgRaw im |
2673 | Imager::IO ig | |
febba01f AMH |
2674 | int wierdpack |
2675 | int compress | |
2676 | char* idstring | |
2677 | PREINIT: | |
febba01f AMH |
2678 | int idlen; |
2679 | CODE: | |
2680 | idlen = SvCUR(ST(4)); | |
2681 | RETVAL = i_writetga_wiol(im, ig, wierdpack, compress, idstring, idlen); | |
2682 | OUTPUT: | |
2683 | RETVAL | |
2684 | ||
1ec86afa AMH |
2685 | |
2686 | Imager::ImgRaw | |
2687 | i_readtga_wiol(ig, length) | |
2688 | Imager::IO ig | |
2689 | int length | |
2690 | ||
2691 | ||
737a830c AMH |
2692 | |
2693 | ||
02d1d628 AMH |
2694 | Imager::ImgRaw |
2695 | i_scaleaxis(im,Value,Axis) | |
2696 | Imager::ImgRaw im | |
8d14daab | 2697 | double Value |
02d1d628 AMH |
2698 | int Axis |
2699 | ||
2700 | Imager::ImgRaw | |
2701 | i_scale_nn(im,scx,scy) | |
2702 | Imager::ImgRaw im | |
8d14daab TC |
2703 | double scx |
2704 | double scy | |
02d1d628 | 2705 | |
658f724e TC |
2706 | Imager::ImgRaw |
2707 | i_scale_mixing(im, width, height) | |
2708 | Imager::ImgRaw im | |
8d14daab TC |
2709 | i_img_dim width |
2710 | i_img_dim height | |
658f724e | 2711 | |
02d1d628 AMH |
2712 | Imager::ImgRaw |
2713 | i_haar(im) | |
2714 | Imager::ImgRaw im | |
2715 | ||
2716 | int | |
2717 | i_count_colors(im,maxc) | |
2718 | Imager::ImgRaw im | |
2719 | int maxc | |
2720 | ||
fe622da1 | 2721 | void |
a60905e4 TC |
2722 | i_get_anonymous_color_histo(im, maxc = 0x40000000) |
2723 | Imager::ImgRaw im | |
2724 | int maxc | |
4c99febf | 2725 | PREINIT: |
fe622da1 | 2726 | int i; |
a60905e4 | 2727 | unsigned int * col_usage = NULL; |
4c99febf TC |
2728 | int col_cnt; |
2729 | PPCODE: | |
2730 | col_cnt = i_get_anonymous_color_histo(im, &col_usage, maxc); | |
8b810590 TC |
2731 | if (col_cnt <= 0) { |
2732 | XSRETURN_EMPTY; | |
2733 | } | |
2734 | EXTEND(SP, col_cnt); | |
2735 | for (i = 0; i < col_cnt; i++) { | |
2736 | PUSHs(sv_2mortal(newSViv( col_usage[i]))); | |
fe622da1 | 2737 | } |
8b810590 | 2738 | myfree(col_usage); |
fe622da1 | 2739 | |
02d1d628 | 2740 | |
fb9cb3f9 | 2741 | void |
19e9591b | 2742 | i_transform(im, opx, opy, parm) |
02d1d628 | 2743 | Imager::ImgRaw im |
19e9591b TC |
2744 | int *opx |
2745 | int *opy | |
2746 | double *parm | |
02d1d628 | 2747 | PREINIT: |
19e9591b | 2748 | STRLEN size_opx, size_opy, size_parm; |
fb9cb3f9 TC |
2749 | i_img *result; |
2750 | PPCODE: | |
19e9591b | 2751 | result=i_transform(im,opx,size_opx,opy,size_opy,parm,size_parm); |
fb9cb3f9 TC |
2752 | if (result) { |
2753 | SV *result_sv = sv_newmortal(); | |
2754 | EXTEND(SP, 1); | |
2755 | sv_setref_pv(result_sv, "Imager::ImgRaw", (void*)result); | |
2756 | PUSHs(result_sv); | |
2757 | } | |
02d1d628 | 2758 | |
fb9cb3f9 | 2759 | void |
e5744e01 TC |
2760 | i_transform2(sv_width,sv_height,channels,sv_ops,av_n_regs,av_c_regs,av_in_imgs) |
2761 | SV *sv_width | |
2762 | SV *sv_height | |
2763 | SV *sv_ops | |
2764 | AV *av_n_regs | |
2765 | AV *av_c_regs | |
2766 | AV *av_in_imgs | |
2767 | int channels | |
02d1d628 | 2768 | PREINIT: |
8d14daab TC |
2769 | i_img_dim width; |
2770 | i_img_dim height; | |
02d1d628 | 2771 | struct rm_op *ops; |
953209f8 | 2772 | STRLEN ops_len; |
02d1d628 AMH |
2773 | int ops_count; |
2774 | double *n_regs; | |
2775 | int n_regs_count; | |
2776 | i_color *c_regs; | |
2777 | int c_regs_count; | |
2778 | int in_imgs_count; | |
2779 | i_img **in_imgs; | |
ea9e6c3f | 2780 | SV *sv1; |
02d1d628 AMH |
2781 | IV tmp; |
2782 | int i; | |
fb9cb3f9 TC |
2783 | i_img *result; |
2784 | PPCODE: | |
e5744e01 TC |
2785 | |
2786 | in_imgs_count = av_len(av_in_imgs)+1; | |
2787 | for (i = 0; i < in_imgs_count; ++i) { | |
2788 | sv1 = *av_fetch(av_in_imgs, i, 0); | |
2789 | if (!sv_derived_from(sv1, "Imager::ImgRaw")) { | |
2790 | croak("sv_in_img must contain only images"); | |
02d1d628 AMH |
2791 | } |
2792 | } | |
b8c2033e | 2793 | if (in_imgs_count > 0) { |
02d1d628 AMH |
2794 | in_imgs = mymalloc(in_imgs_count*sizeof(i_img*)); |
2795 | for (i = 0; i < in_imgs_count; ++i) { | |
e5744e01 | 2796 | sv1 = *av_fetch(av_in_imgs,i,0); |
02d1d628 AMH |
2797 | if (!sv_derived_from(sv1, "Imager::ImgRaw")) { |
2798 | croak("Parameter 5 must contain only images"); | |
2799 | } | |
2800 | tmp = SvIV((SV*)SvRV(sv1)); | |
e375fbd8 | 2801 | in_imgs[i] = INT2PTR(i_img*, tmp); |
02d1d628 AMH |
2802 | } |
2803 | } | |
2804 | else { | |
2805 | /* no input images */ | |
2806 | in_imgs = NULL; | |
2807 | } | |
2808 | /* default the output size from the first input if possible */ | |
e5744e01 TC |
2809 | if (SvOK(sv_width)) |
2810 | width = SvIV(sv_width); | |
02d1d628 AMH |
2811 | else if (in_imgs_count) |
2812 | width = in_imgs[0]->xsize; | |
2813 | else | |
2814 | croak("No output image width supplied"); | |
2815 | ||
e5744e01 TC |
2816 | if (SvOK(sv_height)) |
2817 | height = SvIV(sv_height); | |
02d1d628 AMH |
2818 | else if (in_imgs_count) |
2819 | height = in_imgs[0]->ysize; | |
2820 | else | |
2821 | croak("No output image height supplied"); | |
2822 | ||
e5744e01 | 2823 | ops = (struct rm_op *)SvPV(sv_ops, ops_len); |
02d1d628 AMH |
2824 | if (ops_len % sizeof(struct rm_op)) |
2825 | croak("Imager: Parameter 3 must be a bitmap of regops\n"); | |
2826 | ops_count = ops_len / sizeof(struct rm_op); | |
e5744e01 TC |
2827 | |
2828 | n_regs_count = av_len(av_n_regs)+1; | |
02d1d628 AMH |
2829 | n_regs = mymalloc(n_regs_count * sizeof(double)); |
2830 | for (i = 0; i < n_regs_count; ++i) { | |
e5744e01 | 2831 | sv1 = *av_fetch(av_n_regs,i,0); |
02d1d628 AMH |
2832 | if (SvOK(sv1)) |
2833 | n_regs[i] = SvNV(sv1); | |
2834 | } | |
e5744e01 | 2835 | c_regs_count = av_len(av_c_regs)+1; |
02d1d628 AMH |
2836 | c_regs = mymalloc(c_regs_count * sizeof(i_color)); |
2837 | /* I don't bother initializing the colou?r registers */ | |
2838 | ||
fb9cb3f9 | 2839 | result=i_transform2(width, height, channels, ops, ops_count, |
02d1d628 AMH |
2840 | n_regs, n_regs_count, |
2841 | c_regs, c_regs_count, in_imgs, in_imgs_count); | |
2842 | if (in_imgs) | |
2843 | myfree(in_imgs); | |
2844 | myfree(n_regs); | |
2845 | myfree(c_regs); | |
fb9cb3f9 TC |
2846 | if (result) { |
2847 | SV *result_sv = sv_newmortal(); | |
2848 | EXTEND(SP, 1); | |
2849 | sv_setref_pv(result_sv, "Imager::ImgRaw", (void*)result); | |
2850 | PUSHs(result_sv); | |
2851 | } | |
02d1d628 AMH |
2852 | |
2853 | ||
2854 | void | |
2855 | i_contrast(im,intensity) | |
2856 | Imager::ImgRaw im | |
2857 | float intensity | |
2858 | ||
2859 | void | |
2860 | i_hardinvert(im) | |
2861 | Imager::ImgRaw im | |
2862 | ||
5558f899 TC |
2863 | void |
2864 | i_hardinvertall(im) | |
2865 | Imager::ImgRaw im | |
2866 | ||
02d1d628 AMH |
2867 | void |
2868 | i_noise(im,amount,type) | |
2869 | Imager::ImgRaw im | |
2870 | float amount | |
2871 | unsigned char type | |
2872 | ||
2873 | void | |
2874 | i_bumpmap(im,bump,channel,light_x,light_y,strength) | |
2875 | Imager::ImgRaw im | |
2876 | Imager::ImgRaw bump | |
2877 | int channel | |
8d14daab TC |
2878 | i_img_dim light_x |
2879 | i_img_dim light_y | |
2880 | i_img_dim strength | |
02d1d628 | 2881 | |
b2778574 AMH |
2882 | |
2883 | void | |
2884 | i_bumpmap_complex(im,bump,channel,tx,ty,Lx,Ly,Lz,cd,cs,n,Ia,Il,Is) | |
2885 | Imager::ImgRaw im | |
2886 | Imager::ImgRaw bump | |
2887 | int channel | |
8d14daab TC |
2888 | i_img_dim tx |
2889 | i_img_dim ty | |
2890 | double Lx | |
2891 | double Ly | |
2892 | double Lz | |
b2778574 AMH |
2893 | float cd |
2894 | float cs | |
2895 | float n | |
2896 | Imager::Color Ia | |
2897 | Imager::Color Il | |
2898 | Imager::Color Is | |
2899 | ||
2900 | ||
2901 | ||
02d1d628 AMH |
2902 | void |
2903 | i_postlevels(im,levels) | |
2904 | Imager::ImgRaw im | |
2905 | int levels | |
2906 | ||
2907 | void | |
2908 | i_mosaic(im,size) | |
2909 | Imager::ImgRaw im | |
8d14daab | 2910 | i_img_dim size |
02d1d628 AMH |
2911 | |
2912 | void | |
2913 | i_watermark(im,wmark,tx,ty,pixdiff) | |
2914 | Imager::ImgRaw im | |
2915 | Imager::ImgRaw wmark | |
8d14daab TC |
2916 | i_img_dim tx |
2917 | i_img_dim ty | |
02d1d628 AMH |
2918 | int pixdiff |
2919 | ||
2920 | ||
2921 | void | |
2922 | i_autolevels(im,lsat,usat,skew) | |
2923 | Imager::ImgRaw im | |
2924 | float lsat | |
2925 | float usat | |
2926 | float skew | |
2927 | ||
ac00f58d TC |
2928 | void |
2929 | i_autolevels_mono(im,lsat,usat) | |
2930 | Imager::ImgRaw im | |
2931 | float lsat | |
2932 | float usat | |
2933 | ||
02d1d628 AMH |
2934 | void |
2935 | i_radnoise(im,xo,yo,rscale,ascale) | |
2936 | Imager::ImgRaw im | |
2937 | float xo | |
2938 | float yo | |
2939 | float rscale | |
2940 | float ascale | |
2941 | ||
2942 | void | |
2943 | i_turbnoise(im, xo, yo, scale) | |
2944 | Imager::ImgRaw im | |
2945 | float xo | |
2946 | float yo | |
2947 | float scale | |
2948 | ||
2949 | ||
2950 | void | |
0aaa8b4d | 2951 | i_gradgen(im, xo, yo, ac, dmeasure) |
02d1d628 | 2952 | Imager::ImgRaw im |
0aaa8b4d TC |
2953 | i_img_dim *xo |
2954 | i_img_dim *yo | |
2955 | i_color *ac | |
2956 | int dmeasure | |
02d1d628 | 2957 | PREINIT: |
0aaa8b4d TC |
2958 | STRLEN size_xo; |
2959 | STRLEN size_yo; | |
2960 | STRLEN size_ac; | |
02d1d628 | 2961 | CODE: |
0aaa8b4d TC |
2962 | if (size_xo != size_yo || size_xo != size_ac) |
2963 | croak("i_gradgen: x, y and color arrays must be the same size"); | |
2964 | if (size_xo < 2) | |
2965 | croak("Usage: i_gradgen array refs must have more than 1 entry each"); | |
2966 | i_gradgen(im, size_xo, xo, yo, ac, dmeasure); | |
a73aeb5f | 2967 | |
dff75dee TC |
2968 | Imager::ImgRaw |
2969 | i_diff_image(im, im2, mindist=0) | |
2970 | Imager::ImgRaw im | |
2971 | Imager::ImgRaw im2 | |
01b84320 | 2972 | double mindist |
02d1d628 | 2973 | |
e310e5f9 | 2974 | undef_int |
6607600c TC |
2975 | i_fountain(im, xa, ya, xb, yb, type, repeat, combine, super_sample, ssample_param, segs) |
2976 | Imager::ImgRaw im | |
2977 | double xa | |
2978 | double ya | |
2979 | double xb | |
2980 | double yb | |
2981 | int type | |
2982 | int repeat | |
2983 | int combine | |
2984 | int super_sample | |
2985 | double ssample_param | |
2986 | PREINIT: | |
6607600c | 2987 | AV *asegs; |
6607600c TC |
2988 | int count; |
2989 | i_fountain_seg *segs; | |
6607600c | 2990 | CODE: |
6607600c TC |
2991 | if (!SvROK(ST(10)) || ! SvTYPE(SvRV(ST(10)))) |
2992 | croak("i_fountain: argument 11 must be an array ref"); | |
2993 | ||
2994 | asegs = (AV *)SvRV(ST(10)); | |
b13a3ddb | 2995 | segs = load_fount_segs(aTHX_ asegs, &count); |
e310e5f9 TC |
2996 | RETVAL = i_fountain(im, xa, ya, xb, yb, type, repeat, combine, |
2997 | super_sample, ssample_param, count, segs); | |
6607600c | 2998 | myfree(segs); |
e310e5f9 TC |
2999 | OUTPUT: |
3000 | RETVAL | |
02d1d628 | 3001 | |
f1ac5027 TC |
3002 | Imager::FillHandle |
3003 | i_new_fill_fount(xa, ya, xb, yb, type, repeat, combine, super_sample, ssample_param, segs) | |
3004 | double xa | |
3005 | double ya | |
3006 | double xb | |
3007 | double yb | |
3008 | int type | |
3009 | int repeat | |
3010 | int combine | |
3011 | int super_sample | |
3012 | double ssample_param | |
3013 | PREINIT: | |
3014 | AV *asegs; | |
3015 | int count; | |
3016 | i_fountain_seg *segs; | |
3017 | CODE: | |
3018 | if (!SvROK(ST(9)) || ! SvTYPE(SvRV(ST(9)))) | |
3019 | croak("i_fountain: argument 11 must be an array ref"); | |
3020 | ||
3021 | asegs = (AV *)SvRV(ST(9)); | |
b13a3ddb | 3022 | segs = load_fount_segs(aTHX_ asegs, &count); |
f1ac5027 TC |
3023 | RETVAL = i_new_fill_fount(xa, ya, xb, yb, type, repeat, combine, |
3024 | super_sample, ssample_param, count, segs); | |
3025 | myfree(segs); | |
3026 | OUTPUT: | |
3027 | RETVAL | |
3028 | ||
52f2b10a TC |
3029 | Imager::FillHandle |
3030 | i_new_fill_opacity(other_fill, alpha_mult) | |
3031 | Imager::FillHandle other_fill | |
3032 | double alpha_mult | |
3033 | ||
4f4f776a TC |
3034 | void |
3035 | i_errors() | |
3036 | PREINIT: | |
3037 | i_errmsg *errors; | |
3038 | int i; | |
4f4f776a | 3039 | AV *av; |
4f4f776a TC |
3040 | SV *sv; |
3041 | PPCODE: | |
3042 | errors = i_errors(); | |
3043 | i = 0; | |
3044 | while (errors[i].msg) { | |
3045 | av = newAV(); | |
3046 | sv = newSVpv(errors[i].msg, strlen(errors[i].msg)); | |
3047 | if (!av_store(av, 0, sv)) { | |
3048 | SvREFCNT_dec(sv); | |
3049 | } | |
3050 | sv = newSViv(errors[i].code); | |
3051 | if (!av_store(av, 1, sv)) { | |
3052 | SvREFCNT_dec(sv); | |
3053 | } | |
57bbbbe7 | 3054 | XPUSHs(sv_2mortal(newRV_noinc((SV*)av))); |
4f4f776a TC |
3055 | ++i; |
3056 | } | |
02d1d628 | 3057 | |
2b405c9e TC |
3058 | void |
3059 | i_clear_error() | |
3060 | ||
3061 | void | |
3062 | i_push_error(code, msg) | |
3063 | int code | |
3064 | const char *msg | |
3065 | ||
e310e5f9 | 3066 | undef_int |
02d1d628 AMH |
3067 | i_nearest_color(im, ...) |
3068 | Imager::ImgRaw im | |
3069 | PREINIT: | |
3070 | int num; | |
8d14daab TC |
3071 | i_img_dim *xo; |
3072 | i_img_dim *yo; | |
02d1d628 AMH |
3073 | i_color *ival; |
3074 | int dmeasure; | |
3075 | int i; | |
3076 | SV *sv; | |
3077 | AV *axx; | |
3078 | AV *ayy; | |
3079 | AV *ac; | |
3080 | CODE: | |
3081 | if (items != 5) | |
3082 | croak("Usage: i_nearest_color(im, xo, yo, ival, dmeasure)"); | |
3083 | if (!SvROK(ST(1)) || ! SvTYPE(SvRV(ST(1)))) | |
3084 | croak("i_nearest_color: Second argument must be an array ref"); | |
3085 | if (!SvROK(ST(2)) || ! SvTYPE(SvRV(ST(2)))) | |
3086 | croak("i_nearest_color: Third argument must be an array ref"); | |
3087 | if (!SvROK(ST(3)) || ! SvTYPE(SvRV(ST(3)))) | |
3088 | croak("i_nearest_color: Fourth argument must be an array ref"); | |
3089 | axx = (AV *)SvRV(ST(1)); | |
3090 | ayy = (AV *)SvRV(ST(2)); | |
3091 | ac = (AV *)SvRV(ST(3)); | |
3092 | dmeasure = (int)SvIV(ST(4)); | |
3093 | ||
3094 | num = av_len(axx) < av_len(ayy) ? av_len(axx) : av_len(ayy); | |
3095 | num = num <= av_len(ac) ? num : av_len(ac); | |
3096 | num++; | |
3097 | if (num < 2) croak("Usage: i_nearest_color array refs must have more than 1 entry each"); | |
945dff7f TC |
3098 | xo = malloc_temp(aTHX_ sizeof(i_img_dim) * num ); |
3099 | yo = malloc_temp(aTHX_ sizeof(i_img_dim) * num ); | |
3100 | ival = malloc_temp(aTHX_ sizeof(i_color) * num ); | |
02d1d628 | 3101 | for(i = 0; i<num; i++) { |
8d14daab TC |
3102 | xo[i] = (i_img_dim)SvIV(* av_fetch(axx, i, 0)); |
3103 | yo[i] = (i_img_dim)SvIV(* av_fetch(ayy, i, 0)); | |
02d1d628 AMH |
3104 | sv = *av_fetch(ac, i, 0); |
3105 | if ( !sv_derived_from(sv, "Imager::Color") ) { | |
3106 | free(axx); free(ayy); free(ac); | |
3107 | croak("i_nearest_color: Element of fourth argument is not derived from Imager::Color"); | |
3108 | } | |
4c4c2ffd | 3109 | ival[i] = *INT2PTR(i_color *, SvIV((SV *)SvRV(sv))); |
02d1d628 | 3110 | } |
e310e5f9 TC |
3111 | RETVAL = i_nearest_color(im, num, xo, yo, ival, dmeasure); |
3112 | OUTPUT: | |
3113 | RETVAL | |
02d1d628 AMH |
3114 | |
3115 | void | |
3116 | malloc_state() | |
3117 | ||
02d1d628 AMH |
3118 | void |
3119 | DSO_open(filename) | |
3120 | char* filename | |
3121 | PREINIT: | |
3122 | void *rc; | |
3123 | char *evstr; | |
3124 | PPCODE: | |
3125 | rc=DSO_open(filename,&evstr); | |
3126 | if (rc!=NULL) { | |
3127 | if (evstr!=NULL) { | |
3128 | EXTEND(SP,2); | |
e375fbd8 | 3129 | PUSHs(sv_2mortal(newSViv(PTR2IV(rc)))); |
02d1d628 AMH |
3130 | PUSHs(sv_2mortal(newSVpvn(evstr, strlen(evstr)))); |
3131 | } else { | |
3132 | EXTEND(SP,1); | |
e375fbd8 | 3133 | PUSHs(sv_2mortal(newSViv(PTR2IV(rc)))); |
02d1d628 AMH |
3134 | } |
3135 | } | |
3136 | ||
3137 | ||
3138 | undef_int | |
3139 | DSO_close(dso_handle) | |
3140 | void* dso_handle | |
3141 | ||
3142 | void | |
3143 | DSO_funclist(dso_handle_v) | |
3144 | void* dso_handle_v | |
3145 | PREINIT: | |
3146 | int i; | |
3147 | DSO_handle *dso_handle; | |
d8e0c3ba | 3148 | func_ptr *functions; |
02d1d628 AMH |
3149 | PPCODE: |
3150 | dso_handle=(DSO_handle*)dso_handle_v; | |
d8e0c3ba | 3151 | functions = DSO_funclist(dso_handle); |
02d1d628 | 3152 | i=0; |
d8e0c3ba | 3153 | while( functions[i].name != NULL) { |
02d1d628 | 3154 | EXTEND(SP,1); |
d8e0c3ba | 3155 | PUSHs(sv_2mortal(newSVpv(functions[i].name,0))); |
02d1d628 | 3156 | EXTEND(SP,1); |
d8e0c3ba | 3157 | PUSHs(sv_2mortal(newSVpv(functions[i++].pcode,0))); |
02d1d628 AMH |
3158 | } |
3159 | ||
02d1d628 AMH |
3160 | void |
3161 | DSO_call(handle,func_index,hv) | |
3162 | void* handle | |
3163 | int func_index | |
75cebca8 | 3164 | HV *hv |
02d1d628 | 3165 | PPCODE: |
02d1d628 AMH |
3166 | DSO_call( (DSO_handle *)handle,func_index,hv); |
3167 | ||
befd4be1 | 3168 | Imager::Color |
f5991c03 TC |
3169 | i_get_pixel(im, x, y) |
3170 | Imager::ImgRaw im | |
8d14daab TC |
3171 | i_img_dim x |
3172 | i_img_dim y; | |
faa9b3e7 | 3173 | CODE: |
befd4be1 | 3174 | RETVAL = (i_color *)mymalloc(sizeof(i_color)); |
2ea4aa42 | 3175 | memset(RETVAL, 0, sizeof(*RETVAL)); |
befd4be1 TC |
3176 | if (i_gpix(im, x, y, RETVAL) != 0) { |
3177 | myfree(RETVAL); | |
3178 | XSRETURN_UNDEF; | |
faa9b3e7 | 3179 | } |
a659442a TC |
3180 | OUTPUT: |
3181 | RETVAL | |
faa9b3e7 TC |
3182 | |
3183 | ||
3184 | int | |
3185 | i_ppix(im, x, y, cl) | |
3186 | Imager::ImgRaw im | |
8d14daab TC |
3187 | i_img_dim x |
3188 | i_img_dim y | |
faa9b3e7 TC |
3189 | Imager::Color cl |
3190 | ||
3191 | Imager::ImgRaw | |
3192 | i_img_pal_new(x, y, channels, maxpal) | |
8d14daab TC |
3193 | i_img_dim x |
3194 | i_img_dim y | |
faa9b3e7 TC |
3195 | int channels |
3196 | int maxpal | |
3197 | ||
3198 | Imager::ImgRaw | |
05f2584a | 3199 | i_img_to_pal(src, quant_hv) |
faa9b3e7 | 3200 | Imager::ImgRaw src |
05f2584a | 3201 | HV *quant_hv |
faa9b3e7 TC |
3202 | PREINIT: |
3203 | HV *hv; | |
3204 | i_quantize quant; | |
3205 | CODE: | |
faa9b3e7 | 3206 | memset(&quant, 0, sizeof(quant)); |
ec6d8908 | 3207 | quant.version = 1; |
faa9b3e7 | 3208 | quant.mc_size = 256; |
a3b721bb TC |
3209 | i_clear_error(); |
3210 | if (!ip_handle_quant_opts2(aTHX_ &quant, quant_hv)) { | |
3211 | XSRETURN_EMPTY; | |
3212 | } | |
faa9b3e7 TC |
3213 | RETVAL = i_img_to_pal(src, &quant); |
3214 | if (RETVAL) { | |
05f2584a | 3215 | ip_copy_colors_back(aTHX_ quant_hv, &quant); |
faa9b3e7 | 3216 | } |
ec6d8908 | 3217 | ip_cleanup_quant_opts(aTHX_ &quant); |
faa9b3e7 TC |
3218 | OUTPUT: |
3219 | RETVAL | |
3220 | ||
3221 | Imager::ImgRaw | |
3222 | i_img_to_rgb(src) | |
3223 | Imager::ImgRaw src | |
3224 | ||
5e9a7fbd TC |
3225 | void |
3226 | i_img_make_palette(HV *quant_hv, ...) | |
3227 | PREINIT: | |
3228 | size_t count = items - 1; | |
3229 | i_quantize quant; | |
3230 | i_img **imgs = NULL; | |
3231 | ssize_t i; | |
3232 | PPCODE: | |
3233 | if (count <= 0) | |
3234 | croak("Please supply at least one image (%d)", (int)count); | |
3235 | imgs = mymalloc(sizeof(i_img *) * count); | |
3236 | for (i = 0; i < count; ++i) { | |
3237 | SV *img_sv = ST(i + 1); | |
3238 | if (SvROK(img_sv) && sv_derived_from(img_sv, "Imager::ImgRaw")) { | |
3239 | imgs[i] = INT2PTR(i_img *, SvIV((SV*)SvRV(img_sv))); | |
3240 | } | |
3241 | else { | |
3242 | myfree(imgs); | |
ec2f6280 | 3243 | croak("Image %d is not an image object", (int)i+1); |
5e9a7fbd TC |
3244 | } |
3245 | } | |
3246 | memset(&quant, 0, sizeof(quant)); | |
3247 | quant.version = 1; | |
3248 | quant.mc_size = 256; | |
a3b721bb TC |
3249 | if (!ip_handle_quant_opts2(aTHX_ &quant, quant_hv)) { |
3250 | XSRETURN_EMPTY; | |
3251 | } | |
5e9a7fbd TC |
3252 | i_quant_makemap(&quant, imgs, count); |
3253 | EXTEND(SP, quant.mc_count); | |
3254 | for (i = 0; i < quant.mc_count; ++i) { | |
3255 | SV *sv_c = make_i_color_sv(aTHX_ quant.mc_colors + i); | |
3256 | PUSHs(sv_c); | |
3257 | } | |
3258 | ip_cleanup_quant_opts(aTHX_ &quant); | |
e906e86a | 3259 | myfree(imgs); |
5e9a7fbd TC |
3260 | |
3261 | ||
faa9b3e7 TC |
3262 | void |
3263 | i_gpal(im, l, r, y) | |
3264 | Imager::ImgRaw im | |
8d14daab TC |
3265 | i_img_dim l |
3266 | i_img_dim r | |
3267 | i_img_dim y | |
faa9b3e7 TC |
3268 | PREINIT: |
3269 | i_palidx *work; | |
3270 | int count, i; | |
3271 | PPCODE: | |
3272 | if (l < r) { | |
3273 | work = mymalloc((r-l) * sizeof(i_palidx)); | |
3274 | count = i_gpal(im, l, r, y, work); | |
3275 | if (GIMME_V == G_ARRAY) { | |
3276 | EXTEND(SP, count); | |
3277 | for (i = 0; i < count; ++i) { | |
3278 | PUSHs(sv_2mortal(newSViv(work[i]))); | |
3279 | } | |
3280 | } | |
3281 | else { | |
3282 | EXTEND(SP, 1); | |
26fd367b | 3283 | PUSHs(sv_2mortal(newSVpv((char *)work, count * sizeof(i_palidx)))); |
faa9b3e7 TC |
3284 | } |
3285 | myfree(work); | |
3286 | } | |
3287 | else { | |
3288 | if (GIMME_V != G_ARRAY) { | |
3289 | EXTEND(SP, 1); | |
3290 | PUSHs(&PL_sv_undef); | |
3291 | } | |
3292 | } | |
3293 | ||
3294 | int | |
3295 | i_ppal(im, l, y, ...) | |
3296 | Imager::ImgRaw im | |
8d14daab TC |
3297 | i_img_dim l |
3298 | i_img_dim y | |
faa9b3e7 TC |
3299 | PREINIT: |
3300 | i_palidx *work; | |
ebe9b189 | 3301 | i_img_dim i; |
faa9b3e7 TC |
3302 | CODE: |
3303 | if (items > 3) { | |
ebe9b189 | 3304 | work = malloc_temp(aTHX_ sizeof(i_palidx) * (items-3)); |
faa9b3e7 TC |
3305 | for (i=0; i < items-3; ++i) { |
3306 | work[i] = SvIV(ST(i+3)); | |
3307 | } | |
4cda4e76 | 3308 | validate_i_ppal(im, work, items - 3); |
faa9b3e7 | 3309 | RETVAL = i_ppal(im, l, l+items-3, y, work); |
faa9b3e7 TC |
3310 | } |
3311 | else { | |
3312 | RETVAL = 0; | |
3313 | } | |
3314 | OUTPUT: | |
3315 | RETVAL | |
3316 | ||
4cda4e76 TC |
3317 | int |
3318 | i_ppal_p(im, l, y, data) | |
3319 | Imager::ImgRaw im | |
8d14daab TC |
3320 | i_img_dim l |
3321 | i_img_dim y | |
4cda4e76 TC |
3322 | SV *data |
3323 | PREINIT: | |
3324 | i_palidx const *work; | |
4cda4e76 | 3325 | STRLEN len; |
4cda4e76 TC |
3326 | CODE: |
3327 | work = (i_palidx const *)SvPV(data, len); | |
3328 | len /= sizeof(i_palidx); | |
3329 | if (len > 0) { | |
3330 | validate_i_ppal(im, work, len); | |
3331 | RETVAL = i_ppal(im, l, l+len, y, work); | |
3332 | } | |
3333 | else { | |
3334 | RETVAL = 0; | |
3335 | } | |
3336 | OUTPUT: | |
3337 | RETVAL | |
3338 | ||
42505e61 | 3339 | SysRet |
faa9b3e7 TC |
3340 | i_addcolors(im, ...) |
3341 | Imager::ImgRaw im | |
3342 | PREINIT: | |
faa9b3e7 TC |
3343 | i_color *colors; |
3344 | int i; | |
3345 | CODE: | |
3346 | if (items < 2) | |
3347 | croak("i_addcolors: no colors to add"); | |
3348 | colors = mymalloc((items-1) * sizeof(i_color)); | |
3349 | for (i=0; i < items-1; ++i) { | |
3350 | if (sv_isobject(ST(i+1)) | |
3351 | && sv_derived_from(ST(i+1), "Imager::Color")) { | |
3352 | IV tmp = SvIV((SV *)SvRV(ST(i+1))); | |
4c4c2ffd | 3353 | colors[i] = *INT2PTR(i_color *, tmp); |
faa9b3e7 TC |
3354 | } |
3355 | else { | |
3356 | myfree(colors); | |
ca4d914e | 3357 | croak("i_addcolor: pixels must be Imager::Color objects"); |
faa9b3e7 TC |
3358 | } |
3359 | } | |
42505e61 | 3360 | RETVAL = i_addcolors(im, colors, items-1); |
7d5febef | 3361 | myfree(colors); |
a659442a TC |
3362 | OUTPUT: |
3363 | RETVAL | |
faa9b3e7 | 3364 | |
1501d9b3 | 3365 | undef_int |
faa9b3e7 TC |
3366 | i_setcolors(im, index, ...) |
3367 | Imager::ImgRaw im | |
3368 | int index | |
3369 | PREINIT: | |
3370 | i_color *colors; | |
3371 | int i; | |
3372 | CODE: | |
3373 | if (items < 3) | |
3374 | croak("i_setcolors: no colors to add"); | |
3375 | colors = mymalloc((items-2) * sizeof(i_color)); | |
3376 | for (i=0; i < items-2; ++i) { | |
3377 | if (sv_isobject(ST(i+2)) | |
3378 | && sv_derived_from(ST(i+2), "Imager::Color")) { | |
3379 | IV tmp = SvIV((SV *)SvRV(ST(i+2))); | |
4c4c2ffd | 3380 | colors[i] = *INT2PTR(i_color *, tmp); |
faa9b3e7 TC |
3381 | } |
3382 | else { | |
3383 | myfree(colors); | |
3384 | croak("i_setcolors: pixels must be Imager::Color objects"); | |
3385 | } | |
3386 | } | |
3387 | RETVAL = i_setcolors(im, index, colors, items-2); | |
3388 | myfree(colors); | |
1501d9b3 TC |
3389 | OUTPUT: |
3390 | RETVAL | |
faa9b3e7 TC |
3391 | |
3392 | void | |
1592522f | 3393 | i_getcolors(im, index, count=1) |
faa9b3e7 TC |
3394 | Imager::ImgRaw im |
3395 | int index | |
1592522f | 3396 | int count |
faa9b3e7 TC |
3397 | PREINIT: |
3398 | i_color *colors; | |
faa9b3e7 TC |
3399 | int i; |
3400 | PPCODE: | |
faa9b3e7 TC |
3401 | if (count < 1) |
3402 | croak("i_getcolors: count must be positive"); | |
1592522f | 3403 | colors = malloc_temp(aTHX_ sizeof(i_color) * count); |
faa9b3e7 | 3404 | if (i_getcolors(im, index, colors, count)) { |
1592522f | 3405 | EXTEND(SP, count); |
faa9b3e7 | 3406 | for (i = 0; i < count; ++i) { |
5e9a7fbd | 3407 | SV *sv = make_i_color_sv(aTHX_ colors+i); |
faa9b3e7 TC |
3408 | PUSHs(sv); |
3409 | } | |
3410 | } | |
faa9b3e7 | 3411 | |
a659442a | 3412 | undef_neg_int |
faa9b3e7 TC |
3413 | i_colorcount(im) |
3414 | Imager::ImgRaw im | |
faa9b3e7 | 3415 | |
a659442a | 3416 | undef_neg_int |
faa9b3e7 TC |
3417 | i_maxcolors(im) |
3418 | Imager::ImgRaw im | |
faa9b3e7 | 3419 | |
0862f397 | 3420 | i_palidx |
faa9b3e7 TC |
3421 | i_findcolor(im, color) |
3422 | Imager::ImgRaw im | |
3423 | Imager::Color color | |
faa9b3e7 | 3424 | CODE: |
0862f397 TC |
3425 | if (!i_findcolor(im, color, &RETVAL)) { |
3426 | XSRETURN_UNDEF; | |
faa9b3e7 | 3427 | } |
a659442a TC |
3428 | OUTPUT: |
3429 | RETVAL | |
faa9b3e7 TC |
3430 | |
3431 | int | |
3432 | i_img_bits(im) | |
3433 | Imager::ImgRaw im | |
3434 | ||
3435 | int | |
3436 | i_img_type(im) | |
3437 | Imager::ImgRaw im | |
3438 | ||
3439 | int | |
3440 | i_img_virtual(im) | |
3441 | Imager::ImgRaw im | |
3442 | ||
3443 | void | |
6a9807e8 | 3444 | i_gsamp(im, l, r, y, channels) |
faa9b3e7 | 3445 | Imager::ImgRaw im |
8d14daab TC |
3446 | i_img_dim l |
3447 | i_img_dim r | |
3448 | i_img_dim y | |
6a9807e8 | 3449 | i_channel_list channels |
faa9b3e7 | 3450 | PREINIT: |
faa9b3e7 | 3451 | i_sample_t *data; |
8d14daab | 3452 | i_img_dim count, i; |
faa9b3e7 | 3453 | PPCODE: |
faa9b3e7 | 3454 | if (l < r) { |
f37708ce | 3455 | data = mymalloc(sizeof(i_sample_t) * (r-l) * channels.count); |
6a9807e8 | 3456 | count = i_gsamp(im, l, r, y, data, channels.channels, channels.count); |
faa9b3e7 TC |
3457 | if (GIMME_V == G_ARRAY) { |
3458 | EXTEND(SP, count); | |
3459 | for (i = 0; i < count; ++i) | |
3460 | PUSHs(sv_2mortal(newSViv(data[i]))); | |
3461 | } | |
3462 | else { | |
3463 | EXTEND(SP, 1); | |
26fd367b | 3464 | PUSHs(sv_2mortal(newSVpv((char *)data, count * sizeof(i_sample_t)))); |
faa9b3e7 | 3465 | } |
a73aeb5f | 3466 | myfree(data); |
faa9b3e7 TC |
3467 | } |
3468 | else { | |
3469 | if (GIMME_V != G_ARRAY) { | |
f37708ce | 3470 | XSRETURN_UNDEF; |
faa9b3e7 TC |
3471 | } |
3472 | } | |
3473 | ||
bd8052a6 | 3474 | undef_neg_int |
6a9807e8 | 3475 | i_gsamp_bits(im, l, r, y, bits, target, offset, channels) |
bd8052a6 | 3476 | Imager::ImgRaw im |
8d14daab TC |
3477 | i_img_dim l |
3478 | i_img_dim r | |
3479 | i_img_dim y | |
bd8052a6 TC |
3480 | int bits |
3481 | AV *target | |
8d14daab | 3482 | STRLEN offset |
6a9807e8 | 3483 | i_channel_list channels |
bd8052a6 | 3484 | PREINIT: |
bd8052a6 | 3485 | unsigned *data; |
8d14daab | 3486 | i_img_dim count, i; |
bd8052a6 TC |
3487 | CODE: |
3488 | i_clear_error(); | |
3489 | if (items < 8) | |
3490 | croak("No channel numbers supplied to g_samp()"); | |
3491 | if (l < r) { | |
6a9807e8 TC |
3492 | data = mymalloc(sizeof(unsigned) * (r-l) * channels.count); |
3493 | count = i_gsamp_bits(im, l, r, y, data, channels.channels, channels.count, bits); | |
bd8052a6 TC |
3494 | for (i = 0; i < count; ++i) { |
3495 | av_store(target, i+offset, newSVuv(data[i])); | |
3496 | } | |
3497 | myfree(data); | |
3498 | RETVAL = count; | |
3499 | } | |
3500 | else { | |
3501 | RETVAL = 0; | |
3502 | } | |
3503 | OUTPUT: | |
3504 | RETVAL | |
3505 | ||
3506 | undef_neg_int | |
6a9807e8 | 3507 | i_psamp_bits(im, l, y, bits, channels, data_av, data_offset = 0, pixel_count = -1) |
bd8052a6 | 3508 | Imager::ImgRaw im |
8d14daab TC |
3509 | i_img_dim l |
3510 | i_img_dim y | |
bd8052a6 | 3511 | int bits |
6a9807e8 | 3512 | i_channel_list channels |
bd8052a6 | 3513 | AV *data_av |
848b7f32 TC |
3514 | i_img_dim data_offset |
3515 | i_img_dim pixel_count | |
bd8052a6 | 3516 | PREINIT: |
8d14daab TC |
3517 | STRLEN data_count; |
3518 | size_t data_used; | |
bd8052a6 | 3519 | unsigned *data; |
8d14daab | 3520 | ptrdiff_t i; |
bd8052a6 TC |
3521 | CODE: |
3522 | i_clear_error(); | |
bd8052a6 TC |
3523 | |
3524 | data_count = av_len(data_av) + 1; | |
3525 | if (data_offset < 0) { | |
848b7f32 | 3526 | croak("data_offset must be non-negative"); |
bd8052a6 TC |
3527 | } |
3528 | if (data_offset > data_count) { | |
3529 | croak("data_offset greater than number of samples supplied"); | |
3530 | } | |
3531 | if (pixel_count == -1 || | |
6a9807e8 TC |
3532 | data_offset + pixel_count * channels.count > data_count) { |
3533 | pixel_count = (data_count - data_offset) / channels.count; | |
bd8052a6 TC |
3534 | } |
3535 | ||
6a9807e8 | 3536 | data_used = pixel_count * channels.count; |
bd8052a6 TC |
3537 | data = mymalloc(sizeof(unsigned) * data_count); |
3538 | for (i = 0; i < data_used; ++i) | |
3539 | data[i] = SvUV(*av_fetch(data_av, data_offset + i, 0)); | |
3540 | ||
6a9807e8 TC |
3541 | RETVAL = i_psamp_bits(im, l, l + pixel_count, y, data, channels.channels, |
3542 | channels.count, bits); | |
bd8052a6 TC |
3543 | |
3544 | if (data) | |
3545 | myfree(data); | |
bd8052a6 TC |
3546 | OUTPUT: |
3547 | RETVAL | |
a73aeb5f | 3548 | |
48b9a7bf | 3549 | undef_neg_int |
848b7f32 | 3550 | i_psamp(im, x, y, channels, data, offset = 0, width = -1) |
48b9a7bf TC |
3551 | Imager::ImgRaw im |
3552 | i_img_dim x | |
3553 | i_img_dim y | |
3554 | i_channel_list channels | |
3555 | i_sample_list data | |
848b7f32 TC |
3556 | i_img_dim offset |
3557 | i_img_dim width | |
48b9a7bf TC |
3558 | PREINIT: |
3559 | i_img_dim r; | |
3560 | CODE: | |
48b9a7bf | 3561 | i_clear_error(); |
848b7f32 TC |
3562 | if (offset < 0) { |
3563 | i_push_error(0, "offset must be non-negative"); | |
3564 | XSRETURN_UNDEF; | |
3565 | } | |
3566 | if (offset > 0) { | |
3567 | if (offset > data.count) { | |
3568 | i_push_error(0, "offset greater than number of samples supplied"); | |
3569 | XSRETURN_UNDEF; | |
3570 | } | |
3571 | data.samples += offset; | |
3572 | data.count -= offset; | |
3573 | } | |
3574 | if (width == -1 || | |
3575 | width * channels.count > data.count) { | |
3576 | width = data.count / channels.count; | |
3577 | } | |
3578 | r = x + width; | |
48b9a7bf TC |
3579 | RETVAL = i_psamp(im, x, r, y, data.samples, channels.channels, channels.count); |
3580 | OUTPUT: | |
3581 | RETVAL | |
3582 | ||
3583 | undef_neg_int | |
848b7f32 | 3584 | i_psampf(im, x, y, channels, data, offset = 0, width = -1) |
48b9a7bf TC |
3585 | Imager::ImgRaw im |
3586 | i_img_dim x | |
3587 | i_img_dim y | |
3588 | i_channel_list channels | |
3589 | i_fsample_list data | |
848b7f32 TC |
3590 | i_img_dim offset |
3591 | i_img_dim width | |
48b9a7bf TC |
3592 | PREINIT: |
3593 | i_img_dim r; | |
3594 | CODE: | |
48b9a7bf | 3595 | i_clear_error(); |
848b7f32 TC |
3596 | if (offset < 0) { |
3597 | i_push_error(0, "offset must be non-negative"); | |
3598 | XSRETURN_UNDEF; | |
3599 | } | |
3600 | if (offset > 0) { | |
3601 | if (offset > data.count) { | |
3602 | i_push_error(0, "offset greater than number of samples supplied"); | |
3603 | XSRETURN_UNDEF; | |
3604 | } | |
3605 | data.samples += offset; | |
3606 | data.count -= offset; | |
3607 | } | |
3608 | if (width == -1 || | |
3609 | width * channels.count > data.count) { | |
3610 | width = data.count / channels.count; | |
3611 | } | |
3612 | r = x + width; | |
48b9a7bf TC |
3613 | RETVAL = i_psampf(im, x, r, y, data.samples, channels.channels, channels.count); |
3614 | OUTPUT: | |
3615 | RETVAL | |
3616 | ||
faa9b3e7 TC |
3617 | Imager::ImgRaw |
3618 | i_img_masked_new(targ, mask, x, y, w, h) | |
3619 | Imager::ImgRaw targ | |
8d14daab TC |
3620 | i_img_dim x |
3621 | i_img_dim y | |
3622 | i_img_dim w | |
3623 | i_img_dim h | |
faa9b3e7 TC |
3624 | PREINIT: |
3625 | i_img *mask; | |
3626 | CODE: | |
3627 | if (SvOK(ST(1))) { | |
3628 | if (!sv_isobject(ST(1)) | |
3629 | || !sv_derived_from(ST(1), "Imager::ImgRaw")) { | |
3630 | croak("i_img_masked_new: parameter 2 must undef or an image"); | |
3631 | } | |
4c4c2ffd | 3632 | mask = INT2PTR(i_img *, SvIV((SV *)SvRV(ST(1)))); |
faa9b3e7 TC |
3633 | } |
3634 | else | |
3635 | mask = NULL; | |
3636 | RETVAL = i_img_masked_new(targ, mask, x, y, w, h); | |
3637 | OUTPUT: | |
3638 | RETVAL | |
3639 | ||
3640 | int | |
3641 | i_plin(im, l, y, ...) | |
3642 | Imager::ImgRaw im | |
8d14daab TC |
3643 | i_img_dim l |
3644 | i_img_dim y | |
faa9b3e7 TC |
3645 | PREINIT: |
3646 | i_color *work; | |
8d14daab | 3647 | STRLEN i; |
ca4d914e | 3648 | STRLEN len; |
8d14daab | 3649 | size_t count; |
faa9b3e7 TC |
3650 | CODE: |
3651 | if (items > 3) { | |
ca4d914e TC |
3652 | if (items == 4 && SvOK(ST(3)) && !SvROK(ST(3))) { |
3653 | /* supplied as a byte string */ | |
3654 | work = (i_color *)SvPV(ST(3), len); | |
3655 | count = len / sizeof(i_color); | |
3656 | if (count * sizeof(i_color) != len) { | |
3657 | croak("i_plin: length of scalar argument must be multiple of sizeof i_color"); | |
faa9b3e7 | 3658 | } |
ca4d914e TC |
3659 | RETVAL = i_plin(im, l, l+count, y, work); |
3660 | } | |
3661 | else { | |
3662 | work = mymalloc(sizeof(i_color) * (items-3)); | |
3663 | for (i=0; i < items-3; ++i) { | |
3664 | if (sv_isobject(ST(i+3)) | |
3665 | && sv_derived_from(ST(i+3), "Imager::Color")) { | |
3666 | IV tmp = SvIV((SV *)SvRV(ST(i+3))); | |
3667 | work[i] = *INT2PTR(i_color *, tmp); | |
3668 | } | |
3669 | else { | |
3670 | myfree(work); | |
3671 | croak("i_plin: pixels must be Imager::Color objects"); | |
3672 | } | |
faa9b3e7 | 3673 | } |
ca4d914e TC |
3674 | RETVAL = i_plin(im, l, l+items-3, y, work); |
3675 | myfree(work); | |
faa9b3e7 | 3676 | } |
faa9b3e7 TC |
3677 | } |
3678 | else { | |
3679 | RETVAL = 0; | |
3680 | } | |
3681 | OUTPUT: | |
3682 | RETVAL | |
3683 | ||
3684 | int | |
3685 | i_ppixf(im, x, y, cl) | |
3686 | Imager::ImgRaw im | |
8d14daab TC |
3687 | i_img_dim x |
3688 | i_img_dim y | |
faa9b3e7 TC |
3689 | Imager::Color::Float cl |
3690 | ||
3691 | void | |
6a9807e8 | 3692 | i_gsampf(im, l, r, y, channels) |
faa9b3e7 | 3693 | Imager::ImgRaw im |
8d14daab TC |
3694 | i_img_dim l |
3695 | i_img_dim r | |
3696 | i_img_dim y | |
6a9807e8 | 3697 | i_channel_list channels |
faa9b3e7 | 3698 | PREINIT: |
faa9b3e7 | 3699 | i_fsample_t *data; |
8d14daab | 3700 | i_img_dim count, i; |
faa9b3e7 | 3701 | PPCODE: |
faa9b3e7 | 3702 | if (l < r) { |
6a9807e8 TC |
3703 | data = mymalloc(sizeof(i_fsample_t) * (r-l) * channels.count); |
3704 | count = i_gsampf(im, l, r, y, data, channels.channels, channels.count); | |
faa9b3e7 TC |
3705 | if (GIMME_V == G_ARRAY) { |
3706 | EXTEND(SP, count); | |
3707 | for (i = 0; i < count; ++i) | |
3708 | PUSHs(sv_2mortal(newSVnv(data[i]))); | |
3709 | } | |
3710 | else { | |
3711 | EXTEND(SP, 1); | |
3712 | PUSHs(sv_2mortal(newSVpv((void *)data, count * sizeof(i_fsample_t)))); | |
3713 | } | |
3631271b | 3714 | myfree(data); |
faa9b3e7 TC |
3715 | } |
3716 | else { | |
3717 | if (GIMME_V != G_ARRAY) { | |
5736f588 | 3718 | XSRETURN_UNDEF; |
faa9b3e7 TC |
3719 | } |
3720 | } | |
3721 | ||
3722 | int | |
3723 | i_plinf(im, l, y, ...) | |
3724 | Imager::ImgRaw im | |
8d14daab TC |
3725 | i_img_dim l |
3726 | i_img_dim y | |
faa9b3e7 TC |
3727 | PREINIT: |
3728 | i_fcolor *work; | |
8d14daab | 3729 | i_img_dim i; |
ca4d914e | 3730 | STRLEN len; |
8d14daab | 3731 | size_t count; |
faa9b3e7 TC |
3732 | CODE: |
3733 | if (items > 3) { | |
ca4d914e TC |
3734 | if (items == 4 && SvOK(ST(3)) && !SvROK(ST(3))) { |
3735 | /* supplied as a byte string */ | |
3736 | work = (i_fcolor *)SvPV(ST(3), len); | |
3737 | count = len / sizeof(i_fcolor); | |
3738 | if (count * sizeof(i_fcolor) != len) { | |
3739 | croak("i_plin: length of scalar argument must be multiple of sizeof i_fcolor"); | |
faa9b3e7 | 3740 | } |
ca4d914e TC |
3741 | RETVAL = i_plinf(im, l, l+count, y, work); |
3742 | } | |
3743 | else { | |
3744 | work = mymalloc(sizeof(i_fcolor) * (items-3)); | |
3745 | for (i=0; i < items-3; ++i) { | |
3746 | if (sv_isobject(ST(i+3)) | |
3747 | && sv_derived_from(ST(i+3), "Imager::Color::Float")) { | |
3748 | IV tmp = SvIV((SV *)SvRV(ST(i+3))); | |
3749 | work[i] = *INT2PTR(i_fcolor *, tmp); | |
3750 | } | |
3751 | else { | |
3752 | myfree(work); | |
3753 | croak("i_plinf: pixels must be Imager::Color::Float objects"); | |
3754 | } | |
faa9b3e7 | 3755 | } |
ca4d914e TC |
3756 | /**(char *)0 = 1;*/ |
3757 | RETVAL = i_plinf(im, l, l+items-3, y, work); | |
3758 | myfree(work); | |
faa9b3e7 | 3759 | } |
faa9b3e7 TC |
3760 | } |
3761 | else { | |
3762 | RETVAL = 0; | |
3763 | } | |
3764 | OUTPUT: | |
3765 | RETVAL | |
3766 | ||
73d80423 | 3767 | Imager::Color::Float |
faa9b3e7 TC |
3768 | i_gpixf(im, x, y) |
3769 | Imager::ImgRaw im | |
8d14daab TC |
3770 | i_img_dim x |
3771 | i_img_dim y; | |
faa9b3e7 | 3772 | CODE: |
73d80423 | 3773 | RETVAL = (i_fcolor *)mymalloc(sizeof(i_fcolor)); |
2ea4aa42 | 3774 | memset(RETVAL, 0, sizeof(*RETVAL)); |
73d80423 TC |
3775 | if (i_gpixf(im, x, y, RETVAL) != 0) { |
3776 | myfree(RETVAL); | |
3777 | XSRETURN_UNDEF; | |
faa9b3e7 | 3778 | } |
a659442a TC |
3779 | OUTPUT: |
3780 | RETVAL | |
3781 | ||
faa9b3e7 TC |
3782 | void |
3783 | i_glin(im, l, r, y) | |
3784 | Imager::ImgRaw im | |
8d14daab TC |
3785 | i_img_dim l |
3786 | i_img_dim r | |
3787 | i_img_dim y | |
faa9b3e7 TC |
3788 | PREINIT: |
3789 | i_color *vals; | |
8d14daab | 3790 | i_img_dim count, i; |
faa9b3e7 TC |
3791 | PPCODE: |
3792 | if (l < r) { | |
3793 | vals = mymalloc((r-l) * sizeof(i_color)); | |
b3aa972f | 3794 | memset(vals, 0, (r-l) * sizeof(i_color)); |
faa9b3e7 | 3795 | count = i_glin(im, l, r, y, vals); |
ca4d914e TC |
3796 | if (GIMME_V == G_ARRAY) { |
3797 | EXTEND(SP, count); | |
3798 | for (i = 0; i < count; ++i) { | |
5e9a7fbd | 3799 | SV *sv = make_i_color_sv(aTHX_ vals+i); |
ca4d914e TC |
3800 | PUSHs(sv); |
3801 | } | |
3802 | } | |
3803 | else if (count) { | |
3804 | EXTEND(SP, 1); | |
3805 | PUSHs(sv_2mortal(newSVpv((void *)vals, count * sizeof(i_color)))); | |
faa9b3e7 TC |
3806 | } |
3807 | myfree(vals); | |
3808 | } | |
3809 | ||
3810 | void | |
3811 | i_glinf(im, l, r, y) | |
3812 | Imager::ImgRaw im | |
8d14daab TC |
3813 | i_img_dim l |
3814 | i_img_dim r | |
3815 | i_img_dim y | |
faa9b3e7 TC |
3816 | PREINIT: |
3817 | i_fcolor *vals; | |
8d14daab | 3818 | i_img_dim count, i; |
919e0000 | 3819 | i_fcolor zero; |
faa9b3e7 | 3820 | PPCODE: |
919e0000 TC |
3821 | for (i = 0; i < MAXCHANNELS; ++i) |
3822 | zero.channel[i] = 0; | |
faa9b3e7 TC |
3823 | if (l < r) { |
3824 | vals = mymalloc((r-l) * sizeof(i_fcolor)); | |
b3aa972f TC |
3825 | for (i = 0; i < r-l; ++i) |
3826 | vals[i] = zero; | |
faa9b3e7 | 3827 | count = i_glinf(im, l, r, y, vals); |
ca4d914e TC |
3828 | if (GIMME_V == G_ARRAY) { |
3829 | EXTEND(SP, count); | |
3830 | for (i = 0; i < count; ++i) { | |
3831 | SV *sv; | |
3832 | i_fcolor *col = mymalloc(sizeof(i_fcolor)); | |
3833 | *col = vals[i]; | |
3834 | sv = sv_newmortal(); | |
3835 | sv_setref_pv(sv, "Imager::Color::Float", (void *)col); | |
3836 | PUSHs(sv); | |
3837 | } | |
3838 | } | |
3839 | else if (count) { | |
3840 | EXTEND(SP, 1); | |
3841 | PUSHs(sv_2mortal(newSVpv((void *)vals, count * sizeof(i_fcolor)))); | |
faa9b3e7 TC |
3842 | } |
3843 | myfree(vals); | |
3844 | } | |
3845 | ||
bdd4c63b TC |
3846 | Imager::ImgRaw |
3847 | i_img_8_new(x, y, ch) | |
3848 | i_img_dim x | |
3849 | i_img_dim y | |
3850 | int ch | |
3851 | ||
faa9b3e7 TC |
3852 | Imager::ImgRaw |
3853 | i_img_16_new(x, y, ch) | |
8d14daab TC |
3854 | i_img_dim x |
3855 | i_img_dim y | |
faa9b3e7 TC |
3856 | int ch |
3857 | ||
167660cd TC |
3858 | Imager::ImgRaw |
3859 | i_img_to_rgb16(im) | |
3860 | Imager::ImgRaw im | |
3861 | ||
365ea842 TC |
3862 | Imager::ImgRaw |
3863 | i_img_double_new(x, y, ch) | |
8d14daab TC |
3864 | i_img_dim x |
3865 | i_img_dim y | |
365ea842 TC |
3866 | int ch |
3867 | ||
bfe6ba3f TC |
3868 | Imager::ImgRaw |
3869 | i_img_to_drgb(im) | |
3870 | Imager::ImgRaw im | |
3871 | ||
faa9b3e7 | 3872 | undef_int |
b9e2571f | 3873 | i_tags_addn(im, name_sv, code, idata) |
faa9b3e7 | 3874 | Imager::ImgRaw im |
b9e2571f | 3875 | SV *name_sv |
faa9b3e7 TC |
3876 | int code |
3877 | int idata | |
3878 | PREINIT: | |
3879 | char *name; | |
3880 | STRLEN len; | |
3881 | CODE: | |
b9e2571f TC |
3882 | SvGETMAGIC(name_sv); |
3883 | if (SvOK(name_sv)) | |
3884 | name = SvPV_nomg(name_sv, len); | |
faa9b3e7 TC |
3885 | else |
3886 | name = NULL; | |
3887 | RETVAL = i_tags_addn(&im->tags, name, code, idata); | |
3888 | OUTPUT: | |
3889 | RETVAL | |
3890 | ||
3891 | undef_int | |
a4da28d7 | 3892 | i_tags_add(im, name_sv, code, data_sv, idata) |
faa9b3e7 | 3893 | Imager::ImgRaw im |
a4da28d7 | 3894 | SV *name_sv |
faa9b3e7 | 3895 | int code |
a4da28d7 | 3896 | SV *data_sv |
faa9b3e7 TC |
3897 | int idata |
3898 | PREINIT: | |
3899 | char *name; | |
3900 | char *data; | |
3901 | STRLEN len; | |
3902 | CODE: | |
a4da28d7 TC |
3903 | SvGETMAGIC(name_sv); |
3904 | if (SvOK(name_sv)) | |
3905 | name = SvPV_nomg(name_sv, len); | |
faa9b3e7 TC |
3906 | else |
3907 | name = NULL; | |
a4da28d7 TC |
3908 | SvGETMAGIC(data_sv); |
3909 | if (SvOK(data_sv)) | |
3910 | data = SvPV(data_sv, len); | |
faa9b3e7 TC |
3911 | else { |
3912 | data = NULL; | |
3913 | len = 0; | |
3914 | } | |
3915 | RETVAL = i_tags_add(&im->tags, name, code, data, len, idata); | |
3916 | OUTPUT: | |
3917 | RETVAL | |
3918 | ||
f4aca831 | 3919 | SysRet |
faa9b3e7 TC |
3920 | i_tags_find(im, name, start) |
3921 | Imager::ImgRaw im | |
3922 | char *name | |
3923 | int start | |
3924 | PREINIT: | |
3925 | int entry; | |
3926 | CODE: | |
3927 | if (i_tags_find(&im->tags, name, start, &entry)) { | |
f4aca831 | 3928 | RETVAL = entry; |
faa9b3e7 | 3929 | } else { |
f4aca831 | 3930 | XSRETURN_UNDEF; |
faa9b3e7 | 3931 | } |
a659442a TC |
3932 | OUTPUT: |
3933 | RETVAL | |
faa9b3e7 | 3934 | |
f4aca831 | 3935 | SysRet |