• Login
  • Register
  • Zoek
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Articles
  • Pages
  • Forum
  • Filebase Entry
  • More Options

ICTscripters

Dé plek voor IT

Dé plek voor IT

Login

Geavanceerde opties
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Dé plek voor IT - ICTscripters
  2. Forum
  3. Scripting & programmeren
  4. Overige
  5. Archief
  6. Request

Forum

  • RPG game gebouwd met AI

    Frenzo.Webservice 11 juni 2026 om 19:44
  • Het Grote Vibe Code Topic

    Syntax 1 juni 2026 om 20:05
  • PWYL source gezocht

    Syntax 29 mei 2026 om 14:03
  • Ictscripters Chat

    AarClay 21 april 2026 om 11:34
  • Help testers nodig voor android app Urgent

    Servertjee 20 februari 2026 om 12:07
  • Partner Gezocht om meerdere NFT Collecties op Open Sea te Plaatsen

    Servertjee 20 februari 2026 om 12:06
  • Afspraken systeem met planbeperking

    Jeffrey.Hoekman 20 februari 2026 om 11:52
  • Developer Gezocht

    Servertjee 19 februari 2026 om 17:31

Marktplaats

  • 359 Nieuwe Domeinnamen Mei 2026

    shiga 1 juni 2026 om 12:45
  • Sicarras.com - Moderne Mafia Text-Based RPG

    Jeffrey.Hoekman 27 mei 2026 om 17:40
  • 370 Nieuwe Domeinnamen April 2026

    shiga 1 mei 2026 om 12:06

