%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/cwg/wp-content/plugins/searchwp/lib/vendor/henck/rtf-to-html/src/Html/
Upload File :
Create Path :
Current File : //var/www/cwg/wp-content/plugins/searchwp/lib/vendor/henck/rtf-to-html/src/Html/Image.php

<?php

namespace SearchWP\Dependencies\RtfHtmlPhp\Html;

class Image
{
    public function __construct()
    {
        $this->Reset();
    }
    public function Reset()
    {
        $this->format = 'bmp';
        $this->width = 0;
        // in xExt if wmetafile otherwise in px
        $this->height = 0;
        // in yExt if wmetafile otherwise in px
        $this->goalWidth = 0;
        // in twips
        $this->goalHeight = 0;
        // in twips
        $this->pcScaleX = 100;
        // 100%
        $this->pcScaleY = 100;
        // 100%
        $this->binarySize = null;
        // Number of bytes of the binary data
        $this->ImageData = null;
        // Binary or Hexadecimal Data
    }
    public function PrintImage()
    {
        // <img src="data:image/{FORMAT};base64,{#BDATA}" />
        $output = "<img src=\"data:image/{$this->format};base64,";
        if (isset($this->binarySize)) {
            // process binary data
            return;
        } else {
            // process hexadecimal data
            $output .= \base64_encode(\pack('H*', $this->ImageData));
        }
        $output .= "\" />";
        return $output;
    }
}

Zerion Mini Shell 1.0