0

codeigniter でライブラリを作成しました。機能していません。

私のライブラリファイルは;

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); 

class Image_pixelete{

function __construct()
{
    $this->ci=&get_instance();

}

public function do_pixel()
{
    $image = imagecreatefromjpeg(base_url().'photo/Penguins.jpg');
    $imagex = imagesx($image);
    $imagey = imagesy($image);

    $pixelate_y=10;
    $pixelate_x=10;
    $height=$imagey;
    $width=$imagex;
    for($y = 0;$y < $height;$y += $pixelate_y+1)
    {
        for($x = 0;$x < $width;$x += $pixelate_x+1)
        {
        // get the color for current pixel
        $rgb = imagecolorsforindex($image, imagecolorat($image, $x, $y));

        // get the closest color from palette
        $color = imagecolorclosest($image, $rgb['red'], $rgb['green'], $rgb['blue']);

        imagefilledrectangle($image, $x, $y, $x+$pixelate_x, $y+$pixelate_y, $color);   
        }
    }
}

これが私のコントローラー呼び出しです

public function pixel()
    {
        $this->load->library('Image_pixelete');
        $this->Image_pixelete->do_pixel();
    }

ここに私のエラーがあります。

codeigniter のライブラリ エラー

問題に対処するための問題の正確な性質について混乱しています。レビューしていただけますか?

4

1 に答える 1

0

ライブラリを小文字で読み込んで使用してみてください。

$this->load->library('image_pixelete');
$this->image_pixelete->do_pixel();

この同様の質問を確認してくださいcodeigniter cannot load library

于 2013-03-24T03:47:29.287 に答える