Rohith Namboothiri
Rohith Namboothiri

Reputation: 31

Uploadify - Convert Image while uploading

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

Answers (1)

David Bauer
David Bauer

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

Related Questions