Opencart probleem

  • Jordy.S
  • 9 januari 2012 om 17:45
  • Jordy.S
    Intermediate
    Berichten
    351
    • 9 januari 2012 om 17:45
    • #1

    http://jsnet.nl/upload/

    Wat is het probleem

    het script:

    PHP
    <?php
    final class Image {
        private $file;
        private $image;
        private $info;
    		
    	public function __construct($file) {
    		if (file_exists($file)) {
    			$this->file = $file;
    
    
    			$info = getimagesize($file);
    
    
    			$this->info = array(
                	'width'  => $info[0],
                	'height' => $info[1],
                	'bits'   => $info['bits'],
                	'mime'   => $info['mime']
            	);
            	
            	$this->image = $this->create($file);
        	} else {
          		exit('Error: Could not load image ' . $file . '!');
        	}
    	}
    		
    	private function create($image) {
    		$mime = $this->info['mime'];
    		
    		if ($mime == 'image/gif') {
    			return imagecreatefromgif($image);
    		} elseif ($mime == 'image/png') {
    			return imagecreatefrompng($image);
    		} elseif ($mime == 'image/jpeg') {
    			return imagecreatefromjpeg($image);
    		}
        }	
    	
        public function save($file, $quality = 90) {
           $info = pathinfo($file);
          
        $extension = strtolower($info['extension']);
      
            if ($extension == 'jpeg' || $extension == 'jpg') {
                imagejpeg($this->image, $file, $quality);
            } elseif($extension == 'png') {
                imagepng($this->image, $file, 0);
            } elseif($extension == 'gif') {
                imagegif($this->image, $file);
            }
         imagedestroy($this->image);
    
    
        }	    
    	
        public function resize($width = 0, $height = 0) {
        	if (!$this->info['width'] || !$this->info['height']) {
    			return;
    		}
    
    
    		$xpos = 0;
    		$ypos = 0;
    
    
    		$scale = min($width / $this->info['width'], $height / $this->info['height']);
    		
    		if ($scale == 1) {
    			return;
    		}
    		
    		$new_width = (int)($this->info['width'] * $scale);
    		$new_height = (int)($this->info['height'] * $scale);			
        	$xpos = (int)(($width - $new_width) / 2);
       		$ypos = (int)(($height - $new_height) / 2);
            		        
           	$image_old = $this->image;
            $this->image = imagecreatetruecolor($width, $height);
    			
    		if (isset($this->info['mime']) && $this->info['mime'] == 'image/png') {		
    			imagealphablending($this->image, false);
    			imagesavealpha($this->image, true);
    			$background = imagecolorallocatealpha($this->image, 255, 255, 255, 127);
    			imagecolortransparent($this->image, $background);
    		} else {
    			$background = imagecolorallocate($this->image, 255, 255, 255);
    		}
    		
    		imagefilledrectangle($this->image, 0, 0, $width, $height, $background);
    	
            imagecopyresampled($this->image, $image_old, $xpos, $ypos, 0, 0, $new_width, $new_height, $this->info['width'], $this->info['height']);
            imagedestroy($image_old);
               
            $this->info['width']  = $width;
            $this->info['height'] = $height;
        }
        
        public function watermark($file, $position = 'bottomright') {
            $watermark = $this->create($file);
            
            $watermark_width = imagesx($watermark);
            $watermark_height = imagesy($watermark);
            
            switch($position) {
                case 'topleft':
                    $watermark_pos_x = 0;
                    $watermark_pos_y = 0;
                    break;
                case 'topright':
                    $watermark_pos_x = $this->info['width'] - $watermark_width;
                    $watermark_pos_y = 0;
                    break;
                case 'bottomleft':
                    $watermark_pos_x = 0;
                    $watermark_pos_y = $this->info['height'] - $watermark_height;
                    break;
                case 'bottomright':
                    $watermark_pos_x = $this->info['width'] - $watermark_width;
                    $watermark_pos_y = $this->info['height'] - $watermark_height;
                    break;
            }
            
            imagecopy($this->image, $watermark, $watermark_pos_x, $watermark_pos_y, 0, 0, 120, 40);
            
            imagedestroy($watermark);
        }
        
        public function crop($top_x, $top_y, $bottom_x, $bottom_y) {
            $image_old = $this->image;
            $this->image = imagecreatetruecolor($bottom_x - $top_x, $bottom_y - $top_y);
            
            imagecopy($this->image, $image_old, 0, 0, $top_x, $top_y, $this->info['width'], $this->info['height']);
            imagedestroy($image_old);
            
            $this->info['width'] = $bottom_x - $top_x;
            $this->info['height'] = $bottom_y - $top_y;
        }
        
        public function rotate($degree, $color = 'FFFFFF') {
    		$rgb = $this->html2rgb($color);
    		
            $this->image = imagerotate($this->image, $degree, imagecolorallocate($this->image, $rgb[0], $rgb[1], $rgb[2]));
            
    		$this->info['width'] = imagesx($this->image);
    		$this->info['height'] = imagesy($this->image);
        }
    	    
        private function filter($filter) {
            imagefilter($this->image, $filter);
        }
                
        private function text($text, $x = 0, $y = 0, $size = 5, $color = '000000') {
    		$rgb = $this->html2rgb($color);
            
    		imagestring($this->image, $size, $x, $y, $text, imagecolorallocate($this->image, $rgb[0], $rgb[1], $rgb[2]));
        }
        
        private function merge($file, $x = 0, $y = 0, $opacity = 100) {
            $merge = $this->create($file);
    
    
            $merge_width = imagesx($image);
            $merge_height = imagesy($image);
    		        
            imagecopymerge($this->image, $merge, $x, $y, 0, 0, $merge_width, $merge_height, $opacity);
        }
    			
    	private function html2rgb($color) {
    		if ($color[0] == '#') {
    			$color = substr($color, 1);
    		}
    		
    		if (strlen($color) == 6) {
    			list($r, $g, $b) = array($color[0] . $color[1], $color[2] . $color[3], $color[4] . $color[5]);   
    		} elseif (strlen($color) == 3) {
    			list($r, $g, $b) = array($color[0] . $color[0], $color[1] . $color[1], $color[2] . $color[2]);    
    		} else {
    			return false;
    		}
    		
    		$r = hexdec($r); 
    		$g = hexdec($g); 
    		$b = hexdec($b);    
    		
    		return array($r, $g, $b);
    	}	
    }
    ?>
    Toon Meer

    Bezig met Eredivisie Voetbal project.

    (Tips zijn altijd welkom!)

  • Guest, wil je besparen op je domeinnamen? (ad)
  • Tim
    Enlightened
    Ontvangen Reacties
    77
    Berichten
    3.685
    • 9 januari 2012 om 17:47
    • #2

    Je hosting heeft jou op safe mode gezet waardoor het niet werkt.

    Master student IT-recht en Master student Ondernemingsrecht & software ingenieur
    My Personal profile
    My professional profile (LinkedIn/CV)

  • Jordy.S
    Intermediate
    Berichten
    351
    • 9 januari 2012 om 17:48
    • #3

    Ik kan hier bij komen, hoe verander ik dit?

    Bezig met Eredivisie Voetbal project.

    (Tips zijn altijd welkom!)

  • mediazstudios
    Student
    Berichten
    115
    • 9 januari 2012 om 17:48
    • #4

    Jou safe mode moet je uitzetten of je vraagt het aan de hoster...

    Met vriendelijke groet,
    Mohamed Bourjel

    Mediazstudios / Audiovisuele & Grafische vormgeving
    Goodhosted / De no-nonsense webhosting provider
    kvk:53265025

  • Malik
    Guest
    • 9 januari 2012 om 17:50
    • #5

    via directadmin kan het of anders via de helpdesk.

  • Jordy.S
    Intermediate
    Berichten
    351
    • 9 januari 2012 om 17:56
    • #6

    Ik heb plesk

    Bezig met Eredivisie Voetbal project.

    (Tips zijn altijd welkom!)

  • Tim
    Enlightened
    Ontvangen Reacties
    77
    Berichten
    3.685
    • 9 januari 2012 om 18:00
    • #7

    Google het ;)
    En anders vraag je hoster ;)

    Master student IT-recht en Master student Ondernemingsrecht & software ingenieur
    My Personal profile
    My professional profile (LinkedIn/CV)

  • mediazstudios
    Student
    Berichten
    115
    • 9 januari 2012 om 22:17
    • #8

    Oke een stappenplan voor jou gemaakt...

    Ga eerst naar domeinen...
    - Bij domeinen kies je jouw domein uit..

    Zodra je daar bent druk je op webhosting instellingen..

    Dan zie je onder SSI support / PHP support staan...

    Daar zie je dan het vinkje naast PHP'safe_mode' aan staan klik die uit en jou probleem is verholpen...

    Met vriendelijke groet,
    Mohamed Bourjel

    Mediazstudios / Audiovisuele & Grafische vormgeving
    Goodhosted / De no-nonsense webhosting provider
    kvk:53265025

