burtonium 0 Report post Posted August 14, 2017 Dear Developers, can you create a subpage with form on your main site for logged users, so we can report and supply images to you. I was talking with one of your GMs few minutes ago and I said I'll look for TGA->JPG conversion in order to shorten the reporting process. I found a solution in php with imagemagick. If you make a reporting as easy as possible, I believe people will report abusers more often. It takes too much time with current process(converting image, uploading it to some website, pasting links to you), it's just no go for majority of users. Best wishes, bb Sample code that transform tga to jpg: <?php // create new imagemagick object from file $im = new Imagick('test.tga'); // sample file // set format, compression, quality $im->setCompression(Imagick::COMPRESSION_JPEG); $im->setCompressionQuality(90); $im->setImageFormat('jpeg'); // output file $im->writeImage('test.jpg'); // sample output $im->clear(); $im->destroy(); 0 Share this post Link to post Share on other sites