проверить эту страницу: http://www.tinymce.com/wiki.php/MCImageManager:upload.format
вот что я использовал в своем конфигурационном файле для создания 2 дополнительных превью (в дополнение к созданному create_thumbnail)
//extra thumbnail creation
$mcImageManagerConfig['upload.format'] = '600x600=thumbs600/%f.%e,200x200=thumbs200/%f.%e'; //creates a 610x610 in thumbs610/ and 225x225 in thumbs225/
/* upload.format options:
%f -> Filename without extension for example "myimage".
%e -> Extension the extension part of the image for example "gif".
%w -> Output image width, the proportional value.
%h -> Output image height, the proportional valie.
%tw -> Target width/specified width by the resize option.
%th -> Target height/specified height by the resize option.
%ow -> Original width, before the image gets resized.
%oh -> Original height, before the image gets resize. */