Participate now!

Heb je nog geen account? Registreer je nu en word deel van onze community!

Maak een account aan Login

ICT Nieuws

  • Quanscient ontvangt €10M om AI- en kwantum-native hardware engineering te bevorderen - Tech.eu

    ICTscripters 27 mei 2026 om 12:03
  • Datalek bij leverancier Canvas - Universiteit van Amsterdam

    ICTscripters 10 mei 2026 om 12:03
  • Data privacy in 2026: Hoe de naleving van GDPR verandert

    ICTscripters 8 mei 2026 om 12:16

Blogs

  • Functioneel ontwerp

    Dees 28 december 2014 om 12:38
  • Access Control List implementatie in PHP/MySQL - deel 1/2

    FangorN 28 december 2018 om 12:35
  • Access Control List implementatie in PHP/MySQL - deel 2/2

    FangorN 29 december 2018 om 12:37
  1. Marktplaats
  2. Design
  3. Voorwaarden
  4. Ons team
  5. Leden
  6. Geschiedenis
  7. Regels
  8. Links
  9. Privacy Policy
ICTscripters ©2005 - 2026 , goedkope hosting door DiMoWeb.com, BE0558.915.582
Sponsors: Beste kattenhotel provincie Antwerpen | Beste Zetes eid kaartlezer webshop
Style: Nexus by cls-design
Stylename
Nexus
Manufacturer
cls-design
Licence
Commercial styles
Help
Supportforum
Visit cls-design