Skip to content

Commit 46cb58a

Browse files
committed
fix examples
1 parent 14f97cc commit 46cb58a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ which gives some more background.
2828
<?php
2929
include 'Image.php';
3030

31-
use JCupitt\Vips;
31+
use Jcupitt\Vips;
3232

3333
$image = Vips\Image::newFromFile($argv[1]);
3434

examples/vips_addconst.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
include '../src/Image.php';
55

6-
use JCupitt\Vips;
6+
use Jcupitt\Vips;
77

88
$image = Vips\Image::newFromArray([[1, 2, 3], [4, 5, 6]]);
99
$image = $image->linear(1, 1);

examples/vips_bench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
include '../src/Image.php';
55

6-
use JCupitt\Vips;
6+
use Jcupitt\Vips;
77

88
$im = Vips\Image::newFromFile($argv[1], ["access" => "sequential"]);
99

examples/vips_class.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
include '../src/Image.php';
55

6-
use JCupitt\Vips;
6+
use Jcupitt\Vips;
77

88
$image = Vips\Image::newFromFile($argv[1]);
99

0 commit comments

Comments
 (0)