@brendo I need to extend the image class - to be able to load data from base64 encoded string (post rather than normal upload field)
I also need to clone the objects within the class and change some properties on resize (aka JIT like stuff). Ideally without having to recreate an image from scratch every time. Basically I'm trying to create multiple resized images from the same source, resizing them and uploading into an S3 bucket. (predefined sizes)
So far I figure I need the following properties/functions in protected mode rather than private not sure if this is possible.
@brendo I need to extend the image class - to be able to load data from base64 encoded string (post rather than normal upload field)
I also need to clone the objects within the class and change some properties on resize (aka JIT like stuff). Ideally without having to recreate an image from scratch every time. Basically I'm trying to create multiple resized images from the same source, resizing them and uploading into an S3 bucket. (predefined sizes)
So far I figure I need the following properties/functions in protected mode rather than private not sure if this is possible.