Recent content by Visteras

  1. V

    XF 1.2 Animated Image scaling bug

    How's that option? $image = new Imagick('myfile.gif'); $image = $image->coalesceimages(); $final = new \Imagick(); foreach ($image as $frame){ $image->thumbnailImage($width, $height, true); $geometry = $image->getImageGeometry(); $x = ( $width - $geometry['width'] ) / 2; $y = (...
  2. V

    XF 1.2 Animated Image scaling bug

    ImageMagick library must use an extra key when working with GIF images. See below: function imageapi_imagemagick_image_resize(&$image, $width, $height) { $extra = ''; if($image->info['mime_type'] == 'image/gif') { $extra = '-coalesce '; } $image->ops[] = $extra . '-resize '. (int)...
  3. V

    XF 1.2 Animated Image scaling bug

    I use the GD. ImageMagick not installed. If you are sure that the case in the library then I apologize. Not even think to check it. Be sure to check ImageMagick, thank you for your help.
  4. V

    XF 1.2 Animated Image scaling bug

    I've detected a bug processing animated gif avatars with latests version. To reproduce it use image: http://www.d-inter.ru/private/Earnol/Whdatk.gif as user avatar. You will notice it will be scaled down incorrectly resulting broken image: https://test.aarn.ru/data/avatars/m/0/2.jpg?1374688335...
Top Bottom