Its also worth noting that we do already include some basic resizing functions with our uploader… so you might be able to get where you want – assuming you can set some significant php parameters as you indicate…
so I dont know if you noticed or now, but on forum – content – uploads, you can set a max width and height for images uploaded… if the image is larger than that, it will resize it to fit your settings… this will reduce the overall file size too… additionally, you can set an image quality on the resize too on the same panel… so its getting resized, you can lower the quality to again reduce the file size…
the biggest kicker is this all happens server side, so the file has to physically be uploaded before we can do anything to it… so your php settings for max upload size has to support it… and the file will need to be smaller than the max size you set on forum – components – uploads to pass the first check…
but assuming you get there, then you can ‘sort of’ help control the image dimensions and file size with those above mentioned settings…
so you have some basic control already, just not a true image editing facility…