← All docs
imagecopyresized() — internals
Compiler internals for imagecopyresized(): lowering path, type checks, and runtime helpers.
imagecopyresized() — internals
Where it lives
- Signature:
crates/elephc-builtin-contract/src/catalog_data.rs - Lowering:
src/image_prelude.rs:3053 (imagecopyresized) - Function symbol:
imagecopyresized()
Lowering notes
- Implemented by the compiler-injected image prelude.
Semantic descriptor
Shared contract implemented by an injected elephc-PHP prelude.
EIR and runtime boundary
Implemented by an injected elephc-PHP prelude.
Signature summary
function imagecopyresized(mixed $dst_image, mixed $src_image, int $dst_x, int $dst_y, int $src_x, int $src_y, int $dst_width, int $dst_height, int $src_width, int $src_height): bool
What the type checker enforces
- Arity: takes exactly 10 arguments.
Eval interpreter (magician)
Not callable from eval’d code — the magician interpreter has no entry for this builtin.