public function rotate()
    {
        global $WD_BWG_UPLOAD_DIR;
        $popup_width = (int) (isset($_GET['width']) ? esc_html($_GET['width']) : '650') - 30;
        $image_width = $popup_width - 40;
        $popup_height = (int) (isset($_GET['height']) ? esc_html($_GET['height']) : '500') - 55;
        $image_height = $popup_height - 70;
        $image_id = isset($_GET['image_id']) ? esc_html($_GET['image_id']) : '0';
        $edit_type = isset($_POST['edit_type']) ? esc_html($_POST['edit_type']) : '';
        $brightness_val = isset($_POST['brightness_val']) ? esc_html($_POST['brightness_val']) : 0;
        $contrast_val = isset($_POST['contrast_val']) ? esc_html($_POST['contrast_val']) : 0;
        if (isset($_GET['image_url'])) {
            $image_data = new stdClass();
            $image_data->image_url = isset($_GET['image_url']) ? esc_html(stripcslashes($_GET['image_url'])) : '';
            $image_data->thumb_url = isset($_GET['thumb_url']) ? esc_html(stripcslashes($_GET['thumb_url'])) : '';
            $filename = htmlspecialchars_decode(ABSPATH . $WD_BWG_UPLOAD_DIR . $image_data->image_url, ENT_COMPAT | ENT_QUOTES);
            $thumb_filename = htmlspecialchars_decode(ABSPATH . $WD_BWG_UPLOAD_DIR . $image_data->thumb_url, ENT_COMPAT | ENT_QUOTES);
            $form_action = add_query_arg(array('action' => 'editThumb', 'type' => 'rotate', 'image_id' => $image_id, 'image_url' => $image_data->image_url, 'thumb_url' => $image_data->thumb_url, 'width' => '650', 'height' => '500', 'TB_iframe' => '1'), admin_url('admin-ajax.php'));
        } else {
            $image_data = $this->model->get_image_data($image_id);
            $image_data->image_url = stripcslashes($image_data->image_url);
            $filename = htmlspecialchars_decode(ABSPATH . $WD_BWG_UPLOAD_DIR . $image_data->image_url, ENT_COMPAT | ENT_QUOTES);
            $thumb_filename = htmlspecialchars_decode(ABSPATH . $WD_BWG_UPLOAD_DIR . $image_data->thumb_url, ENT_COMPAT | ENT_QUOTES);
            $form_action = add_query_arg(array('action' => 'editThumb', 'type' => 'rotate', 'image_id' => $image_id, 'width' => '650', 'height' => '500', 'TB_iframe' => '1'), admin_url('admin-ajax.php'));
        }
        @ini_set('memory_limit', '-1');
        list($width_rotate, $height_rotate, $type_rotate) = getimagesize($filename);
        if ($edit_type == '270' || $edit_type == '90') {
            if ($type_rotate == 2) {
                $source = imagecreatefromjpeg($filename);
                $thumb_source = imagecreatefromjpeg($thumb_filename);
                $rotate = imagerotate($source, $edit_type, 0);
                $thumb_rotate = imagerotate($thumb_source, $edit_type, 0);
                imagejpeg($thumb_rotate, $thumb_filename, 90);
                imagejpeg($rotate, $filename, 100);
                imagedestroy($source);
                imagedestroy($rotate);
                imagedestroy($thumb_source);
                imagedestroy($thumb_rotate);
            } elseif ($type_rotate == 3) {
                $source = imagecreatefrompng($filename);
                $thumb_source = imagecreatefrompng($thumb_filename);
                imagealphablending($source, FALSE);
                imagealphablending($thumb_source, FALSE);
                imagesavealpha($source, TRUE);
                imagesavealpha($thumb_source, TRUE);
                $rotate = imagerotate($source, $edit_type, imageColorAllocateAlpha($source, 0, 0, 0, 127));
                $thumb_rotate = imagerotate($thumb_source, $edit_type, imageColorAllocateAlpha($source, 0, 0, 0, 127));
                imagealphablending($rotate, FALSE);
                imagealphablending($thumb_rotate, FALSE);
                imagesavealpha($rotate, TRUE);
                imagesavealpha($thumb_rotate, TRUE);
                imagepng($rotate, $filename, 9);
                imagepng($thumb_rotate, $thumb_filename, 9);
                imagedestroy($source);
                imagedestroy($rotate);
                imagedestroy($thumb_source);
                imagedestroy($thumb_rotate);
            } elseif ($type_rotate == 1) {
                $source = imagecreatefromgif($filename);
                $thumb_source = imagecreatefromgif($thumb_filename);
                imagealphablending($source, FALSE);
                imagealphablending($thumb_source, FALSE);
                imagesavealpha($source, TRUE);
                imagesavealpha($thumb_source, TRUE);
                $rotate = imagerotate($source, $edit_type, imageColorAllocateAlpha($source, 0, 0, 0, 127));
                $thumb_rotate = imagerotate($thumb_source, $edit_type, imageColorAllocateAlpha($source, 0, 0, 0, 127));
                imagealphablending($rotate, FALSE);
                imagealphablending($thumb_rotate, FALSE);
                imagesavealpha($rotate, TRUE);
                imagesavealpha($thumb_rotate, TRUE);
                imagegif($rotate, $filename);
                imagegif($thumb_rotate, $thumb_filename);
                imagedestroy($source);
                imagedestroy($rotate);
                imagedestroy($thumb_source);
                imagedestroy($thumb_rotate);
            }
        } elseif ($edit_type == 'vertical' || $edit_type == 'horizontal' || $edit_type == 'both') {
            function bwg_image_flip($imgsrc, $mode)
            {
                $width = imagesx($imgsrc);
                $height = imagesy($imgsrc);
                $src_x = 0;
                $src_y = 0;
                $src_width = $width;
                $src_height = $height;
                switch ($mode) {
                    case 'vertical':
                        $src_y = $height - 1;
                        $src_height = -$height;
                        break;
                    case 'horizontal':
                        $src_x = $width - 1;
                        $src_width = -$width;
                        break;
                    case 'both':
                        $src_x = $width - 1;
                        $src_y = $height - 1;
                        $src_width = -$width;
                        $src_height = -$height;
                        break;
                    default:
                        return $imgsrc;
                }
                $trans_colour = imageColorAllocateAlpha($imgsrc, 0, 0, 0, 127);
                $imgdest = imagecreatetruecolor($width, $height);
                imagefill($imgdest, 0, 0, $trans_colour);
                if (imagecopyresampled($imgdest, $imgsrc, 0, 0, $src_x, $src_y, $width, $height, $src_width, $src_height)) {
                    return $imgdest;
                }
                return $imgsrc;
            }
            if ($type_rotate == 2) {
                $source = imagecreatefromjpeg($filename);
                $flip = bwg_image_flip($source, $edit_type);
                imagejpeg($flip, $filename, 100);
                $thumb_source = imagecreatefromjpeg($thumb_filename);
                $thumb_flip = bwg_image_flip($thumb_source, $edit_type);
                imagejpeg($thumb_flip, $thumb_filename, 90);
                imagedestroy($source);
                imagedestroy($flip);
                imagedestroy($thumb_source);
                imagedestroy($thumb_flip);
            } elseif ($type_rotate == 3) {
                $source = imagecreatefrompng($filename);
                $thumb_source = imagecreatefrompng($thumb_filename);
                imagealphablending($source, FALSE);
                imagealphablending($thumb_source, FALSE);
                imagesavealpha($source, TRUE);
                imagesavealpha($thumb_source, TRUE);
                $flip = bwg_image_flip($source, $edit_type);
                $thumb_flip = bwg_image_flip($thumb_source, $edit_type);
                imagealphablending($flip, FALSE);
                imagealphablending($thumb_flip, FALSE);
                imagesavealpha($flip, TRUE);
                imagesavealpha($thumb_flip, TRUE);
                imagepng($flip, $filename, 9);
                imagepng($thumb_flip, $thumb_filename, 9);
                imagedestroy($source);
                imagedestroy($flip);
                imagedestroy($thumb_source);
                imagedestroy($thumb_flip);
            } elseif ($type_rotate == 1) {
                $source = imagecreatefromgif($filename);
                $thumb_source = imagecreatefromgif($thumb_filename);
                imagealphablending($source, FALSE);
                imagealphablending($thumb_source, FALSE);
                imagesavealpha($source, TRUE);
                imagesavealpha($thumb_source, TRUE);
                $flip = bwg_image_flip($source, $edit_type);
                $thumb_flip = bwg_image_flip($thumb_source, $edit_type);
                imagealphablending($flip, FALSE);
                imagealphablending($thumb_flip, FALSE);
                imagesavealpha($flip, TRUE);
                imagesavealpha($thumb_flip, TRUE);
                imagegif($flip, $filename);
                imagegif($thumb_flip, $thumb_filename);
                imagedestroy($source);
                imagedestroy($flip);
                imagedestroy($thumb_source);
                imagedestroy($thumb_flip);
            }
        } elseif ($edit_type == 'brightness' || $edit_type == 'contrast' || $edit_type == 'grayscale' || $edit_type == 'negative' || $edit_type == 'remove' || $edit_type == 'emboss' || $edit_type == 'smooth') {
            switch ($edit_type) {
                case 'brightness':
                    $img_filter_type = IMG_FILTER_BRIGHTNESS;
                    $ratio = $brightness_val;
                    break;
                case 'contrast':
                    $img_filter_type = IMG_FILTER_CONTRAST;
                    $ratio = $contrast_val;
                    break;
                case 'grayscale':
                    $img_filter_type = IMG_FILTER_GRAYSCALE;
                    $ratio = '';
                    break;
                case 'negative':
                    $img_filter_type = IMG_FILTER_NEGATE;
                    $ratio = '';
                    break;
                case 'remove':
                    $img_filter_type = IMG_FILTER_MEAN_REMOVAL;
                    $ratio = '';
                    break;
                case 'emboss':
                    $img_filter_type = IMG_FILTER_EMBOSS;
                    $ratio = '';
                    break;
                case 'smooth':
                    $img_filter_type = IMG_FILTER_SMOOTH;
                    $ratio = 30;
                    break;
                default:
                    return;
            }
            $img_type = $type_rotate;
            if ($img_type == 2) {
                $source = imagecreatefromjpeg($filename);
                $thumb_source = imagecreatefromjpeg($thumb_filename);
                imagefilter($source, $img_filter_type, $ratio);
                imagefilter($thumb_source, $img_filter_type, $ratio);
                imagejpeg($source, $filename, 100);
                imagejpeg($thumb_source, $thumb_filename, 90);
                imagedestroy($source);
                imagedestroy($thumb_source);
            } elseif ($img_type == 3) {
                $source = imagecreatefrompng($filename);
                $thumb_source = imagecreatefrompng($thumb_filename);
                imagealphablending($source, FALSE);
                imagealphablending($thumb_source, FALSE);
                imagesavealpha($source, TRUE);
                imagesavealpha($thumb_source, TRUE);
                imagefilter($source, $img_filter_type, $ratio);
                imagefilter($thumb_source, $img_filter_type, $ratio);
                imagepng($source, $filename, 9);
                imagepng($thumb_source, $thumb_filename, 9);
                imagedestroy($source);
                imagedestroy($thumb_source);
            } elseif ($img_type == 1) {
                $source = imagecreatefromgif($filename);
                $thumb_source = imagecreatefromgif($thumb_filename);
                imagealphablending($source, FALSE);
                imagealphablending($thumb_source, FALSE);
                imagesavealpha($source, TRUE);
                imagesavealpha($thumb_source, TRUE);
                imagefilter($source, $img_filter_type, $ratio);
                imagefilter($thumb_source, $img_filter_type, $ratio);
                imagegif($source, $filename);
                imagegif($thumb_source, $thumb_filename);
                imagedestroy($source);
                imagedestroy($thumb_source);
            }
        } elseif ($edit_type == 'sepia' || $edit_type == 'dark_slate_grey' || $edit_type == 'saturate') {
            switch ($edit_type) {
                case 'sepia':
                    $img_filter_type = IMG_FILTER_COLORIZE;
                    $red = 112;
                    $green = 66;
                    $blue = 20;
                    break;
                case 'dark_slate_grey':
                    $img_filter_type = IMG_FILTER_COLORIZE;
                    $red = 47;
                    $green = 79;
                    $blue = 79;
                    break;
                case 'saturate':
                    $img_filter_type = IMG_FILTER_COLORIZE;
                    $red = 236;
                    $green = 40;
                    $blue = 41;
                    break;
                default:
                    return;
            }
            $img_type = $type_rotate;
            if ($img_type == 2) {
                $source = imagecreatefromjpeg($filename);
                $thumb_source = imagecreatefromjpeg($thumb_filename);
                imagefilter($source, $img_filter_type, $red, $green, $blue);
                imagefilter($thumb_source, $img_filter_type, $red, $green, $blue);
                imagejpeg($source, $filename, 100);
                imagejpeg($thumb_source, $thumb_filename, 90);
                imagedestroy($source);
                imagedestroy($thumb_source);
            } elseif ($img_type == 3) {
                $source = imagecreatefrompng($filename);
                $thumb_source = imagecreatefrompng($thumb_filename);
                imagealphablending($source, FALSE);
                imagealphablending($thumb_source, FALSE);
                imagesavealpha($source, TRUE);
                imagesavealpha($thumb_source, TRUE);
                imagefilter($source, $img_filter_type, $red, $green, $blue);
                imagefilter($thumb_source, $img_filter_type, $red, $green, $blue);
                imagepng($source, $filename, 9);
                imagepng($thumb_source, $thumb_filename, 9);
                imagedestroy($source);
                imagedestroy($thumb_source);
            } elseif ($img_type == 1) {
                $source = imagecreatefromgif($filename);
                $thumb_source = imagecreatefromgif($thumb_filename);
                imagealphablending($source, FALSE);
                imagealphablending($thumb_source, FALSE);
                imagesavealpha($source, TRUE);
                imagesavealpha($thumb_source, TRUE);
                imagefilter($source, $img_filter_type, $red, $green, $blue);
                imagefilter($thumb_source, $img_filter_type, $red, $green, $blue);
                imagegif($source, $filename);
                imagegif($thumb_source, $thumb_filename);
                imagedestroy($source);
                imagedestroy($thumb_source);
            }
        } elseif ($edit_type == 'recover') {
            global $wpdb;
            $id = isset($_POST['image_id']) ? (int) esc_html(stripslashes($_POST['image_id'])) : 0;
            $options = $wpdb->get_row('SELECT * FROM ' . $wpdb->prefix . 'bwg_option WHERE id=1');
            $thumb_width = $options->thumb_width;
            $thumb_height = $options->thumb_height;
            $this->recover_image($id, $thumb_width, $thumb_height);
        }
        @ini_restore('memory_limit');
        wp_print_scripts('jquery');
        wp_print_scripts('jquery-ui-widget');
        wp_print_scripts('jquery-ui-slider');
        ?>
    <link type="text/css" rel="stylesheet" id="bwg_tables-css" href="<?php 
        echo WD_BWG_FRONT_URL . '/css/bwg_edit_image.css';
        ?>
" media="all">
    <link type="text/css" rel="stylesheet" href="<?php 
        echo WD_BWG_FRONT_URL . '/css/font-awesome/font-awesome.css';
        ?>
" >
    <form method="post" id="bwg_rotate_image" action="<?php 
        echo $form_action;
        ?>
">
      <?php 
        wp_nonce_field('editThumb', 'bwg_nonce');
        ?>
      <div class="main_cont" style="height: <?php 
        echo $popup_height;
        ?>
px;">
        <div class="cont_for_effect">          
          <div class="effect_cont">
            <img class="effect" onclick="spider_rotate('grayscale', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/grayscale.png';
        ?>
"/>
            <p class="effect_title"><?php 
        _e("Grayscale", 'bwg_back');
        ?>
</p>
          </div>
          <div class="effect_cont">
            <img class="effect" onclick="spider_rotate('negative', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/negative.png';
        ?>
"/>
            <p class="effect_title"><?php 
        _e("Negative", 'bwg_back');
        ?>
</p>
          </div>
          <div class="effect_cont">
            <img class="effect" onclick="spider_rotate('remove', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/remove.png';
        ?>
"/>
            <p class="effect_title"><?php 
        _e("Removal", 'bwg_back');
        ?>
</p>
          </div>
          <div class="effect_cont">
            <img class="effect" onclick="spider_rotate('sepia', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/sepia.png';
        ?>
"/>
            <p class="effect_title"><?php 
        _e("Sepia", 'bwg_back');
        ?>
</p>
          </div>
          <div class="effect_cont">
            <img class="effect" onclick="spider_rotate('dark_slate_grey', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/dark_slate_grey.png';
        ?>
"/>
            <p class="effect_title"><?php 
        _e("Slate", 'bwg_back');
        ?>
</p>
          </div>
          <div class="effect_cont">
            <img class="effect" onclick="spider_rotate('saturate', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/saturate.png';
        ?>
"/>				  
            <p class="effect_title"><?php 
        _e("Saturate", 'bwg_back');
        ?>
</p>		 
         </div>
        </div>		
        <div class="reset_cont">
          <a class="reset_img" onclick="if (confirm('<?php 
        echo addslashes(__("Do you want to reset the image?", 'bwg_back'));
        ?>
')) spider_rotate('recover', 'bwg_rotate_image'); else return false; "><?php 
        _e("Reset image", 'bwg_back');
        ?>
</a>
        </div>
        <div class="flip_cont" >		  
          <img title="Flip Both" class="effect" onclick="spider_rotate('both', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/flip_both.png';
        ?>
"/>
          <img title="Flip Vertical" class="effect" onclick="spider_rotate('vertical', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/flip_vertical.png';
        ?>
"/>
          <img title="Flip Horizontal" class="effect" onclick="spider_rotate('horizontal', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/flip_horizontal.png';
        ?>
"/>
          <img title="Rotate Left" class="effect" onclick="spider_rotate('90', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/rotate_left.png';
        ?>
"/>
          <img title="Rotate Right" class="effect" onclick="spider_rotate('270', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/rotate_right.png';
        ?>
"/>		
        </div>
        <div class="img_cont" style="height:<?php 
        echo $popup_height - 40;
        ?>
px;">
          <div class="img_main_cont" >
            <div class="last_cont">
              <img class="bwg_preview_image" src="<?php 
        echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_data->image_url;
        ?>
?date=<?php 
        echo date('Y-m-y H:i:s');
        ?>
" style="max-width: <?php 
        echo $image_width;
        ?>
px; max-height: <?php 
        echo $image_height;
        ?>
px;" />
            </div>
          </div>
          <div class="cont_bright_cont">
            <div class="cont_bright_cont_main">
              <div class="last_cont">
                <div class="bwg_opt_cont">
                  <img title="Options" src="<?php 
        echo WD_BWG_URL . '/images/effects/option.png';
        ?>
" />
                </div>
                <div  id="brightness_contrast" ><!--
               --><div class="brightness_part" >
                    <div class="brightness_part_1">
                      <div class="brightness_butt">
                        <div class="contForBrightness">
                          <div class="brightness_title"><?php 
        _e("Brightness", 'bwg_back');
        ?>
</div>
                          <img title="Press for brightness" class="brightnessEffect" onclick="spider_rotate('brightness', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/brightness.png';
        ?>
" />
                          <div class="tooltip_for_press"><?php 
        _e("Press for result", 'bwg_back');
        ?>
</div>
                        </div>
                      </div>
                      <div class="cont_for_val">
                        <div id="sliderForBrightness">
                          <div class="brightness_val">
                            <div class="brightness_value">0</div>
                          </div>
                        </div>
                      </div>
                    </div>
                  </div><!--
               --><div class="contrast_part">				    
                    <div class="contrast_part_1">
                      <div class="contrast_part_slider">
                        <div id="sliderForcontrast">
                          <div class="contrast_val">
                            <div class="contrast_val_cont">0</div>
                          </div>
                        </div>
                      </div>
                      <div class="contrast_butt">
                        <div class="contForContrast">
                          <div class="contrast_title"><?php 
        _e("Contrast", 'bwg_back');
        ?>
</div>
                          <img title="Press for Contrast" class="contrastEffect" onclick="spider_rotate('contrast', 'bwg_rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/effects/contrast.png';
        ?>
" />
                          <div class="tooltip_for_press_contrast"><?php 
        _e("Press for result", 'bwg_back');
        ?>
</div>
                        </div>
                      </div>
                    </div>				
                  </div><!--
             --></div>
              </div>
            </div>		  
          </div>
        </div>
        </div>
        <input type="hidden" name="edit_type" id="edit_type" />
        <input type="hidden" name="image_id" id="image_id" value="<?php 
        echo $image_id;
        ?>
" />
      <input type="hidden" name="brightness_val" id="brightness_val" value="<?php 
        echo $brightness_val;
        ?>
" />
      <input type="hidden" name="contrast_val" id="contrast_val" value="<?php 
        echo $contrast_val;
        ?>
" />
    </form>	
    <script>
      jQuery(function() {
        jQuery("#sliderForBrightness").slider({
          range: "min",
          value: 0,
          min: -255,
          max: 255,
          step: 1,
          slide: function(event, ui) {
            jQuery('#brightness_val').val(ui.value);
            jQuery('.brightness_value').html(ui.value);
            
            var x = parseInt(ui.value);
            x = x + 255;
            var in_percents = (x / 510) * 100;			
            var in_percents_for_arrow = in_percents- 12;
            jQuery('.brightness_val').css('left', in_percents_for_arrow + '%');
            jQuery('.tooltip_for_press').fadeIn( "slow" );			
          }
        });
        jQuery("#sliderForcontrast").slider({
          range: "min",
          value: 0,
          min: -100,
          max: 100,
          step: 1,
          slide: function(event, ui) {
            jQuery('#contrast_val').val(ui.value);		
            jQuery('.contrast_val_cont').html(ui.value);
            var x = parseInt(ui.value);
            x = x + 100;
            var in_percents = (x / 200) * 100;			
            var in_percents_for_arrow = in_percents - 12;
            jQuery('.contrast_val').css('left', in_percents_for_arrow + '%');
            jQuery('.tooltip_for_press_contrast').fadeIn( "slow" );
          }
        });
      });
      function spider_rotate(type, form_id) {
        document.getElementById("edit_type").value = type;
        document.getElementById(form_id).submit();
      }

	  if (window.parent.document.getElementById("image_thumb_pr_<?php 
        echo $image_id;
        ?>
") != null){
        var image_src = window.parent.document.getElementById("image_thumb_pr_<?php 
        echo $image_id;
        ?>
").src;
		    window.parent.document.getElementById("image_thumb_pr_<?php 
        echo $image_id;
        ?>
").src = image_src + "?date=<?php 
        echo date('Y-m-y H:i:s');
        ?>
";
	  }	
	  else {
        var image_src = window.parent.document.getElementById("image_thumb_<?php 
        echo $image_id;
        ?>
").src;	 
        window.parent.document.getElementById("image_thumb_<?php 
        echo $image_id;
        ?>
").src = image_src + "?date=<?php 
        echo date('Y-m-y H:i:s');
        ?>
";		
	  }

      jQuery(document).ready(function() {
        jQuery(".bwg_opt_cont").click(function(){
          if (jQuery('#brightness_contrast').height() == 0)
            jQuery('#brightness_contrast').animate({
              height: 40
            }, 
            'linear',
            function() {
              jQuery('#sliderForBrightness').css('opacity', 1);
              jQuery('#sliderForBrightness').css('display', 'inline-block');
              jQuery('#sliderForcontrast').css('opacity', 1);
              jQuery('#sliderForcontrast').css('display', 'inline-block');
              jQuery('.contForBrightness').css('display', 'inline-block');
              jQuery('.contForContrast').css('display', 'inline-block');
            });
          else 
            jQuery('#brightness_contrast').animate({
              height: 0
            },
            'linear',
            function() {
              jQuery('#sliderForBrightness').css('opacity', 0);
              jQuery('#sliderForBrightness').css('display', 'none');
              jQuery('#sliderForcontrast').css('opacity', 0);
              jQuery('#sliderForcontrast').css('display', 'none');
              jQuery('.contForBrightness').css('display', 'none');
              jQuery('.contForContrast').css('display', 'none');
            }
          );
        });
        jQuery('body').click(function() {
          jQuery('.tooltip_for_press').fadeOut( "slow" );
        });
        jQuery('body').click(function() {
          jQuery('.tooltip_for_press_contrast').fadeOut("slow");
        });
      });
    </script>
    <?php 
        die;
    }
Example #2
0
    public function rotate()
    {
        global $WD_BWG_UPLOAD_DIR;
        $popup_width = (int) (isset($_GET['width']) ? esc_html($_GET['width']) : '650') - 30;
        $image_width = $popup_width - 40;
        $popup_height = (int) (isset($_GET['height']) ? esc_html($_GET['height']) : '500') - 55;
        $image_height = $popup_height - 70;
        $image_id = isset($_GET['image_id']) ? esc_html($_GET['image_id']) : '0';
        $edit_type = isset($_POST['edit_type']) ? esc_html($_POST['edit_type']) : '';
        if (isset($_GET['image_url'])) {
            $image_data = new stdClass();
            $image_data->image_url = isset($_GET['image_url']) ? esc_html($_GET['image_url']) : '';
            $image_data->thumb_url = isset($_GET['thumb_url']) ? esc_html($_GET['thumb_url']) : '';
            $filename = htmlspecialchars_decode(ABSPATH . $WD_BWG_UPLOAD_DIR . $image_data->image_url, ENT_COMPAT | ENT_QUOTES);
            $thumb_filename = htmlspecialchars_decode(ABSPATH . $WD_BWG_UPLOAD_DIR . $image_data->thumb_url, ENT_COMPAT | ENT_QUOTES);
            $form_action = add_query_arg(array('action' => 'editThumb', 'type' => 'rotate', 'image_id' => $image_id, 'image_url' => $image_data->image_url, 'thumb_url' => $image_data->thumb_url, 'width' => '650', 'height' => '500', 'TB_iframe' => '1'), admin_url('admin-ajax.php'));
        } else {
            $image_data = $this->model->get_image_data($image_id);
            $filename = htmlspecialchars_decode(ABSPATH . $WD_BWG_UPLOAD_DIR . $image_data->image_url, ENT_COMPAT | ENT_QUOTES);
            $thumb_filename = htmlspecialchars_decode(ABSPATH . $WD_BWG_UPLOAD_DIR . $image_data->thumb_url, ENT_COMPAT | ENT_QUOTES);
            $form_action = add_query_arg(array('action' => 'editThumb', 'type' => 'rotate', 'image_id' => $image_id, 'width' => '650', 'height' => '500', 'TB_iframe' => '1'), admin_url('admin-ajax.php'));
        }
        ini_set('memory_limit', '-1');
        list($width_rotate, $height_rotate, $type_rotate) = getimagesize($filename);
        if ($edit_type == '270' || $edit_type == '90') {
            if ($type_rotate == 2) {
                $source = imagecreatefromjpeg($filename);
                $thumb_source = imagecreatefromjpeg($thumb_filename);
                $rotate = imagerotate($source, $edit_type, 0);
                $thumb_rotate = imagerotate($thumb_source, $edit_type, 0);
                imagejpeg($thumb_rotate, $thumb_filename, 90);
                imagejpeg($rotate, $filename, 100);
                imagedestroy($source);
                imagedestroy($rotate);
                imagedestroy($thumb_source);
                imagedestroy($thumb_rotate);
            } elseif ($type_rotate == 3) {
                $source = imagecreatefrompng($filename);
                $thumb_source = imagecreatefrompng($thumb_filename);
                imagealphablending($source, FALSE);
                imagealphablending($thumb_source, FALSE);
                imagesavealpha($source, TRUE);
                imagesavealpha($thumb_source, TRUE);
                $rotate = imagerotate($source, $edit_type, imageColorAllocateAlpha($source, 0, 0, 0, 127));
                $thumb_rotate = imagerotate($thumb_source, $edit_type, imageColorAllocateAlpha($source, 0, 0, 0, 127));
                imagealphablending($rotate, FALSE);
                imagealphablending($thumb_rotate, FALSE);
                imagesavealpha($rotate, TRUE);
                imagesavealpha($thumb_rotate, TRUE);
                imagepng($rotate, $filename, 9);
                imagepng($thumb_rotate, $thumb_filename, 9);
                imagedestroy($source);
                imagedestroy($rotate);
                imagedestroy($thumb_source);
                imagedestroy($thumb_rotate);
            } elseif ($type_rotate == 1) {
                $source = imagecreatefromgif($filename);
                $thumb_source = imagecreatefromgif($thumb_filename);
                imagealphablending($source, FALSE);
                imagealphablending($thumb_source, FALSE);
                imagesavealpha($source, TRUE);
                imagesavealpha($thumb_source, TRUE);
                $rotate = imagerotate($source, $edit_type, imageColorAllocateAlpha($source, 0, 0, 0, 127));
                $thumb_rotate = imagerotate($thumb_source, $edit_type, imageColorAllocateAlpha($source, 0, 0, 0, 127));
                imagealphablending($rotate, FALSE);
                imagealphablending($thumb_rotate, FALSE);
                imagesavealpha($rotate, TRUE);
                imagesavealpha($thumb_rotate, TRUE);
                imagegif($rotate, $filename);
                imagegif($thumb_rotate, $thumb_filename);
                imagedestroy($source);
                imagedestroy($rotate);
                imagedestroy($thumb_source);
                imagedestroy($thumb_rotate);
            } else {
                ?>
        <div class="thumb_message"><strong>You can't rotate this type of image.</strong></div>
        <?php 
            }
        } elseif ($edit_type == 'vertical' || $edit_type == 'horizontal' || $edit_type == 'both') {
            function bwg_image_flip($imgsrc, $mode)
            {
                $width = imagesx($imgsrc);
                $height = imagesy($imgsrc);
                $src_x = 0;
                $src_y = 0;
                $src_width = $width;
                $src_height = $height;
                switch ($mode) {
                    case 'vertical':
                        $src_y = $height - 1;
                        $src_height = -$height;
                        break;
                    case 'horizontal':
                        $src_x = $width - 1;
                        $src_width = -$width;
                        break;
                    case 'both':
                        $src_x = $width - 1;
                        $src_y = $height - 1;
                        $src_width = -$width;
                        $src_height = -$height;
                        break;
                    default:
                        return $imgsrc;
                }
                $trans_colour = imageColorAllocateAlpha($imgsrc, 0, 0, 0, 127);
                $imgdest = imagecreatetruecolor($width, $height);
                imagefill($imgdest, 0, 0, $trans_colour);
                if (imagecopyresampled($imgdest, $imgsrc, 0, 0, $src_x, $src_y, $width, $height, $src_width, $src_height)) {
                    return $imgdest;
                }
                return $imgsrc;
            }
            if ($type_rotate == 2) {
                $source = imagecreatefromjpeg($filename);
                $flip = bwg_image_flip($source, $edit_type);
                imagejpeg($flip, $filename, 100);
                $thumb_source = imagecreatefromjpeg($thumb_filename);
                $thumb_flip = bwg_image_flip($thumb_source, $edit_type);
                imagejpeg($thumb_flip, $thumb_filename, 90);
                imagedestroy($source);
                imagedestroy($flip);
                imagedestroy($thumb_source);
                imagedestroy($thumb_flip);
            } elseif ($type_rotate == 3) {
                $source = imagecreatefrompng($filename);
                $thumb_source = imagecreatefrompng($thumb_filename);
                imagealphablending($source, FALSE);
                imagealphablending($thumb_source, FALSE);
                imagesavealpha($source, TRUE);
                imagesavealpha($thumb_source, TRUE);
                $flip = bwg_image_flip($source, $edit_type);
                $thumb_flip = bwg_image_flip($thumb_source, $edit_type);
                imagealphablending($flip, FALSE);
                imagealphablending($thumb_flip, FALSE);
                imagesavealpha($flip, TRUE);
                imagesavealpha($thumb_flip, TRUE);
                imagepng($flip, $filename, 9);
                imagepng($thumb_flip, $thumb_filename, 9);
                imagedestroy($source);
                imagedestroy($flip);
                imagedestroy($thumb_source);
                imagedestroy($thumb_flip);
            } elseif ($type_rotate == 1) {
                $source = imagecreatefromgif($filename);
                $thumb_source = imagecreatefromgif($thumb_filename);
                imagealphablending($source, FALSE);
                imagealphablending($thumb_source, FALSE);
                imagesavealpha($source, TRUE);
                imagesavealpha($thumb_source, TRUE);
                $flip = bwg_image_flip($source, $edit_type);
                $thumb_flip = bwg_image_flip($thumb_source, $edit_type);
                imagealphablending($flip, FALSE);
                imagealphablending($thumb_flip, FALSE);
                imagesavealpha($flip, TRUE);
                imagesavealpha($thumb_flip, TRUE);
                imagegif($flip, $filename);
                imagegif($thumb_flip, $thumb_filename);
                imagedestroy($source);
                imagedestroy($flip);
                imagedestroy($thumb_source);
                imagedestroy($thumb_flip);
            } else {
                ?>
        <div class="thumb_message"><strong>You can't flip this type of image.</strong></div>
        <?php 
            }
        }
        ini_restore('memory_limit');
        ?>
    <style>
      .spider_rotate {
        background: linear-gradient(to top, #ECECEC, #F9F9F9) repeat scroll 0 0 #F1F1F1;
        cursor: pointer;
        height: 30px;
        padding: 2px;
        -moz-outline-radius:  2px;
        outline: 1px solid #CCCCCC;
      }
      .spider_rotate:hover {
        -moz-outline-radius:  2px;
        outline: 1px solid #999999;
        padding: 2px;
      }
      .thumb_message {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        background: linear-gradient(to top, #ECECEC, #F9F9F9) repeat scroll 0 0 #F1F1F1;
        background-color: #F5F5F5;
        border: 1px solid #CCCCCC;
        border-radius: 3px 3px 3px 3px;
        box-sizing: border-box;
        color: #333333;
        font-family: sans-serif;
        font-size: 12px;
        margin: 5px auto;
        padding: 7px 5px;
        width: <?php 
        echo $popup_width;
        ?>
;
      }
    </style>
    <script>
      function spider_rotate(type, form_id) {
        document.getElementById("edit_type").value = type;
        document.getElementById(form_id).submit();
      }
      var image_src = window.parent.document.getElementById("image_thumb_<?php 
        echo $image_id;
        ?>
").src;
      window.parent.document.getElementById("image_thumb_<?php 
        echo $image_id;
        ?>
").src = image_src + "?date=<?php 
        echo date('Y-m-y H:i:s');
        ?>
";
    </script>
    <form method="post" id="rotate_image" action="<?php 
        echo $form_action;
        ?>
">
    <?php 
        wp_nonce_field('editThumb', 'bwg_nonce');
        ?>
      <div style="text-align:center; width:inherit; height:<?php 
        echo $popup_height;
        ?>
px;">
        <div style="height:40px;">
          <img title="Flip Both" class="spider_rotate" onclick="spider_rotate('both', 'rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/flip_both.png';
        ?>
"/>
          <img title="Flip Vertical" class="spider_rotate" onclick="spider_rotate('vertical', 'rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/flip_vertical.png';
        ?>
"/>
          <img title="Flip Horizontal" class="spider_rotate" onclick="spider_rotate('horizontal', 'rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/flip_horizontal.png';
        ?>
"/>
          <img title="Rotate Left" class="spider_rotate" onclick="spider_rotate('90', 'rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/rotate_left.png';
        ?>
"/>
          <img title="Rotate Right" class="spider_rotate" onclick="spider_rotate('270', 'rotate_image')" src="<?php 
        echo WD_BWG_URL . '/images/rotate_right.png';
        ?>
"/>
        </div>
        <div style="display:table; width:100%; height:<?php 
        echo $popup_height - 40;
        ?>
px;">
          <div style="display:table-cell; vertical-align:middle;">
            <img src="<?php 
        echo site_url() . '/' . $WD_BWG_UPLOAD_DIR . $image_data->image_url;
        ?>
?date=<?php 
        echo date('Y-m-y H:i:s');
        ?>
" style="margin:0 auto; display:block; max-width:<?php 
        echo $image_width;
        ?>
px;max-height:<?php 
        echo $image_height;
        ?>
px;" />
          </div>
        </div>
      </div>
      <input type="hidden" name="edit_type" id="edit_type" />
      <input type="hidden" name="image_id" id="image_id" value="<?php 
        echo $image_id;
        ?>
" />
    </form>
    <?php 
        die;
    }