Reputation: 31
I was wondering is there any way to convert any image file extention to jpg while uploading using uploadify.I have searched a lot and couldnt find an answer.
Upvotes: 0
Views: 219
Reputation: 399
You can easily add some code in the uploadify.php file to convert any image to jpg after uploading, around
move_uploaded_file($tempFile,$targetFile);
Have a look into GD or ImageMagick.
Upvotes: 0