Inital commit
This commit is contained in:
8
core/vendor/imagine/imagine/.gitignore
vendored
Normal file
8
core/vendor/imagine/imagine/.gitignore
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
tests/Imagine/Fixtures/results/in_out
|
||||
!tests/Imagine/Fixtures/results/in_out/.placeholder
|
||||
docs/_build
|
||||
Imagine-*.tgz
|
||||
imagine-*.phar
|
||||
composer.phar
|
||||
vendor/
|
||||
bin/
|
||||
10
core/vendor/imagine/imagine/.travis.yml
vendored
Normal file
10
core/vendor/imagine/imagine/.travis.yml
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
language: php
|
||||
before_script:
|
||||
- composer self-update
|
||||
- composer install --prefer-source
|
||||
php:
|
||||
- 5.3.3
|
||||
- 5.3
|
||||
- 5.4
|
||||
- 5.5
|
||||
script: rake test
|
||||
174
core/vendor/imagine/imagine/CHANGELOG.md
vendored
Normal file
174
core/vendor/imagine/imagine/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,174 @@
|
||||
# CHANGELOG
|
||||
|
||||
### 0.6.3 (2015-09-19)
|
||||
* Fix wrong array_merge when calling Transformation::getFilters without filters
|
||||
* Add export-ignore git attribute (@Benoth)
|
||||
* Fix docblocks (@Sm0ke0ut and @norkunas)
|
||||
* Fix animated gif loop length options (@jygaulier)
|
||||
* Multiple tweaks for the repository and travis builds (@localheinz, @vrkansagara and @dunzun)
|
||||
* Fix metadata extraction from streams (@armatronic)
|
||||
* Fix autorotation (@tarleb)
|
||||
* Load exifmetadata reader whenever possible
|
||||
* Add metadata getter
|
||||
|
||||
### 0.6.2 (2014-11-11)
|
||||
* Stripping image containing an invalid ICC profile fails
|
||||
* MetadataBag now implements \Countable
|
||||
* Fix wrong array_merge in MetadataBag giving invalid results with HTTP resources (@javaguirre)
|
||||
* Fix Imagick merge strategy (@GrahamCampbell)
|
||||
* Fixed various alpha issues (@RadekDvorak)
|
||||
* Fix Image cloning on HHVM (@RdeWilde)
|
||||
* Fix exception on invalid file using GD driver (@vlakoff).
|
||||
* Fix ImageInterface::getSize on animated GIFs (@sokac)
|
||||
|
||||
### 0.6.1 (2014-06-16)
|
||||
* Fix invalid namespace usage (#336 @csanquer).
|
||||
|
||||
### 0.6.0 (2014-06-13)
|
||||
|
||||
* BC break: Colors are now provided through the PaletteInterface. Any call
|
||||
to previous Imagine\Image\Color constructor must be removed and use the
|
||||
palette provided by Imagine\Image\ImageInterface::getPalette to create
|
||||
colors.
|
||||
* BC break : Animated GIF default delay is no longer 800ms but null. This
|
||||
avoids resettings a delay on animated image.
|
||||
* Add support for ICC profiles
|
||||
* Add support for CMYK and grayscale colorspace images.
|
||||
* Add filter argument to ImageInterface::thumbnail method.
|
||||
* Add priority to filters (@Richtermeister).
|
||||
* Add blur effect (@Nokrosis).
|
||||
* Rename "quality" option to "jpeg_quality" and apply it only to JPEG files (@vlakoff).
|
||||
* Add "png_compression_level" option (@vlakoff).
|
||||
* Rename "filters" option to "png_compression_filter" (@vlakoff).
|
||||
* Deprecate `quality` and `filters` ManipulatorInterface::save options, use
|
||||
`jpeg_quality`, `png_compression_level` and `png_compression_filter` instead.
|
||||
* Add support for alpha blending in GD drawer (@salem).
|
||||
* Add width parameter to Drawer::text (@salemgolemugoo).
|
||||
* Add NotSupportedException when a driver does not support an operation (@rouffj).
|
||||
* Add support for metadata.
|
||||
* Fix #158: GD alpha detection + Color::isOpaque are broken.
|
||||
* Fix color extraction for non-RGB palettes.
|
||||
|
||||
### 0.5.0 (2013-07-10)
|
||||
|
||||
* Add `Layers::coalesce`.
|
||||
* Add filter option to `ImageInterface::resize`.
|
||||
* Add sharpen effect.
|
||||
* Add interlace support.
|
||||
* `LayersInterface` now extends `ArrayAccess`, gives support for animated gifs.
|
||||
* Remove Imagick and Gmagick flatten after composite.
|
||||
* Fix pixel opacity reading in `Gmagick::histogram`.
|
||||
* Deprecate pear channel installation.
|
||||
* Deprecate phar installation.
|
||||
|
||||
### 0.4.1 (2012-12-13)
|
||||
|
||||
* Lazy-load GD layers.
|
||||
|
||||
### 0.4.0 (2012-12-10)
|
||||
|
||||
* Add support for image Layers.
|
||||
* Add Colorize effect.
|
||||
* Add documentation for the Grayscale effect.
|
||||
* Port RelativeResize filter from JmikolaImagineBundle.
|
||||
|
||||
### 0.3.1 (2012-11-12)
|
||||
|
||||
* Add Grayscale effect.
|
||||
* `Drawer::text` position fix.
|
||||
|
||||
### 0.3.0 (2012-07-28)
|
||||
|
||||
* Add configurable border thickness to drawer interface and implementations.
|
||||
* Add `ImageInterface`::strip.
|
||||
* Add Canvas filter.
|
||||
* Add resolution option on image saving.
|
||||
* Add Grayscale filter.
|
||||
* Add sami API documentation.
|
||||
* Add compression quality to Gmagick.
|
||||
* Add effects API.
|
||||
* Add method to get pixel at point in Gmagick.
|
||||
* Ensure valid background color in rotations.
|
||||
* Fill lines with color to prevent semi-transparency issues.
|
||||
* Use `Imagick::resizeImage` instead of `Imagick::thumbnailImage` for resizing.
|
||||
* Fix PNG transparency on save ; do not flatten if not necessary.
|
||||
|
||||
### 0.2.8 (2011-11-29)
|
||||
|
||||
* Add support for Travis CI.
|
||||
|
||||
### 0.2.7 (2011-11-17)
|
||||
|
||||
* Use composer for autoloading.
|
||||
|
||||
### 0.2.6 (2011-11-09)
|
||||
|
||||
* Documentation enhancements.
|
||||
|
||||
### 0.2.5 (2011-10-29)
|
||||
|
||||
* Add PEAR support.
|
||||
* Documentation enhancements.
|
||||
|
||||
### 0.2.4 (2011-10-17)
|
||||
|
||||
* Add imagine.phar, phar and rake tasks.
|
||||
* Add `ImagineInterface::read` to read from a stream resource.
|
||||
* Documentation enhancements.
|
||||
* Fix gifs transparency issues.
|
||||
|
||||
### 0.2.3 (2011-10-16)
|
||||
|
||||
* Documentation enhancements.
|
||||
|
||||
### 0.2.2 (2011-10-16)
|
||||
|
||||
* Documentation enhancements.
|
||||
|
||||
### 0.2.1 (2011-10-15)
|
||||
|
||||
* Add `PointInterface::move`.
|
||||
* `BoxInterface::scale` can accept floats.
|
||||
* Set antialias mode for GD images.
|
||||
* Fix png compression.
|
||||
|
||||
### 0.2.0 (2011-10-06)
|
||||
|
||||
* Add `Imagine\Fill\Gradient\Linear::getStart`/`getEnd`.
|
||||
* Add `Imagine\Image\Color::isOpaque`.
|
||||
* Add Gmagick transparency exceptions.
|
||||
* Add support for transparency for gif export.
|
||||
* Add widen/heighten methods for easy scaling to target width/height.
|
||||
* Add functionals tests to unit test thumbnails creation.
|
||||
* Add the ability to use hexadecimal notation for `Imagine\Image\Color` construction.
|
||||
* Implement fast linear gradient for Imagick.
|
||||
* Remove lengthy image histogram comparisons.
|
||||
* Extract `ManipulatorInterface` from `ImageInterface`.
|
||||
* Switch methods to final.
|
||||
* New method `ImageInterface::getColorAt`.
|
||||
* Introduce `ImagineAware` abstract filter class.
|
||||
|
||||
### 0.1.5 (2011-05-18)
|
||||
|
||||
* Fix bug in GD rotate.
|
||||
|
||||
### 0.1.4 (2011-03-21)
|
||||
|
||||
* Add environment check to gracefuly skip test.
|
||||
|
||||
### 0.1.3 (2011-03-21)
|
||||
|
||||
* Improve api docs.
|
||||
* Extract `FontInterface`.
|
||||
|
||||
### 0.1.2 (2011-03-21)
|
||||
|
||||
* Add check for GD.
|
||||
|
||||
### 0.1.1 (2011-03-21)
|
||||
|
||||
* Add rounding and fixed thumbnail logic.
|
||||
|
||||
### 0.1.0 (2011-03-14)
|
||||
|
||||
* First tagged version.
|
||||
25
core/vendor/imagine/imagine/LICENSE
vendored
Normal file
25
core/vendor/imagine/imagine/LICENSE
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
Copyright (c) 2004-2012 Bulat Shakirzyanov
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is furnished
|
||||
to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
This software embeds Adobe ICC Profiles, see license at
|
||||
http://www.adobe.com/support/downloads/iccprofiles/icc_eula_mac_dist.html .
|
||||
|
||||
This sofwtare also embeds ICC Profile from colormanagement.org. Please
|
||||
find information about their license at http://colormanagement.org/ .
|
||||
54
core/vendor/imagine/imagine/README.md
vendored
Normal file
54
core/vendor/imagine/imagine/README.md
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
#Imagine
|
||||
[](http://stillmaintained.com/avalanche123/Imagine)
|
||||
[](https://travis-ci.org/avalanche123/Imagine)
|
||||
|
||||
Tweet about it using the [#php_imagine](https://twitter.com/search?q=%23php_imagine) hashtag.
|
||||
|
||||
Image manipulation library for PHP 5.3 inspired by Python's PIL and other image
|
||||
libraries.
|
||||
|
||||
##Requirements##
|
||||
|
||||
The Imagine library has the following requirements:
|
||||
|
||||
- PHP 5.3+
|
||||
|
||||
Depending on the chosen Image implementation, you may need one of the following:
|
||||
|
||||
- GD2
|
||||
- Imagick
|
||||
- Gmagick
|
||||
|
||||
### Installation using composer
|
||||
`php composer.phar require imagine/imagine`
|
||||
|
||||
##Basic Principles##
|
||||
|
||||
The main purpose of Imagine is to provide all the necessary functionality to bring all native low level image processing libraries in PHP to the same simple and intuitive OO API.
|
||||
|
||||
Several things are necessary to accomplish that:
|
||||
|
||||
* Image manipulation tools, such as resize, crop, etc.
|
||||
* Drawing API - to create basic shapes and advanced charts, write text on the image
|
||||
* Masking functionality - ability to apply black&white or grayscale images as masks, leading to semi-transparency or absolute transparency of the image the mask is being applied to
|
||||
|
||||
The above tools should be the basic foundation for a more powerful set of tools that are called ``Filters`` in Imagine.
|
||||
|
||||
Some of the ideas for upcoming filters:
|
||||
|
||||
* Charting and graphing filters - pie and bar charts, linear graphs with annotations
|
||||
* Reflection - apple style
|
||||
* Rounded corners - web 2.0
|
||||
|
||||
## Documentation ##
|
||||
|
||||
- [Hosted by Read The Docs](http://imagine.readthedocs.org/)
|
||||
|
||||
## Presentations ##
|
||||
|
||||
- [Introduction to Imagine](http://www.slideshare.net/avalanche123/introduction-toimagine)
|
||||
- [How to Take Over the World with Lithium](http://speakerdeck.com/u/nateabele/p/how-to-take-over-the-world-with-lithium?slide=33)
|
||||
|
||||
## Articles ##
|
||||
|
||||
- [Image Processing with Imagine](http://www.phparch.com/2011/03/image-processing-with-imagine)
|
||||
199
core/vendor/imagine/imagine/Rakefile
vendored
Normal file
199
core/vendor/imagine/imagine/Rakefile
vendored
Normal file
@@ -0,0 +1,199 @@
|
||||
require 'date'
|
||||
require 'digest/md5'
|
||||
require 'fileutils'
|
||||
|
||||
class String
|
||||
def underscore
|
||||
self.gsub(/::/, '/').
|
||||
gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
|
||||
gsub(/([a-z\d])([A-Z])/,'\1_\2').
|
||||
tr("-", "_").
|
||||
downcase
|
||||
end
|
||||
|
||||
def unindent
|
||||
gsub(/^#{self[/\A\s*/]}/, '')
|
||||
end
|
||||
end
|
||||
|
||||
task :phar, :version do |t, args|
|
||||
version = args[:version]
|
||||
|
||||
File.open("stub.php", "w") do |f|
|
||||
f.write(<<-STUB.unindent)
|
||||
<?php
|
||||
Phar::mapPhar();
|
||||
|
||||
$basePath = 'phar://' . __FILE__ . '/';
|
||||
|
||||
spl_autoload_register(function($class) use ($basePath)
|
||||
{
|
||||
if (0 !== strpos($class, "Imagine\\\\")) {
|
||||
return false;
|
||||
}
|
||||
$path = str_replace('\\\\', DIRECTORY_SEPARATOR, substr($class, 8));
|
||||
$file = $basePath.$path.'.php';
|
||||
if (file_exists($file)) {
|
||||
require_once $file;
|
||||
return true;
|
||||
}
|
||||
});
|
||||
|
||||
__HALT_COMPILER();
|
||||
STUB
|
||||
end
|
||||
|
||||
system "phar-build -s #{Dir.pwd}/lib/Imagine -S #{Dir.pwd}/stub.php --phar #{Dir.pwd}/imagine-v#{version}.phar --ns --strip-files '.php$'"
|
||||
|
||||
File.unlink("stub.php")
|
||||
end
|
||||
|
||||
task :test do
|
||||
exitcode = 0
|
||||
|
||||
if ENV["TRAVIS"] == 'true'
|
||||
puts "Travis CI"
|
||||
system "sudo apt-get install -y imagemagick libtiff-dev libjpeg-dev libdjvulibre-dev libwmf-dev libmagickcore-dev libmagickwand-dev"
|
||||
|
||||
system "wget http://pecl.php.net/get/imagick-3.1.0RC2.tgz"
|
||||
system "tar -xzf imagick-3.1.0RC2.tgz"
|
||||
system "sh -c \"cd imagick-3.1.0RC2 && phpize && ./configure --with-imagick=/usr/local && make && sudo make install\""
|
||||
|
||||
system "sudo apt-get install -y graphicsmagick libgraphicsmagick1-dev"
|
||||
|
||||
system "wget http://pecl.php.net/get/gmagick-1.1.0RC3.tgz"
|
||||
system "tar -xzf gmagick-1.1.0RC3.tgz"
|
||||
system "sh -c \"cd gmagick-1.1.0RC3 && phpize && ./configure --with-gmagick=/usr/local && make && sudo make install\""
|
||||
end
|
||||
|
||||
ini_file = Hash[`php --ini`.split("\n").map {|l| l.split(/:\s+/)}]["Loaded Configuration File"]
|
||||
original_ini_contents = File.read(ini_file)
|
||||
|
||||
puts "testing with gmagick enabled"
|
||||
|
||||
File.open(ini_file, "w") do |f|
|
||||
f.write(original_ini_contents)
|
||||
f.write(<<-INI.unindent)
|
||||
extension=gmagick.so
|
||||
INI
|
||||
end
|
||||
|
||||
exitcode = 1 unless system "phpunit tests/"
|
||||
|
||||
puts "testing with imagick enabled"
|
||||
|
||||
File.open(ini_file, "w") do |f|
|
||||
f.write(original_ini_contents)
|
||||
f.write(<<-INI.unindent)
|
||||
extension=imagick.so
|
||||
INI
|
||||
end
|
||||
|
||||
exitcode = 1 unless system "phpunit tests/"
|
||||
|
||||
File.open(ini_file, "w") do |f|
|
||||
f.write(original_ini_contents)
|
||||
end
|
||||
|
||||
exit exitcode
|
||||
end
|
||||
|
||||
task :clean do
|
||||
system "git clean -df"
|
||||
end
|
||||
|
||||
task :pear, :version do |t, args|
|
||||
require 'nokogiri'
|
||||
|
||||
Dir.chdir("lib")
|
||||
version = args[:version]
|
||||
now = DateTime.now
|
||||
hash = Digest::MD5.new
|
||||
xml = Nokogiri::XML::Builder.new do |xml|
|
||||
xml.package(:packagerversion => "1.8.0", :version => "2.0",
|
||||
:xmlns => "http://pear.php.net/dtd/package-2.0",
|
||||
"xmlns:tasks" => "http://pear.php.net/dtd/tasks-1.0",
|
||||
"xmlns:xsi" => "http://www.w3.org/2001/XMLSchema-instance",
|
||||
"xsi:schemaLocation" => [
|
||||
"http://pear.php.net/dtd/tasks-1.0",
|
||||
"http://pear.php.net/dtd/tasks-1.0.xsd",
|
||||
"http://pear.php.net/dtd/package-2.0",
|
||||
"http://pear.php.net/dtd/package-2.0.xsd"
|
||||
].join(" ")) {
|
||||
xml.name "Imagine"
|
||||
xml.channel "pear.avalanche123.com"
|
||||
xml.summary "PHP 5.3 Object Oriented image manipulation library."
|
||||
xml.description "Image manipulation library for PHP 5.3 inspired by Python's PIL and other image libraries."
|
||||
xml.lead {
|
||||
xml.name "Bulat Shakirzyanov"
|
||||
xml.user "avalanche123"
|
||||
xml.email "mallluhuct at gmail.com"
|
||||
xml.active "yes"
|
||||
}
|
||||
xml.date now.strftime('%Y-%m-%d')
|
||||
xml.time now.strftime('%H:%M:%S')
|
||||
xml.version {
|
||||
xml.release version
|
||||
xml.api version
|
||||
}
|
||||
xml.stability {
|
||||
xml.release "beta"
|
||||
xml.api "beta"
|
||||
}
|
||||
xml.license "MIT", :uri => "http://www.opensource.org/licenses/mit-license.php"
|
||||
xml.notes "-"
|
||||
xml.contents {
|
||||
xml.dir(:name => "/") {
|
||||
`git ls-files`.split("\n").each { |f|
|
||||
open(f, "r") do |io|
|
||||
while (!io.eof)
|
||||
hash.update(io.readpartial(1024))
|
||||
end
|
||||
end
|
||||
xml.file(:md5sum => hash.hexdigest, :role => "php", :name => f)
|
||||
}
|
||||
}
|
||||
}
|
||||
xml.dependencies {
|
||||
xml.required {
|
||||
xml.php {
|
||||
xml.min "5.3.2"
|
||||
}
|
||||
xml.pearinstaller {
|
||||
xml.min "1.4.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
xml.phprelease
|
||||
}
|
||||
end
|
||||
File.open("package.xml", "w") { |f| f.write(xml.to_xml) }
|
||||
system "pear package"
|
||||
File.unlink("package.xml")
|
||||
FileUtils.mv("Imagine-#{version}.tgz", "../")
|
||||
end
|
||||
|
||||
task :sami do
|
||||
system "bin/sami.php update docs/sami_configuration.php -v"
|
||||
end
|
||||
|
||||
desc "create a new Imagine release - involves "
|
||||
task :release, :version do |t, args|
|
||||
version = args[:version]
|
||||
|
||||
Rake::Task["test"]
|
||||
|
||||
Rake::Task["sami"].invoke
|
||||
|
||||
system "git add docs/API"
|
||||
system "git commit -m \"updated api docs for release #{version}\""
|
||||
|
||||
Rake::Task["pear"].invoke(version)
|
||||
Rake::Task["phar"].invoke(version)
|
||||
|
||||
system "git checkout master"
|
||||
system "git merge develop"
|
||||
system "git tag v#{version} -m \"release v#{version}\""
|
||||
system "git push"
|
||||
system "git push --tags"
|
||||
end
|
||||
55
core/vendor/imagine/imagine/composer.json
vendored
Normal file
55
core/vendor/imagine/imagine/composer.json
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"name": "imagine/imagine",
|
||||
"description": "Image processing for PHP 5.3",
|
||||
"keywords": [
|
||||
"image manipulation",
|
||||
"image processing",
|
||||
"drawing",
|
||||
"graphics"
|
||||
],
|
||||
"homepage": "http://imagine.readthedocs.org/",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Bulat Shakirzyanov",
|
||||
"email": "mallluhuct@gmail.com",
|
||||
"homepage": "http://avalanche123.com"
|
||||
}
|
||||
],
|
||||
"config": {
|
||||
"bin-dir": "bin"
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"sami/sami": "dev-master"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-gd": "to use the GD implementation",
|
||||
"ext-imagick": "to use the Imagick implementation",
|
||||
"ext-gmagick": "to use the Gmagick implementation"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-0": {
|
||||
"Imagine": "lib/"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-develop": "0.7-dev"
|
||||
}
|
||||
},
|
||||
"archive": {
|
||||
"exclude": [
|
||||
"/.*",
|
||||
"/tests",
|
||||
"/vendor",
|
||||
"/bin",
|
||||
"docs/_build",
|
||||
"Imagine-*.tgz",
|
||||
"imagine-*.phar",
|
||||
"composer.phar"
|
||||
]
|
||||
}
|
||||
}
|
||||
32
core/vendor/imagine/imagine/docs/API/API/Imagine.html
vendored
Normal file
32
core/vendor/imagine/imagine/docs/API/API/Imagine.html
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="classes.html">Classes</a></li>
|
||||
<li><a href="namespaces.html">Namespaces</a></li>
|
||||
<li><a href="interfaces.html">Interfaces</a></li>
|
||||
<li><a href="doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
39
core/vendor/imagine/imagine/docs/API/API/Imagine/Draw.html
vendored
Normal file
39
core/vendor/imagine/imagine/docs/API/API/Imagine/Draw.html
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Draw | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Draw</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td class="last">Interface for the drawer</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
680
core/vendor/imagine/imagine/docs/API/API/Imagine/Draw/DrawerInterface.html
vendored
Normal file
680
core/vendor/imagine/imagine/docs/API/API/Imagine/Draw/DrawerInterface.html
vendored
Normal file
@@ -0,0 +1,680 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Draw\DrawerInterface | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../Imagine/Draw.html">Imagine\Draw</a>\DrawerInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>interface <strong>DrawerInterface</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Interface for the drawer</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_arc">arc</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)
|
||||
<p>Draws an arc on a starting at a given x, y coordinates under a given start and end angles</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_chord">chord</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Same as arc, but also connects end points with a straight line</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_ellipse">ellipse</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Draws and ellipse with center at the given x, y coordinates, and given width and height</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_line">line</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $outline, integer $thickness = 1)
|
||||
<p>Draws a line from start(x, y) to end(x, y) coordinates</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_pieSlice">pieSlice</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Same as arc, but connects end points and the center</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_dot">dot</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Places a one pixel point at specific coordinates and fills it with specified color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_polygon">polygon</a>(array $coordinates, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Draws a polygon using array of x, y coordinates.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_text">text</a>(string $string, <a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> $font, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, integer $angle)
|
||||
<p>Annotates image with specified text at a given position starting on the top left of the final text box</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_arc">
|
||||
<div class="location">at line 39</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>arc</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws an arc on a starting at a given x, y coordinates under a given start and end angles</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_chord">
|
||||
<div class="location">at line 56</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>chord</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Same as arc, but also connects end points with a straight line</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_ellipse">
|
||||
<div class="location">at line 72</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>ellipse</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws and ellipse with center at the given x, y coordinates, and given width and height</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_line">
|
||||
<div class="location">at line 84</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>line</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $outline, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws a line from start(x, y) to end(x, y) coordinates</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$outline</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_pieSlice">
|
||||
<div class="location">at line 101</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>pieSlice</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Same as arc, but connects end points and the center</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_dot">
|
||||
<div class="location">at line 114</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>dot</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Places a one pixel point at specific coordinates and fills it with specified color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_polygon">
|
||||
<div class="location">at line 129</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>polygon</strong>(array $coordinates, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws a polygon using array of x, y coordinates.</p>
|
||||
<p>Must contain at least
|
||||
three coordinates</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$coordinates</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_text">
|
||||
<div class="location">at line 146</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>text</strong>(string $string, <a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> $font, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, integer $angle)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Annotates image with specified text at a given position starting on the top left of the final text box</p>
|
||||
<p>The rotation is done CW</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></td>
|
||||
<td>$font</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Draw/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Draw/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Draw | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
39
core/vendor/imagine/imagine/docs/API/API/Imagine/Effects.html
vendored
Normal file
39
core/vendor/imagine/imagine/docs/API/API/Imagine/Effects.html
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Effects | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Effects</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td class="last">Interface for the effects</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
301
core/vendor/imagine/imagine/docs/API/API/Imagine/Effects/EffectsInterface.html
vendored
Normal file
301
core/vendor/imagine/imagine/docs/API/API/Imagine/Effects/EffectsInterface.html
vendored
Normal file
@@ -0,0 +1,301 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Effects\EffectsInterface | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../Imagine/Effects.html">Imagine\Effects</a>\EffectsInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>interface <strong>EffectsInterface</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Interface for the effects</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_gamma">gamma</a>(<abbr title="Imagine\Effects\float">float</abbr> $correction)
|
||||
<p>Apply gamma correction</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_negative">negative</a>()
|
||||
<p>Invert the colors of the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_grayscale">grayscale</a>()
|
||||
<p>Grayscale the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_colorize">colorize</a>(<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Colorize the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_sharpen">sharpen</a>()
|
||||
<p>Sharpens the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_gamma">
|
||||
<div class="location">at line 30</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>gamma</strong>(<abbr title="Imagine\Effects\float">float</abbr> $correction)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Apply gamma correction</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Effects\float">float</abbr></td>
|
||||
<td>$correction</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_negative">
|
||||
<div class="location">at line 39</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>negative</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Invert the colors of the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_grayscale">
|
||||
<div class="location">at line 48</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>grayscale</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Grayscale the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_colorize">
|
||||
<div class="location">at line 59</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>colorize</strong>(<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Colorize the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_sharpen">
|
||||
<div class="location">at line 68</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>sharpen</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sharpens the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Effects/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Effects/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Effects | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
53
core/vendor/imagine/imagine/docs/API/API/Imagine/Exception.html
vendored
Normal file
53
core/vendor/imagine/imagine/docs/API/API/Imagine/Exception.html
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Exception | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Exception</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Exception/InvalidArgumentException.html"><abbr title="Imagine\Exception\InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td class="last">Imagine-specific invalid argument exception</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Exception/OutOfBoundsException.html"><abbr title="Imagine\Exception\OutOfBoundsException">OutOfBoundsException</abbr></a></td>
|
||||
<td class="last">Imagine-specific out of bounds exception</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td class="last">Imagine-specific runtime exception</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Exception/Exception.html"><abbr title="Imagine\Exception\Exception">Exception</abbr></a></td>
|
||||
<td class="last">Imagine-specific exception</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
40
core/vendor/imagine/imagine/docs/API/API/Imagine/Exception/Exception.html
vendored
Normal file
40
core/vendor/imagine/imagine/docs/API/API/Imagine/Exception/Exception.html
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Exception\Exception | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../Imagine/Exception.html">Imagine\Exception</a>\Exception</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>interface <strong>Exception</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Imagine-specific exception</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
41
core/vendor/imagine/imagine/docs/API/API/Imagine/Exception/InvalidArgumentException.html
vendored
Normal file
41
core/vendor/imagine/imagine/docs/API/API/Imagine/Exception/InvalidArgumentException.html
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Exception\InvalidArgumentException | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Exception.html">Imagine\Exception</a>\InvalidArgumentException</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>InvalidArgumentException</strong> extends <a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a> implements
|
||||
<a href="../../Imagine/Exception/Exception.html"><abbr title="Imagine\Exception\Exception">Exception</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Imagine-specific invalid argument exception</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
41
core/vendor/imagine/imagine/docs/API/API/Imagine/Exception/OutOfBoundsException.html
vendored
Normal file
41
core/vendor/imagine/imagine/docs/API/API/Imagine/Exception/OutOfBoundsException.html
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Exception\OutOfBoundsException | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Exception.html">Imagine\Exception</a>\OutOfBoundsException</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>OutOfBoundsException</strong> extends <a href="http://php.net/OutOfBoundsException"><abbr title="OutOfBoundsException">OutOfBoundsException</abbr></a> implements
|
||||
<a href="../../Imagine/Exception/Exception.html"><abbr title="Imagine\Exception\Exception">Exception</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Imagine-specific out of bounds exception</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
41
core/vendor/imagine/imagine/docs/API/API/Imagine/Exception/RuntimeException.html
vendored
Normal file
41
core/vendor/imagine/imagine/docs/API/API/Imagine/Exception/RuntimeException.html
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Exception\RuntimeException | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Exception.html">Imagine\Exception</a>\RuntimeException</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>RuntimeException</strong> extends <a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a> implements
|
||||
<a href="../../Imagine/Exception/Exception.html"><abbr title="Imagine\Exception\Exception">Exception</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Imagine-specific runtime exception</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Exception/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Exception/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Exception | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
49
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter.html
vendored
Normal file
49
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter.html
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Filter</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Filter/ImagineAware.html"><abbr title="Imagine\Filter\ImagineAware">ImagineAware</abbr></a></td>
|
||||
<td class="last">ImagineAware base class</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Filter/Transformation.html"><abbr title="Imagine\Filter\Transformation">Transformation</abbr></a></td>
|
||||
<td class="last">A transformation filter</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></td>
|
||||
<td class="last">Interface for imagine filters</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
54
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced.html
vendored
Normal file
54
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced.html
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Advanced | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Filter\Advanced</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Advanced/Border.html"><abbr title="Imagine\Filter\Advanced\Border">Border</abbr></a></td>
|
||||
<td class="last">A border filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Advanced/Canvas.html"><abbr title="Imagine\Filter\Advanced\Canvas">Canvas</abbr></a></td>
|
||||
<td class="last">A canvas filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Advanced/Grayscale.html"><abbr title="Imagine\Filter\Advanced\Grayscale">Grayscale</abbr></a></td>
|
||||
<td class="last">The Grayscale filter calculates the gray-value based on RGB.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Advanced/OnPixelBased.html"><abbr title="Imagine\Filter\Advanced\OnPixelBased">OnPixelBased</abbr></a></td>
|
||||
<td class="last">The OnPixelBased takes a callable, and for each pixel, this callable is called with the image (\Imagine\Image\ImageInterface) and the current point (\Imagine\Image\Point)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Advanced/RelativeResize.html"><abbr title="Imagine\Filter\Advanced\RelativeResize">RelativeResize</abbr></a></td>
|
||||
<td class="last">The RelativeResize filter allows images to be resized relative to their existing dimensions.</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
144
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/Border.html
vendored
Normal file
144
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/Border.html
vendored
Normal file
@@ -0,0 +1,144 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Advanced\Border | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Advanced.html">Imagine\Filter\Advanced</a>\Border</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Border</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A border filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $width = 1, integer $height = 1)
|
||||
<p>Constructs Border filter with given color, width and height</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 46</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $width = 1, integer $height = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs Border filter with given color, width and height</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$width</td>
|
||||
<td>Width of the border on the left and right sides of the image</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$height</td>
|
||||
<td>Height of the border on the top and bottom sides of the image</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 56</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
152
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/Canvas.html
vendored
Normal file
152
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/Canvas.html
vendored
Normal file
@@ -0,0 +1,152 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Advanced\Canvas | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Advanced.html">Imagine\Filter\Advanced</a>\Canvas</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Canvas</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A canvas filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a> $imagine, <a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $placement = null, <a href="../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $background = null)
|
||||
<p>Constructs Canvas filter with given width and height and the placement of the current image inside the new canvas</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 56</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a> $imagine, <a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $placement = null, <a href="../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $background = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs Canvas filter with given width and height and the placement of the current image inside the new canvas</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a></td>
|
||||
<td>$imagine</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$placement</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$background</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 67</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
125
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/Grayscale.html
vendored
Normal file
125
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/Grayscale.html
vendored
Normal file
@@ -0,0 +1,125 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Advanced\Grayscale | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Advanced.html">Imagine\Filter\Advanced</a>\Grayscale</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Grayscale</strong> extends <a href="../../../Imagine/Filter/Advanced/OnPixelBased.html"><abbr title="Imagine\Filter\Advanced\OnPixelBased">OnPixelBased</abbr></a> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The Grayscale filter calculates the gray-value based on RGB.</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../Imagine/Filter/Advanced/OnPixelBased.html#method_apply"><abbr title="Imagine\Filter\Advanced\OnPixelBased">OnPixelBased</abbr></a></small></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 24</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">in <a href="../../../Imagine/Filter/Advanced/OnPixelBased.html#method_apply"><abbr title="Imagine\Filter\Advanced\OnPixelBased">OnPixelBased</abbr></a> at line 35</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
136
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/OnPixelBased.html
vendored
Normal file
136
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/OnPixelBased.html
vendored
Normal file
@@ -0,0 +1,136 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Advanced\OnPixelBased | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Advanced.html">Imagine\Filter\Advanced</a>\OnPixelBased</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>OnPixelBased</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The OnPixelBased takes a callable, and for each pixel, this callable is called with the image (\Imagine\Image\ImageInterface) and the current point (\Imagine\Image\Point)</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($callback)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 18</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($callback)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$callback</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 35</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
138
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/RelativeResize.html
vendored
Normal file
138
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/RelativeResize.html
vendored
Normal file
@@ -0,0 +1,138 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Advanced\RelativeResize | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Advanced.html">Imagine\Filter\Advanced</a>\RelativeResize</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>RelativeResize</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The RelativeResize filter allows images to be resized relative to their existing dimensions.</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(string $method, mixed $parameter)
|
||||
<p>Constructs a RelativeResize filter with the given method and argument.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 33</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(string $method, mixed $parameter)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a RelativeResize filter with the given method and argument.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$method</td>
|
||||
<td>BoxInterface method</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>mixed</td>
|
||||
<td>$parameter</td>
|
||||
<td>Parameter for BoxInterface method</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 46</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Advanced/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Advanced | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
86
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic.html
vendored
Normal file
86
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic.html
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Filter\Basic</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/ApplyMask.html"><abbr title="Imagine\Filter\Basic\ApplyMask">ApplyMask</abbr></a></td>
|
||||
<td class="last">An apply mask filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/Copy.html"><abbr title="Imagine\Filter\Basic\Copy">Copy</abbr></a></td>
|
||||
<td class="last">A copy filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/Crop.html"><abbr title="Imagine\Filter\Basic\Crop">Crop</abbr></a></td>
|
||||
<td class="last">A crop filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/Fill.html"><abbr title="Imagine\Filter\Basic\Fill">Fill</abbr></a></td>
|
||||
<td class="last">A fill filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/FlipHorizontally.html"><abbr title="Imagine\Filter\Basic\FlipHorizontally">FlipHorizontally</abbr></a></td>
|
||||
<td class="last">A "flip horizontally" filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/FlipVertically.html"><abbr title="Imagine\Filter\Basic\FlipVertically">FlipVertically</abbr></a></td>
|
||||
<td class="last">A "flip vertically" filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/Paste.html"><abbr title="Imagine\Filter\Basic\Paste">Paste</abbr></a></td>
|
||||
<td class="last">A paste filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/Resize.html"><abbr title="Imagine\Filter\Basic\Resize">Resize</abbr></a></td>
|
||||
<td class="last">A resize filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/Rotate.html"><abbr title="Imagine\Filter\Basic\Rotate">Rotate</abbr></a></td>
|
||||
<td class="last">A rotate filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/Save.html"><abbr title="Imagine\Filter\Basic\Save">Save</abbr></a></td>
|
||||
<td class="last">A save filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/Show.html"><abbr title="Imagine\Filter\Basic\Show">Show</abbr></a></td>
|
||||
<td class="last">A show filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/Strip.html"><abbr title="Imagine\Filter\Basic\Strip">Strip</abbr></a></td>
|
||||
<td class="last">A strip filter</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Basic/Thumbnail.html"><abbr title="Imagine\Filter\Basic\Thumbnail">Thumbnail</abbr></a></td>
|
||||
<td class="last">A thumbnail filter</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
136
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/ApplyMask.html
vendored
Normal file
136
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/ApplyMask.html
vendored
Normal file
@@ -0,0 +1,136 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\ApplyMask | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\ApplyMask</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>ApplyMask</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>An apply mask filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $mask)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 30</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $mask)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$mask</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 38</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
97
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Copy.html
vendored
Normal file
97
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Copy.html
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\Copy | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\Copy</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Copy</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A copy filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 25</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Crop.html
vendored
Normal file
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Crop.html
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\Crop | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\Crop</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Crop</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A crop filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size)
|
||||
<p>Constructs a Crop filter with given x, y, coordinates and crop width and height values</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 41</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a Crop filter with given x, y, coordinates and crop width and height values</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 50</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
136
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Fill.html
vendored
Normal file
136
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Fill.html
vendored
Normal file
@@ -0,0 +1,136 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\Fill | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\Fill</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Fill</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A fill filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../Imagine/Image/Fill/FillInterface.html"><abbr title="Imagine\Image\Fill\FillInterface">FillInterface</abbr></a> $fill)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 31</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../Imagine/Image/Fill/FillInterface.html"><abbr title="Imagine\Image\Fill\FillInterface">FillInterface</abbr></a> $fill)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/Fill/FillInterface.html"><abbr title="Imagine\Image\Fill\FillInterface">FillInterface</abbr></a></td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 39</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
97
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/FlipHorizontally.html
vendored
Normal file
97
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/FlipHorizontally.html
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\FlipHorizontally | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\FlipHorizontally</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>FlipHorizontally</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A "flip horizontally" filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 25</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
97
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/FlipVertically.html
vendored
Normal file
97
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/FlipVertically.html
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\FlipVertically | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\FlipVertically</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>FlipVertically</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A "flip vertically" filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 25</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Paste.html
vendored
Normal file
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Paste.html
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\Paste | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\Paste</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Paste</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A paste filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image, <a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start)
|
||||
<p>Constructs a Paste filter with given ImageInterface to paste and x, y coordinates of target position</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 40</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image, <a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a Paste filter with given ImageInterface to paste and x, y coordinates of target position</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 49</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Resize.html
vendored
Normal file
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Resize.html
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\Resize | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\Resize</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Resize</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A resize filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, string $filter = ImageInterface::FILTER_UNDEFINED)
|
||||
<p>Constructs Resize filter with given width and height</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 35</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, string $filter = ImageInterface::FILTER_UNDEFINED)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs Resize filter with given width and height</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$filter</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 44</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Rotate.html
vendored
Normal file
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Rotate.html
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\Rotate | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\Rotate</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Rotate</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A rotate filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(integer $angle, <a href="../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $background = null)
|
||||
<p>Constructs Rotate filter with given angle and background color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 39</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(integer $angle, <a href="../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $background = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs Rotate filter with given angle and background color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$background</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 48</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Save.html
vendored
Normal file
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Save.html
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\Save | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\Save</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Save</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A save filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(string $path, array $options = array())
|
||||
<p>Constructs Save filter with given path and options</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 38</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(string $path, array $options = array())</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs Save filter with given path and options</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$path</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$options</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 47</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Show.html
vendored
Normal file
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Show.html
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\Show | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\Show</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Show</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A show filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(string $format, array $options = array())
|
||||
<p>Constructs the Show filter with given format and options</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 38</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(string $format, array $options = array())</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs the Show filter with given format and options</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$options</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 47</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
97
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Strip.html
vendored
Normal file
97
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Strip.html
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\Strip | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\Strip</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Strip</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A strip filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 25</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Thumbnail.html
vendored
Normal file
140
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/Thumbnail.html
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic\Thumbnail | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Filter/Basic.html">Imagine\Filter\Basic</a>\Thumbnail</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Thumbnail</strong> implements
|
||||
<a href="../../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A thumbnail filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, string $mode = ImageInterface::THUMBNAIL_INSET)
|
||||
<p>Constructs the Thumbnail filter with given width, height and mode</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 39</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, string $mode = ImageInterface::THUMBNAIL_INSET)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs the Thumbnail filter with given width, height and mode</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$mode</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 48</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Basic/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Basic | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
96
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/FilterInterface.html
vendored
Normal file
96
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/FilterInterface.html
vendored
Normal file
@@ -0,0 +1,96 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\FilterInterface | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../Imagine/Filter.html">Imagine\Filter</a>\FilterInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>interface <strong>FilterInterface</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Interface for imagine filters</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 29</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
132
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/ImagineAware.html
vendored
Normal file
132
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/ImagineAware.html
vendored
Normal file
@@ -0,0 +1,132 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\ImagineAware | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Filter.html">Imagine\Filter</a>\ImagineAware</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>abstract class <strong>ImagineAware</strong> implements
|
||||
<a href="../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>ImagineAware base class</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_setImagine">setImagine</a>(<a href="../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a> $imagine)
|
||||
<p>Set ImagineInterface instance.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getImagine">getImagine</a>()
|
||||
<p>Get ImagineInterface instance.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_setImagine">
|
||||
<div class="location">at line 34</div>
|
||||
<code> public
|
||||
<strong>setImagine</strong>(<a href="../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a> $imagine)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Set ImagineInterface instance.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a></td>
|
||||
<td>$imagine</td>
|
||||
<td>An ImagineInterface instance</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getImagine">
|
||||
<div class="location">at line 46</div>
|
||||
<code> public <a href="../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a>
|
||||
<strong>getImagine</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Get ImagineInterface instance.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
976
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Transformation.html
vendored
Normal file
976
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/Transformation.html
vendored
Normal file
@@ -0,0 +1,976 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter\Transformation | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Filter.html">Imagine\Filter</a>\Transformation</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Transformation</strong> implements
|
||||
<a href="../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a>, <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A transformation filter</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a> $imagine = null)
|
||||
<p>Class constructor.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_applyFilter">applyFilter</a>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image, <a href="../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a> $filter)
|
||||
<p>Applies a given FilterInterface onto given ImageInterface and returns modified ImageInterface</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_apply">apply</a>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_copy">copy</a>()
|
||||
<p>Copies current source image into a new ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_crop">crop</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size)
|
||||
<p>Crops a specified box out of the source image (modifies the source image) Returns cropped self</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_flipHorizontally">flipHorizontally</a>()
|
||||
<p>Flips current image using horizontal axis</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_flipVertically">flipVertically</a>()
|
||||
<p>Flips current image using vertical axis</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_strip">strip</a>()
|
||||
<p>Remove all profiles and comments</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_paste">paste</a>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start)
|
||||
<p>Pastes an image into a parent image Throws exceptions if image exceeds parent image borders or if paste operation fails</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_applyMask">applyMask</a>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $mask)
|
||||
<p>Applies a given mask to current image's alpha channel</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_fill">fill</a>(<a href="../../Imagine/Image/Fill/FillInterface.html"><abbr title="Imagine\Image\Fill\FillInterface">FillInterface</abbr></a> $fill)
|
||||
<p>Fills image with provided filling, by replacing each pixel's color in the current image with corresponding color from FillInterface, and returns modified image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_resize">resize</a>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, string $filter = ImageInterface::FILTER_UNDEFINED)
|
||||
<p>Resizes current image and returns self</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_rotate">rotate</a>(integer $angle, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $background = null)
|
||||
<p>Rotates an image at the given angle.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_save">save</a>(string $path, array $options = array())
|
||||
<p>Saves the image at a specified path, the target file extension is used to determine file format, only jpg, jpeg, gif, png, wbmp and xbm are supported</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_show">show</a>(string $format, array $options = array())
|
||||
<p>Outputs the image content</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_thumbnail">thumbnail</a>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, string $mode = ImageInterface::THUMBNAIL_INSET)
|
||||
<p>Generates a thumbnail from a current image Returns it as a new image, doesn't modify the current image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Filter/Transformation.html"><abbr title="Imagine\Filter\Transformation">Transformation</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_add">add</a>(<a href="../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a> $filter)
|
||||
<p>Registers a given FilterInterface in an internal array of filters for later application to an instance of ImageInterface</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 58</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a> $imagine = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Class constructor.</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a></td>
|
||||
<td>$imagine</td>
|
||||
<td>An ImagineInterface instance</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_applyFilter">
|
||||
<div class="location">at line 73</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>applyFilter</strong>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image, <a href="../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a> $filter)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies a given FilterInterface onto given ImageInterface and returns modified ImageInterface</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></td>
|
||||
<td>$filter</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_apply">
|
||||
<div class="location">at line 91</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>apply</strong>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies scheduled transformation to ImageInterface instance Returns processed ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_copy">
|
||||
<div class="location">at line 103</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>copy</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Copies current source image into a new ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_crop">
|
||||
<div class="location">at line 111</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>crop</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Crops a specified box out of the source image (modifies the source image) Returns cropped self</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/OutOfBoundsException"><abbr title="OutOfBoundsException">OutOfBoundsException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_flipHorizontally">
|
||||
<div class="location">at line 119</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>flipHorizontally</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Flips current image using horizontal axis</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_flipVertically">
|
||||
<div class="location">at line 127</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>flipVertically</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Flips current image using vertical axis</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_strip">
|
||||
<div class="location">at line 135</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>strip</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Remove all profiles and comments</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_paste">
|
||||
<div class="location">at line 143</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>paste</strong>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Pastes an image into a parent image Throws exceptions if image exceeds parent image borders or if paste operation fails</p>
|
||||
<p>Returns source image</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/OutOfBoundsException"><abbr title="OutOfBoundsException">OutOfBoundsException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_applyMask">
|
||||
<div class="location">at line 151</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>applyMask</strong>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $mask)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies a given mask to current image's alpha channel</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$mask</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_fill">
|
||||
<div class="location">at line 159</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>fill</strong>(<a href="../../Imagine/Image/Fill/FillInterface.html"><abbr title="Imagine\Image\Fill\FillInterface">FillInterface</abbr></a> $fill)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Fills image with provided filling, by replacing each pixel's color in the current image with corresponding color from FillInterface, and returns modified image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Fill/FillInterface.html"><abbr title="Imagine\Image\Fill\FillInterface">FillInterface</abbr></a></td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_resize">
|
||||
<div class="location">at line 167</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>resize</strong>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, string $filter = ImageInterface::FILTER_UNDEFINED)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Resizes current image and returns self</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$filter</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_rotate">
|
||||
<div class="location">at line 175</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>rotate</strong>(integer $angle, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $background = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Rotates an image at the given angle.</p>
|
||||
<p>Optional $background can be used to specify the fill color of the empty
|
||||
area of rotated image.</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$background</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_save">
|
||||
<div class="location">at line 183</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>save</strong>(string $path, array $options = array())</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Saves the image at a specified path, the target file extension is used to determine file format, only jpg, jpeg, gif, png, wbmp and xbm are supported</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$path</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$options</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_show">
|
||||
<div class="location">at line 191</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>show</strong>(string $format, array $options = array())</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Outputs the image content</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$options</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_thumbnail">
|
||||
<div class="location">at line 199</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>thumbnail</strong>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, string $mode = ImageInterface::THUMBNAIL_INSET)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Generates a thumbnail from a current image Returns it as a new image, doesn't modify the current image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$mode</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_add">
|
||||
<div class="location">at line 212</div>
|
||||
<code> public <a href="../../Imagine/Filter/Transformation.html"><abbr title="Imagine\Filter\Transformation">Transformation</abbr></a>
|
||||
<strong>add</strong>(<a href="../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a> $filter)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Registers a given FilterInterface in an internal array of filters for later application to an instance of ImageInterface</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/FilterInterface.html"><abbr title="Imagine\Filter\FilterInterface">FilterInterface</abbr></a></td>
|
||||
<td>$filter</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Filter/Transformation.html"><abbr title="Imagine\Filter\Transformation">Transformation</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Filter/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Filter | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
59
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd.html
vendored
Normal file
59
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd.html
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gd | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Gd</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Gd/Drawer.html"><abbr title="Imagine\Gd\Drawer">Drawer</abbr></a></td>
|
||||
<td class="last">Drawer implementation using the GD library</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Gd/Effects.html"><abbr title="Imagine\Gd\Effects">Effects</abbr></a></td>
|
||||
<td class="last">Effects implementation using the GD library</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Gd/Font.html"><abbr title="Imagine\Gd\Font">Font</abbr></a></td>
|
||||
<td class="last">Font implementation using the GD library</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Gd/Image.html"><abbr title="Imagine\Gd\Image">Image</abbr></a></td>
|
||||
<td class="last">Image implementation using the GD library</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Gd/Imagine.html"><abbr title="Imagine\Gd\Imagine">Imagine</abbr></a></td>
|
||||
<td class="last">Imagine implementation using the GD library</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Gd/Layers.html"><abbr title="Imagine\Gd\Layers">Layers</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
718
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/Drawer.html
vendored
Normal file
718
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/Drawer.html
vendored
Normal file
@@ -0,0 +1,718 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gd\Drawer | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Gd.html">Imagine\Gd</a>\Drawer</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Drawer</strong> implements
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Drawer implementation using the GD library</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<abbr title="Imagine\Gd\resource">resource</abbr> $resource)
|
||||
<p>Constructs Drawer with a given gd image resource</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_arc">arc</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)
|
||||
<p>Draws an arc on a starting at a given x, y coordinates under a given start and end angles</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_chord">chord</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Same as arc, but also connects end points with a straight line</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_ellipse">ellipse</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Draws and ellipse with center at the given x, y coordinates, and given width and height</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_line">line</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)
|
||||
<p>Draws a line from start(x, y) to end(x, y) coordinates</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_pieSlice">pieSlice</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Same as arc, but connects end points and the center</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_dot">dot</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Places a one pixel point at specific coordinates and fills it with specified color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_polygon">polygon</a>(array $coordinates, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Draws a polygon using array of x, y coordinates.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_text">text</a>(string $string, <a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> $font, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, integer $angle)
|
||||
<p>Annotates image with specified text at a given position starting on the top left of the final text box</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 42</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<abbr title="Imagine\Gd\resource">resource</abbr> $resource)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs Drawer with a given gd image resource</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Gd\resource">resource</abbr></td>
|
||||
<td>$resource</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_arc">
|
||||
<div class="location">at line 51</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>arc</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws an arc on a starting at a given x, y coordinates under a given start and end angles</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_chord">
|
||||
<div class="location">at line 70</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>chord</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Same as arc, but also connects end points with a straight line</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_ellipse">
|
||||
<div class="location">at line 93</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>ellipse</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws and ellipse with center at the given x, y coordinates, and given width and height</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_line">
|
||||
<div class="location">at line 115</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>line</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws a line from start(x, y) to end(x, y) coordinates</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_pieSlice">
|
||||
<div class="location">at line 131</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>pieSlice</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Same as arc, but connects end points and the center</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_dot">
|
||||
<div class="location">at line 154</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>dot</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Places a one pixel point at specific coordinates and fills it with specified color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_polygon">
|
||||
<div class="location">at line 169</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>polygon</strong>(array $coordinates, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws a polygon using array of x, y coordinates.</p>
|
||||
<p>Must contain at least
|
||||
three coordinates</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$coordinates</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_text">
|
||||
<div class="location">at line 202</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>text</strong>(string $string, <a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> $font, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, integer $angle)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Annotates image with specified text at a given position starting on the top left of the final text box</p>
|
||||
<p>The rotation is done CW</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></td>
|
||||
<td>$font</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
341
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/Effects.html
vendored
Normal file
341
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/Effects.html
vendored
Normal file
@@ -0,0 +1,341 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gd\Effects | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Gd.html">Imagine\Gd</a>\Effects</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Effects</strong> implements
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Effects implementation using the GD library</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>($resource)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_gamma">gamma</a>(<abbr title="Imagine\Effects\float">float</abbr> $correction)
|
||||
<p>Apply gamma correction</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_negative">negative</a>()
|
||||
<p>Invert the colors of the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_grayscale">grayscale</a>()
|
||||
<p>Grayscale the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_colorize">colorize</a>(<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Colorize the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_sharpen">sharpen</a>()
|
||||
<p>Sharpens the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 25</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>($resource)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$resource</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_gamma">
|
||||
<div class="location">at line 33</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>gamma</strong>(<abbr title="Imagine\Effects\float">float</abbr> $correction)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Apply gamma correction</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Effects\float">float</abbr></td>
|
||||
<td>$correction</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_negative">
|
||||
<div class="location">at line 45</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>negative</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Invert the colors of the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_grayscale">
|
||||
<div class="location">at line 57</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>grayscale</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Grayscale the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_colorize">
|
||||
<div class="location">at line 69</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>colorize</strong>(<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Colorize the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_sharpen">
|
||||
<div class="location">at line 81</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>sharpen</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sharpens the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
258
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/Font.html
vendored
Normal file
258
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/Font.html
vendored
Normal file
@@ -0,0 +1,258 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gd\Font | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Gd.html">Imagine\Gd</a>\Font</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Font</strong> extends <a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Font implementation using the GD library</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractFont.html#method___construct"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getFile">getFile</a>()
|
||||
<p>Gets the fontfile for current font</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractFont.html#method_getFile"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getSize">getSize</a>()
|
||||
<p>Gets font's integer point size</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractFont.html#method_getSize"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getColor">getColor</a>()
|
||||
<p>Gets font's color</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractFont.html#method_getColor"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_box">box</a>(string $string, integer $angle)
|
||||
<p>Gets BoxInterface of font size on the image based on string and angle</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractFont.html#method___construct"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> at line 45</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
<p>The font size is to be specified in points (e.g. 10pt means 10)</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$file</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getFile">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractFont.html#method_getFile"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> at line 55</div>
|
||||
<code>final public string
|
||||
<strong>getFile</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the fontfile for current font</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getSize">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractFont.html#method_getSize"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> at line 63</div>
|
||||
<code>final public integer
|
||||
<strong>getSize</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets font's integer point size</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getColor">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractFont.html#method_getColor"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> at line 71</div>
|
||||
<code>final public <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getColor</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets font's color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_box">
|
||||
<div class="location">at line 25</div>
|
||||
<code> public <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
<strong>box</strong>(string $string, integer $angle)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets BoxInterface of font size on the image based on string and angle</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
1333
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/Image.html
vendored
Normal file
1333
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/Image.html
vendored
Normal file
File diff suppressed because it is too large
Load Diff
385
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/Imagine.html
vendored
Normal file
385
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/Imagine.html
vendored
Normal file
@@ -0,0 +1,385 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gd\Imagine | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Gd.html">Imagine\Gd</a>\Imagine</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Imagine</strong> implements
|
||||
<a href="../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Imagine implementation using the GD library</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_create">create</a>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color = null)
|
||||
<p>Creates a new empty image with an optional background color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_open">open</a>(string $path)
|
||||
<p>Opens an existing image from $path</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_load">load</a>(string $string)
|
||||
<p>Loads an image from a binary $string</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_read">read</a>(<abbr title="Imagine\Image\resource">resource</abbr> $resource)
|
||||
<p>Loads an image from a resource $resource</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_font">font</a>(string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 33</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_create">
|
||||
<div class="location">at line 58</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>create</strong>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates a new empty image with an optional background color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_open">
|
||||
<div class="location">at line 93</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>open</strong>(string $path)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Opens an existing image from $path</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$path</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_load">
|
||||
<div class="location">at line 116</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>load</strong>(string $string)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Loads an image from a binary $string</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_read">
|
||||
<div class="location">at line 130</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>read</strong>(<abbr title="Imagine\Image\resource">resource</abbr> $resource)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Loads an image from a resource $resource</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Image\resource">resource</abbr></td>
|
||||
<td>$resource</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_font">
|
||||
<div class="location">at line 148</div>
|
||||
<code> public <a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a>
|
||||
<strong>font</strong>(string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
<p>The font size is to be specified in points (e.g. 10pt means 10)</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$file</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
831
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/Layers.html
vendored
Normal file
831
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/Layers.html
vendored
Normal file
@@ -0,0 +1,831 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gd\Layers | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Gd.html">Imagine\Gd</a>\Layers</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Layers</strong> extends <a href="../../Imagine/Image/AbstractLayers.html"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_add">add</a>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Adds an image at the end of the layers stack</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_add"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_set">set</a>(integer $offset, <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Set an image at offset</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_set"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_remove">remove</a>(integer $offset)
|
||||
<p>Removes the image at offset</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_remove"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_get">get</a>(integer $offset)
|
||||
<p>Returns the image at offset</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_get"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_has">has</a>(integer $offset)
|
||||
<p>Returns true if a layer at offset is preset</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_has"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../Imagine/Gd/Image.html"><abbr title="Imagine\Gd\Image">Image</abbr></a> $image, $resource)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_merge">merge</a>()
|
||||
<p>Merge layers into the original objects</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_coalesce">coalesce</a>()
|
||||
<p>Coalesce layers.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_animate">animate</a>(string $format, integer $delay, integer $loops)
|
||||
<p>Animates layers</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_current">current</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_key">key</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_next">next</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_rewind">rewind</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_valid">valid</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_count">count</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_offsetExists">offsetExists</a>($offset)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_offsetGet">offsetGet</a>($offset)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_offsetSet">offsetSet</a>($offset, $value)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_offsetUnset">offsetUnset</a>($offset)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_add">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_add"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 22</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>add</strong>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Adds an image at the end of the layers stack</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_set">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_set"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 32</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>set</strong>(integer $offset, <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Set an image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/OutOfBoundsException"><abbr title="OutOfBoundsException">OutOfBoundsException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_remove">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_remove"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 42</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>remove</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Removes the image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_get">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_get"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 52</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>get</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_has">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_has"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 60</div>
|
||||
<code> public Boolean
|
||||
<strong>has</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if a layer at offset is preset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 23</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../Imagine/Gd/Image.html"><abbr title="Imagine\Gd\Image">Image</abbr></a> $image, $resource)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Gd/Image.html"><abbr title="Imagine\Gd\Image">Image</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$resource</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_merge">
|
||||
<div class="location">at line 37</div>
|
||||
<code> public
|
||||
<strong>merge</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Merge layers into the original objects</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_coalesce">
|
||||
<div class="location">at line 44</div>
|
||||
<code> public
|
||||
<strong>coalesce</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Coalesce layers.</p>
|
||||
<p>Each layer in the sequence is the same size as the first and composited with the next layer in
|
||||
the sequence.</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_animate">
|
||||
<div class="location">at line 51</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>animate</strong>(string $format, integer $delay, integer $loops)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Animates layers</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$format</td>
|
||||
<td>The output output format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$delay</td>
|
||||
<td>The delay in milliseconds between two frames</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$loops</td>
|
||||
<td>The number of loops, 0 means infinite</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>In case an invalid argument is provided</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>In case the driver fails to animate</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_current">
|
||||
<div class="location">at line 59</div>
|
||||
<code> public
|
||||
<strong>current</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_key">
|
||||
<div class="location">at line 67</div>
|
||||
<code> public
|
||||
<strong>key</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_next">
|
||||
<div class="location">at line 75</div>
|
||||
<code> public
|
||||
<strong>next</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_rewind">
|
||||
<div class="location">at line 83</div>
|
||||
<code> public
|
||||
<strong>rewind</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_valid">
|
||||
<div class="location">at line 91</div>
|
||||
<code> public
|
||||
<strong>valid</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_count">
|
||||
<div class="location">at line 99</div>
|
||||
<code> public
|
||||
<strong>count</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_offsetExists">
|
||||
<div class="location">at line 107</div>
|
||||
<code> public
|
||||
<strong>offsetExists</strong>($offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_offsetGet">
|
||||
<div class="location">at line 115</div>
|
||||
<code> public
|
||||
<strong>offsetGet</strong>($offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_offsetSet">
|
||||
<div class="location">at line 127</div>
|
||||
<code> public
|
||||
<strong>offsetSet</strong>($offset, $value)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$value</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_offsetUnset">
|
||||
<div class="location">at line 135</div>
|
||||
<code> public
|
||||
<strong>offsetUnset</strong>($offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Gd/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gd | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
59
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick.html
vendored
Normal file
59
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick.html
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gmagick | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Gmagick</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Gmagick/Drawer.html"><abbr title="Imagine\Gmagick\Drawer">Drawer</abbr></a></td>
|
||||
<td class="last">Drawer implementation using the Gmagick PHP extension</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Gmagick/Effects.html"><abbr title="Imagine\Gmagick\Effects">Effects</abbr></a></td>
|
||||
<td class="last">Effects implementation using the Gmagick PHP extension</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Gmagick/Font.html"><abbr title="Imagine\Gmagick\Font">Font</abbr></a></td>
|
||||
<td class="last">Font implementation using the Gmagick PHP extension</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Gmagick/Image.html"><abbr title="Imagine\Gmagick\Image">Image</abbr></a></td>
|
||||
<td class="last">Image implementation using the Gmagick PHP extension</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Gmagick/Imagine.html"><abbr title="Imagine\Gmagick\Imagine">Imagine</abbr></a></td>
|
||||
<td class="last">Imagine implementation using the Gmagick PHP extension</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Gmagick/Layers.html"><abbr title="Imagine\Gmagick\Layers">Layers</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
720
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/Drawer.html
vendored
Normal file
720
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/Drawer.html
vendored
Normal file
@@ -0,0 +1,720 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gmagick\Drawer | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Gmagick.html">Imagine\Gmagick</a>\Drawer</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Drawer</strong> implements
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Drawer implementation using the Gmagick PHP extension</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<abbr title="Imagine\Gmagick\Gmagick">Gmagick</abbr> $gmagick)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_arc">arc</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)
|
||||
<p>Draws an arc on a starting at a given x, y coordinates under a given start and end angles</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_chord">chord</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Same as arc, but also connects end points with a straight line</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_ellipse">ellipse</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Draws and ellipse with center at the given x, y coordinates, and given width and height</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_line">line</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)
|
||||
<p>Draws a line from start(x, y) to end(x, y) coordinates</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_pieSlice">pieSlice</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Same as arc, but connects end points and the center</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_dot">dot</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Places a one pixel point at specific coordinates and fills it with specified color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_polygon">polygon</a>(array $coordinates, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Draws a polygon using array of x, y coordinates.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_text">text</a>(string $string, <a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> $font, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, integer $angle)
|
||||
<p>Annotates image with specified text at a given position starting on the top left of the final text box</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 36</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<abbr title="Imagine\Gmagick\Gmagick">Gmagick</abbr> $gmagick)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Gmagick\Gmagick">Gmagick</abbr></td>
|
||||
<td>$gmagick</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_arc">
|
||||
<div class="location">at line 44</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>arc</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws an arc on a starting at a given x, y coordinates under a given start and end angles</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_chord">
|
||||
<div class="location">at line 84</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>chord</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Same as arc, but also connects end points with a straight line</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_ellipse">
|
||||
<div class="location">at line 130</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>ellipse</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws and ellipse with center at the given x, y coordinates, and given width and height</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_line">
|
||||
<div class="location">at line 173</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>line</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws a line from start(x, y) to end(x, y) coordinates</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_pieSlice">
|
||||
<div class="location">at line 206</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>pieSlice</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Same as arc, but connects end points and the center</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_dot">
|
||||
<div class="location">at line 240</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>dot</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Places a one pixel point at specific coordinates and fills it with specified color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_polygon">
|
||||
<div class="location">at line 269</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>polygon</strong>(array $coordinates, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws a polygon using array of x, y coordinates.</p>
|
||||
<p>Must contain at least
|
||||
three coordinates</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$coordinates</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_text">
|
||||
<div class="location">at line 314</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>text</strong>(string $string, <a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> $font, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, integer $angle)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Annotates image with specified text at a given position starting on the top left of the final text box</p>
|
||||
<p>The rotation is done CW</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></td>
|
||||
<td>$font</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
341
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/Effects.html
vendored
Normal file
341
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/Effects.html
vendored
Normal file
@@ -0,0 +1,341 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gmagick\Effects | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Gmagick.html">Imagine\Gmagick</a>\Effects</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Effects</strong> implements
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Effects implementation using the Gmagick PHP extension</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<abbr title="Imagine\Gmagick\Gmagick">Gmagick</abbr> $gmagick)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_gamma">gamma</a>(<abbr title="Imagine\Effects\float">float</abbr> $correction)
|
||||
<p>Apply gamma correction</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_negative">negative</a>()
|
||||
<p>Invert the colors of the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_grayscale">grayscale</a>()
|
||||
<p>Grayscale the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_colorize">colorize</a>(<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Colorize the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_sharpen">sharpen</a>()
|
||||
<p>Sharpens the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 25</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<abbr title="Imagine\Gmagick\Gmagick">Gmagick</abbr> $gmagick)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Gmagick\Gmagick">Gmagick</abbr></td>
|
||||
<td>$gmagick</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_gamma">
|
||||
<div class="location">at line 33</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>gamma</strong>(<abbr title="Imagine\Effects\float">float</abbr> $correction)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Apply gamma correction</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Effects\float">float</abbr></td>
|
||||
<td>$correction</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_negative">
|
||||
<div class="location">at line 47</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>negative</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Invert the colors of the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_grayscale">
|
||||
<div class="location">at line 66</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>grayscale</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Grayscale the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_colorize">
|
||||
<div class="location">at line 80</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>colorize</strong>(<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Colorize the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_sharpen">
|
||||
<div class="location">at line 88</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>sharpen</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sharpens the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
264
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/Font.html
vendored
Normal file
264
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/Font.html
vendored
Normal file
@@ -0,0 +1,264 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gmagick\Font | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Gmagick.html">Imagine\Gmagick</a>\Font</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Font</strong> extends <a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Font implementation using the Gmagick PHP extension</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<abbr title="Imagine\Gmagick\Gmagick">Gmagick</abbr> $gmagick, string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getFile">getFile</a>()
|
||||
<p>Gets the fontfile for current font</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractFont.html#method_getFile"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getSize">getSize</a>()
|
||||
<p>Gets font's integer point size</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractFont.html#method_getSize"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getColor">getColor</a>()
|
||||
<p>Gets font's color</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractFont.html#method_getColor"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_box">box</a>(string $string, integer $angle)
|
||||
<p>Gets BoxInterface of font size on the image based on string and angle</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 34</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<abbr title="Imagine\Gmagick\Gmagick">Gmagick</abbr> $gmagick, string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
<p>The font size is to be specified in points (e.g. 10pt means 10)</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Gmagick\Gmagick">Gmagick</abbr></td>
|
||||
<td>$gmagick</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$file</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getFile">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractFont.html#method_getFile"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> at line 55</div>
|
||||
<code>final public string
|
||||
<strong>getFile</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the fontfile for current font</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getSize">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractFont.html#method_getSize"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> at line 63</div>
|
||||
<code>final public integer
|
||||
<strong>getSize</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets font's integer point size</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getColor">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractFont.html#method_getColor"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> at line 71</div>
|
||||
<code>final public <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getColor</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets font's color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_box">
|
||||
<div class="location">at line 44</div>
|
||||
<code> public <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
<strong>box</strong>(string $string, integer $angle)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets BoxInterface of font size on the image based on string and angle</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
1333
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/Image.html
vendored
Normal file
1333
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/Image.html
vendored
Normal file
File diff suppressed because it is too large
Load Diff
385
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/Imagine.html
vendored
Normal file
385
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/Imagine.html
vendored
Normal file
@@ -0,0 +1,385 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gmagick\Imagine | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Gmagick.html">Imagine\Gmagick</a>\Imagine</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Imagine</strong> implements
|
||||
<a href="../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Imagine implementation using the Gmagick PHP extension</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_open">open</a>(string $path)
|
||||
<p>Opens an existing image from $path</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_create">create</a>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color = null)
|
||||
<p>Creates a new empty image with an optional background color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_load">load</a>(string $string)
|
||||
<p>Loads an image from a binary $string</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_read">read</a>(<abbr title="Imagine\Image\resource">resource</abbr> $resource)
|
||||
<p>Loads an image from a resource $resource</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_font">font</a>(string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 28</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_open">
|
||||
<div class="location">at line 38</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>open</strong>(string $path)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Opens an existing image from $path</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$path</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_create">
|
||||
<div class="location">at line 63</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>create</strong>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates a new empty image with an optional background color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_load">
|
||||
<div class="location">at line 94</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>load</strong>(string $string)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Loads an image from a binary $string</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_read">
|
||||
<div class="location">at line 111</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>read</strong>(<abbr title="Imagine\Image\resource">resource</abbr> $resource)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Loads an image from a resource $resource</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Image\resource">resource</abbr></td>
|
||||
<td>$resource</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_font">
|
||||
<div class="location">at line 129</div>
|
||||
<code> public <a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a>
|
||||
<strong>font</strong>(string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
<p>The font size is to be specified in points (e.g. 10pt means 10)</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$file</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
831
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/Layers.html
vendored
Normal file
831
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/Layers.html
vendored
Normal file
@@ -0,0 +1,831 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gmagick\Layers | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Gmagick.html">Imagine\Gmagick</a>\Layers</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Layers</strong> extends <a href="../../Imagine/Image/AbstractLayers.html"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_add">add</a>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Adds an image at the end of the layers stack</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_add"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_set">set</a>(integer $offset, <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Set an image at offset</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_set"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_remove">remove</a>(integer $offset)
|
||||
<p>Removes the image at offset</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_remove"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_get">get</a>(integer $offset)
|
||||
<p>Returns the image at offset</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_get"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_has">has</a>(integer $offset)
|
||||
<p>Returns true if a layer at offset is preset</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_has"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../Imagine/Gmagick/Image.html"><abbr title="Imagine\Gmagick\Image">Image</abbr></a> $image, <abbr title="Imagine\Gmagick\Gmagick">Gmagick</abbr> $resource)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_merge">merge</a>()
|
||||
<p>Merge layers into the original objects</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_coalesce">coalesce</a>()
|
||||
<p>Coalesce layers.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_animate">animate</a>(string $format, integer $delay, integer $loops)
|
||||
<p>Animates layers</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_current">current</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_key">key</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_next">next</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_rewind">rewind</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_valid">valid</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_count">count</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_offsetExists">offsetExists</a>($offset)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_offsetGet">offsetGet</a>($offset)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_offsetSet">offsetSet</a>($offset, $image)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_offsetUnset">offsetUnset</a>($offset)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_add">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_add"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 22</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>add</strong>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Adds an image at the end of the layers stack</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_set">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_set"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 32</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>set</strong>(integer $offset, <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Set an image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/OutOfBoundsException"><abbr title="OutOfBoundsException">OutOfBoundsException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_remove">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_remove"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 42</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>remove</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Removes the image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_get">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_get"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 52</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>get</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_has">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_has"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 60</div>
|
||||
<code> public Boolean
|
||||
<strong>has</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if a layer at offset is preset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 39</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../Imagine/Gmagick/Image.html"><abbr title="Imagine\Gmagick\Image">Image</abbr></a> $image, <abbr title="Imagine\Gmagick\Gmagick">Gmagick</abbr> $resource)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Gmagick/Image.html"><abbr title="Imagine\Gmagick\Image">Image</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Gmagick\Gmagick">Gmagick</abbr></td>
|
||||
<td>$resource</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_merge">
|
||||
<div class="location">at line 48</div>
|
||||
<code> public
|
||||
<strong>merge</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Merge layers into the original objects</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_coalesce">
|
||||
<div class="location">at line 65</div>
|
||||
<code> public
|
||||
<strong>coalesce</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Coalesce layers.</p>
|
||||
<p>Each layer in the sequence is the same size as the first and composited with the next layer in
|
||||
the sequence.</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_animate">
|
||||
<div class="location">at line 73</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>animate</strong>(string $format, integer $delay, integer $loops)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Animates layers</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$format</td>
|
||||
<td>The output output format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$delay</td>
|
||||
<td>The delay in milliseconds between two frames</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$loops</td>
|
||||
<td>The number of loops, 0 means infinite</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>In case an invalid argument is provided</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>In case the driver fails to animate</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_current">
|
||||
<div class="location">at line 102</div>
|
||||
<code> public
|
||||
<strong>current</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_key">
|
||||
<div class="location">at line 134</div>
|
||||
<code> public
|
||||
<strong>key</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_next">
|
||||
<div class="location">at line 142</div>
|
||||
<code> public
|
||||
<strong>next</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_rewind">
|
||||
<div class="location">at line 150</div>
|
||||
<code> public
|
||||
<strong>rewind</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_valid">
|
||||
<div class="location">at line 158</div>
|
||||
<code> public
|
||||
<strong>valid</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_count">
|
||||
<div class="location">at line 166</div>
|
||||
<code> public
|
||||
<strong>count</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_offsetExists">
|
||||
<div class="location">at line 180</div>
|
||||
<code> public
|
||||
<strong>offsetExists</strong>($offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_offsetGet">
|
||||
<div class="location">at line 188</div>
|
||||
<code> public
|
||||
<strong>offsetGet</strong>($offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_offsetSet">
|
||||
<div class="location">at line 196</div>
|
||||
<code> public
|
||||
<strong>offsetSet</strong>($offset, $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_offsetUnset">
|
||||
<div class="location">at line 252</div>
|
||||
<code> public
|
||||
<strong>offsetUnset</strong>($offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Gmagick/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Gmagick | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
86
core/vendor/imagine/imagine/docs/API/API/Imagine/Image.html
vendored
Normal file
86
core/vendor/imagine/imagine/docs/API/API/Imagine/Image.html
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Image</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></td>
|
||||
<td class="last">Abstract font base class</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Image/AbstractLayers.html"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Image/Box.html"><abbr title="Imagine\Image\Box">Box</abbr></a></td>
|
||||
<td class="last">A box implementation</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td class="last">The color class</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Image/Point.html"><abbr title="Imagine\Image\Point">Point</abbr></a></td>
|
||||
<td class="last">The point class</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td class="last">Interface for a box</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a></td>
|
||||
<td class="last">The font interface</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td class="last">The image interface</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a></td>
|
||||
<td class="last">The imagine interface</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td class="last">The layers interface</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td class="last">The manipulator interface</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td class="last">The point interface</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
206
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/AbstractFont.html
vendored
Normal file
206
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/AbstractFont.html
vendored
Normal file
@@ -0,0 +1,206 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\AbstractFont | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Image.html">Imagine\Image</a>\AbstractFont</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>abstract class <strong>AbstractFont</strong> implements
|
||||
<a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Abstract font base class</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getFile">getFile</a>()
|
||||
<p>Gets the fontfile for current font</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getSize">getSize</a>()
|
||||
<p>Gets font's integer point size</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getColor">getColor</a>()
|
||||
<p>Gets font's color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 45</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
<p>The font size is to be specified in points (e.g. 10pt means 10)</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$file</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getFile">
|
||||
<div class="location">at line 55</div>
|
||||
<code>final public string
|
||||
<strong>getFile</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the fontfile for current font</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getSize">
|
||||
<div class="location">at line 63</div>
|
||||
<code>final public integer
|
||||
<strong>getSize</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets font's integer point size</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getColor">
|
||||
<div class="location">at line 71</div>
|
||||
<code>final public <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getColor</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets font's color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
346
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/AbstractLayers.html
vendored
Normal file
346
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/AbstractLayers.html
vendored
Normal file
@@ -0,0 +1,346 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\AbstractLayers | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Image.html">Imagine\Image</a>\AbstractLayers</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>abstract class <strong>AbstractLayers</strong> implements
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_add">add</a>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Adds an image at the end of the layers stack</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_set">set</a>(integer $offset, <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Set an image at offset</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_remove">remove</a>(integer $offset)
|
||||
<p>Removes the image at offset</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_get">get</a>(integer $offset)
|
||||
<p>Returns the image at offset</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_has">has</a>(integer $offset)
|
||||
<p>Returns true if a layer at offset is preset</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_add">
|
||||
<div class="location">at line 22</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>add</strong>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Adds an image at the end of the layers stack</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_set">
|
||||
<div class="location">at line 32</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>set</strong>(integer $offset, <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Set an image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/OutOfBoundsException"><abbr title="OutOfBoundsException">OutOfBoundsException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_remove">
|
||||
<div class="location">at line 42</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>remove</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Removes the image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_get">
|
||||
<div class="location">at line 52</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>get</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_has">
|
||||
<div class="location">at line 60</div>
|
||||
<code> public Boolean
|
||||
<strong>has</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if a layer at offset is preset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
488
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Box.html
vendored
Normal file
488
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Box.html
vendored
Normal file
@@ -0,0 +1,488 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Box | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Image.html">Imagine\Image</a>\Box</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Box</strong> implements
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>A box implementation</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(integer $width, integer $height)
|
||||
<p>Constructs the Size with given width and height</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getWidth">getWidth</a>()
|
||||
<p>Gets current image width</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getHeight">getHeight</a>()
|
||||
<p>Gets current image height</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_scale">scale</a>(<abbr title="Imagine\Image\float">float</abbr> $ratio)
|
||||
<p>Creates new BoxInterface instance with ratios applied to both sides</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_increase">increase</a>(integer $size)
|
||||
<p>Creates new BoxInterface, adding given size to both sides</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_contains">contains</a>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $box, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start = null)
|
||||
<p>Checks whether current box can fit given box at a given start position, start position defaults to top left corner xy(0,0)</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_square">square</a>()
|
||||
<p>Gets current box square, useful for getting total number of pixels in a given box</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___toString">__toString</a>()
|
||||
<p>Returns a string representation of the current box</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_widen">widen</a>(integer $width)
|
||||
<p>Resizes box to given width, constraining proportions and returns the new box</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_heighten">heighten</a>(integer $height)
|
||||
<p>Resizes box to given height, constraining proportions and returns the new box</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 39</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(integer $width, integer $height)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs the Size with given width and height</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$width</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$height</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getWidth">
|
||||
<div class="location">at line 55</div>
|
||||
<code> public integer
|
||||
<strong>getWidth</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets current image width</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getHeight">
|
||||
<div class="location">at line 63</div>
|
||||
<code> public integer
|
||||
<strong>getHeight</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets current image height</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_scale">
|
||||
<div class="location">at line 71</div>
|
||||
<code> public <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
<strong>scale</strong>(<abbr title="Imagine\Image\float">float</abbr> $ratio)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates new BoxInterface instance with ratios applied to both sides</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Image\float">float</abbr></td>
|
||||
<td>$ratio</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_increase">
|
||||
<div class="location">at line 79</div>
|
||||
<code> public <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
<strong>increase</strong>(integer $size)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates new BoxInterface, adding given size to both sides</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_contains">
|
||||
<div class="location">at line 87</div>
|
||||
<code> public Boolean
|
||||
<strong>contains</strong>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $box, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Checks whether current box can fit given box at a given start position, start position defaults to top left corner xy(0,0)</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$box</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_square">
|
||||
<div class="location">at line 99</div>
|
||||
<code> public integer
|
||||
<strong>square</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets current box square, useful for getting total number of pixels in a given box</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___toString">
|
||||
<div class="location">at line 107</div>
|
||||
<code> public string
|
||||
<strong>__toString</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns a string representation of the current box</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_widen">
|
||||
<div class="location">at line 115</div>
|
||||
<code> public <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
<strong>widen</strong>(integer $width)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Resizes box to given width, constraining proportions and returns the new box</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$width</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_heighten">
|
||||
<div class="location">at line 123</div>
|
||||
<code> public <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
<strong>heighten</strong>(integer $height)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Resizes box to given height, constraining proportions and returns the new box</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$height</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
434
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/BoxInterface.html
vendored
Normal file
434
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/BoxInterface.html
vendored
Normal file
@@ -0,0 +1,434 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\BoxInterface | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../Imagine/Image.html">Imagine\Image</a>\BoxInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>interface <strong>BoxInterface</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Interface for a box</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getHeight">getHeight</a>()
|
||||
<p>Gets current image height</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getWidth">getWidth</a>()
|
||||
<p>Gets current image width</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_scale">scale</a>(<abbr title="Imagine\Image\float">float</abbr> $ratio)
|
||||
<p>Creates new BoxInterface instance with ratios applied to both sides</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_increase">increase</a>(integer $size)
|
||||
<p>Creates new BoxInterface, adding given size to both sides</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_contains">contains</a>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $box, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start = null)
|
||||
<p>Checks whether current box can fit given box at a given start position, start position defaults to top left corner xy(0,0)</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_square">square</a>()
|
||||
<p>Gets current box square, useful for getting total number of pixels in a given box</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___toString">__toString</a>()
|
||||
<p>Returns a string representation of the current box</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_widen">widen</a>(integer $width)
|
||||
<p>Resizes box to given width, constraining proportions and returns the new box</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_heighten">heighten</a>(integer $height)
|
||||
<p>Resizes box to given height, constraining proportions and returns the new box</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getHeight">
|
||||
<div class="location">at line 26</div>
|
||||
<code> public integer
|
||||
<strong>getHeight</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets current image height</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getWidth">
|
||||
<div class="location">at line 33</div>
|
||||
<code> public integer
|
||||
<strong>getWidth</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets current image width</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_scale">
|
||||
<div class="location">at line 42</div>
|
||||
<code> public <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
<strong>scale</strong>(<abbr title="Imagine\Image\float">float</abbr> $ratio)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates new BoxInterface instance with ratios applied to both sides</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Image\float">float</abbr></td>
|
||||
<td>$ratio</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_increase">
|
||||
<div class="location">at line 51</div>
|
||||
<code> public <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
<strong>increase</strong>(integer $size)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates new BoxInterface, adding given size to both sides</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_contains">
|
||||
<div class="location">at line 62</div>
|
||||
<code> public Boolean
|
||||
<strong>contains</strong>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $box, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Checks whether current box can fit given box at a given start position, start position defaults to top left corner xy(0,0)</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$box</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_square">
|
||||
<div class="location">at line 70</div>
|
||||
<code> public integer
|
||||
<strong>square</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets current box square, useful for getting total number of pixels in a given box</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___toString">
|
||||
<div class="location">at line 77</div>
|
||||
<code> public string
|
||||
<strong>__toString</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns a string representation of the current box</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_widen">
|
||||
<div class="location">at line 86</div>
|
||||
<code> public <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
<strong>widen</strong>(integer $width)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Resizes box to given width, constraining proportions and returns the new box</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$width</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_heighten">
|
||||
<div class="location">at line 95</div>
|
||||
<code> public <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
<strong>heighten</strong>(integer $height)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Resizes box to given height, constraining proportions and returns the new box</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$height</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
449
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Color.html
vendored
Normal file
449
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Color.html
vendored
Normal file
@@ -0,0 +1,449 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Color | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Image.html">Imagine\Image</a>\Color</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Color</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The color class</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(array|string|integer $color, integer $alpha)
|
||||
<p>Constructs image color, e.g.: - new Color('fff') - will produce non-transparent white color - new Color('ffffff', 50) - will product 50% transparent white - new Color(array(255, 255, 255)) - another way of getting white - new Color(0x00FF00) - hexadecimal notation for green</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getRed">getRed</a>()
|
||||
<p>Returns RED value of the color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getGreen">getGreen</a>()
|
||||
<p>Returns GREEN value of the color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getBlue">getBlue</a>()
|
||||
<p>Returns BLUE value of the color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getAlpha">getAlpha</a>()
|
||||
<p>Returns percentage of transparency of the color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_dissolve">dissolve</a>(integer $alpha)
|
||||
<p>Returns a copy of current color, incrementing the alpha channel by the given amount</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_lighten">lighten</a>(integer $shade)
|
||||
<p>Returns a copy of the current color, lightened by the specified number of shades</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_darken">darken</a>(integer $shade)
|
||||
<p>Returns a copy of the current color, darkened by the specified number of shades</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___toString">__toString</a>()
|
||||
<p>Returns hex representation of the color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_isOpaque">isOpaque</a>()
|
||||
<p>Checks if the current color is opaque</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 51</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(array|string|integer $color, integer $alpha)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs image color, e.g.: - new Color('fff') - will produce non-transparent white color - new Color('ffffff', 50) - will product 50% transparent white - new Color(array(255, 255, 255)) - another way of getting white - new Color(0x00FF00) - hexadecimal notation for green</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array|string|integer</td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$alpha</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getRed">
|
||||
<div class="location">at line 62</div>
|
||||
<code> public integer
|
||||
<strong>getRed</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns RED value of the color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getGreen">
|
||||
<div class="location">at line 72</div>
|
||||
<code> public integer
|
||||
<strong>getGreen</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns GREEN value of the color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getBlue">
|
||||
<div class="location">at line 82</div>
|
||||
<code> public integer
|
||||
<strong>getBlue</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns BLUE value of the color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getAlpha">
|
||||
<div class="location">at line 92</div>
|
||||
<code> public integer
|
||||
<strong>getAlpha</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns percentage of transparency of the color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_dissolve">
|
||||
<div class="location">at line 105</div>
|
||||
<code> public <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>dissolve</strong>(integer $alpha)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns a copy of current color, incrementing the alpha channel by the given amount</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$alpha</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_lighten">
|
||||
<div class="location">at line 118</div>
|
||||
<code> public <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>lighten</strong>(integer $shade)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns a copy of the current color, lightened by the specified number of shades</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$shade</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_darken">
|
||||
<div class="location">at line 138</div>
|
||||
<code> public <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>darken</strong>(integer $shade)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns a copy of the current color, darkened by the specified number of shades</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$shade</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___toString">
|
||||
<div class="location">at line 230</div>
|
||||
<code> public string
|
||||
<strong>__toString</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns hex representation of the color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_isOpaque">
|
||||
<div class="location">at line 240</div>
|
||||
<code> public Boolean
|
||||
<strong>isOpaque</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Checks if the current color is opaque</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
39
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill.html
vendored
Normal file
39
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill.html
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Fill | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Image\Fill</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
|
||||
<h2>Interfaces</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Fill/FillInterface.html"><abbr title="Imagine\Image\Fill\FillInterface">FillInterface</abbr></a></td>
|
||||
<td class="last">Interface for the fill</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
96
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/FillInterface.html
vendored
Normal file
96
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/FillInterface.html
vendored
Normal file
@@ -0,0 +1,96 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Fill\FillInterface | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../../Imagine/Image/Fill.html">Imagine\Image\Fill</a>\FillInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>interface <strong>FillInterface</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Interface for the fill</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getColor">getColor</a>(<a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position)
|
||||
<p>Gets color of the fill for the given position</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getColor">
|
||||
<div class="location">at line 29</div>
|
||||
<code> public <a href="../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getColor</strong>(<a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets color of the fill for the given position</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
46
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/Gradient.html
vendored
Normal file
46
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/Gradient.html
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Fill\Gradient | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Image\Fill\Gradient</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/Fill/Gradient/Horizontal.html"><abbr title="Imagine\Image\Fill\Gradient\Horizontal">Horizontal</abbr></a></td>
|
||||
<td class="last">Horizontal gradient fill</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/Fill/Gradient/Linear.html"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a></td>
|
||||
<td class="last">Linear gradient fill</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/Fill/Gradient/Vertical.html"><abbr title="Imagine\Image\Fill\Gradient\Vertical">Vertical</abbr></a></td>
|
||||
<td class="last">Vertical gradient fill</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
258
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/Gradient/Horizontal.html
vendored
Normal file
258
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/Gradient/Horizontal.html
vendored
Normal file
@@ -0,0 +1,258 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Fill\Gradient\Horizontal | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../../Imagine/Image/Fill/Gradient.html">Imagine\Image\Fill\Gradient</a>\Horizontal</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Horizontal</strong> extends <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Horizontal gradient fill</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(integer $length, <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $start, <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $end)
|
||||
<p>Constructs a linear gradient with overall gradient length, and start and end shades, which default to 0 and 255 accordingly</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method___construct"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getColor">getColor</a>(<a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position)
|
||||
<p>Gets color of the fill for the given position</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method_getColor"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getStart">getStart</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method_getStart"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getEnd">getEnd</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method_getEnd"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getDistance">getDistance</a>(<a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">in <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method___construct"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a> at line 46</div>
|
||||
<code>final public
|
||||
<strong>__construct</strong>(integer $length, <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $start, <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $end)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a linear gradient with overall gradient length, and start and end shades, which default to 0 and 255 accordingly</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$length</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getColor">
|
||||
<div class="location">in <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method_getColor"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a> at line 56</div>
|
||||
<code>final public <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getColor</strong>(<a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets color of the fill for the given position</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getStart">
|
||||
<div class="location">in <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method_getStart"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a> at line 82</div>
|
||||
<code>final public <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getStart</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getEnd">
|
||||
<div class="location">in <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method_getEnd"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a> at line 90</div>
|
||||
<code>final public <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getEnd</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getDistance">
|
||||
<div class="location">at line 24</div>
|
||||
<code> public
|
||||
<strong>getDistance</strong>(<a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
222
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/Gradient/Linear.html
vendored
Normal file
222
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/Gradient/Linear.html
vendored
Normal file
@@ -0,0 +1,222 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Fill\Gradient\Linear | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../../Imagine/Image/Fill/Gradient.html">Imagine\Image\Fill\Gradient</a>\Linear</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>abstract class <strong>Linear</strong> implements
|
||||
<a href="../../../../Imagine/Image/Fill/FillInterface.html"><abbr title="Imagine\Image\Fill\FillInterface">FillInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Linear gradient fill</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(integer $length, <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $start, <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $end)
|
||||
<p>Constructs a linear gradient with overall gradient length, and start and end shades, which default to 0 and 255 accordingly</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getColor">getColor</a>(<a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position)
|
||||
<p>Gets color of the fill for the given position</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getStart">getStart</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getEnd">getEnd</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 46</div>
|
||||
<code>final public
|
||||
<strong>__construct</strong>(integer $length, <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $start, <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $end)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a linear gradient with overall gradient length, and start and end shades, which default to 0 and 255 accordingly</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$length</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getColor">
|
||||
<div class="location">at line 56</div>
|
||||
<code>final public <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getColor</strong>(<a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets color of the fill for the given position</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getStart">
|
||||
<div class="location">at line 82</div>
|
||||
<code>final public <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getStart</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getEnd">
|
||||
<div class="location">at line 90</div>
|
||||
<code>final public <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getEnd</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
258
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/Gradient/Vertical.html
vendored
Normal file
258
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/Gradient/Vertical.html
vendored
Normal file
@@ -0,0 +1,258 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Fill\Gradient\Vertical | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../../Imagine/Image/Fill/Gradient.html">Imagine\Image\Fill\Gradient</a>\Vertical</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Vertical</strong> extends <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Vertical gradient fill</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(integer $length, <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $start, <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $end)
|
||||
<p>Constructs a linear gradient with overall gradient length, and start and end shades, which default to 0 and 255 accordingly</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method___construct"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getColor">getColor</a>(<a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position)
|
||||
<p>Gets color of the fill for the given position</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method_getColor"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getStart">getStart</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method_getStart"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getEnd">getEnd</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method_getEnd"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getDistance">getDistance</a>(<a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">in <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method___construct"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a> at line 46</div>
|
||||
<code>final public
|
||||
<strong>__construct</strong>(integer $length, <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $start, <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $end)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a linear gradient with overall gradient length, and start and end shades, which default to 0 and 255 accordingly</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$length</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getColor">
|
||||
<div class="location">in <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method_getColor"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a> at line 56</div>
|
||||
<code>final public <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getColor</strong>(<a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets color of the fill for the given position</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getStart">
|
||||
<div class="location">in <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method_getStart"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a> at line 82</div>
|
||||
<code>final public <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getStart</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getEnd">
|
||||
<div class="location">in <a href="../../../../Imagine/Image/Fill/Gradient/Linear.html#method_getEnd"><abbr title="Imagine\Image\Fill\Gradient\Linear">Linear</abbr></a> at line 90</div>
|
||||
<code>final public <a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getEnd</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getDistance">
|
||||
<div class="location">at line 24</div>
|
||||
<code> public
|
||||
<strong>getDistance</strong>(<a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/Gradient/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/Gradient/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Fill\Gradient | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Fill/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Fill | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
210
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/FontInterface.html
vendored
Normal file
210
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/FontInterface.html
vendored
Normal file
@@ -0,0 +1,210 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\FontInterface | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../Imagine/Image.html">Imagine\Image</a>\FontInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>interface <strong>FontInterface</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The font interface</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getFile">getFile</a>()
|
||||
<p>Gets the fontfile for current font</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getSize">getSize</a>()
|
||||
<p>Gets font's integer point size</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getColor">getColor</a>()
|
||||
<p>Gets font's color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_box">box</a>(string $string, integer $angle)
|
||||
<p>Gets BoxInterface of font size on the image based on string and angle</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getFile">
|
||||
<div class="location">at line 27</div>
|
||||
<code> public string
|
||||
<strong>getFile</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the fontfile for current font</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getSize">
|
||||
<div class="location">at line 34</div>
|
||||
<code> public integer
|
||||
<strong>getSize</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets font's integer point size</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getColor">
|
||||
<div class="location">at line 41</div>
|
||||
<code> public <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getColor</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets font's color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_box">
|
||||
<div class="location">at line 51</div>
|
||||
<code> public <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
<strong>box</strong>(string $string, integer $angle)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets BoxInterface of font size on the image based on string and angle</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
42
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Histogram.html
vendored
Normal file
42
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Histogram.html
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Histogram | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Image\Histogram</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Histogram/Bucket.html"><abbr title="Imagine\Image\Histogram\Bucket">Bucket</abbr></a></td>
|
||||
<td class="last">Bucket histogram</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Histogram/Range.html"><abbr title="Imagine\Image\Histogram\Range">Range</abbr></a></td>
|
||||
<td class="last">Range histogram</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
171
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Histogram/Bucket.html
vendored
Normal file
171
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Histogram/Bucket.html
vendored
Normal file
@@ -0,0 +1,171 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Histogram\Bucket | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Image/Histogram.html">Imagine\Image\Histogram</a>\Bucket</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Bucket</strong> implements
|
||||
<a href="http://php.net/Countable"><abbr title="Countable">Countable</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Bucket histogram</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../Imagine/Image/Histogram/Range.html"><abbr title="Imagine\Image\Histogram\Range">Range</abbr></a> $range, integer $count)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_add">add</a>(integer $value)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_count">count</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 33</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../Imagine/Image/Histogram/Range.html"><abbr title="Imagine\Image\Histogram\Range">Range</abbr></a> $range, integer $count)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/Histogram/Range.html"><abbr title="Imagine\Image\Histogram\Range">Range</abbr></a></td>
|
||||
<td>$range</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$count</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_add">
|
||||
<div class="location">at line 42</div>
|
||||
<code> public
|
||||
<strong>add</strong>(integer $value)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$value</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_count">
|
||||
<div class="location">at line 52</div>
|
||||
<code> public integer
|
||||
<strong>count</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>The number of elements in the bucket.</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
153
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Histogram/Range.html
vendored
Normal file
153
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Histogram/Range.html
vendored
Normal file
@@ -0,0 +1,153 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Histogram\Range | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Image/Histogram.html">Imagine\Image\Histogram</a>\Range</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Range</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Range histogram</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(integer $start, integer $end)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_contains">contains</a>(integer $value)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 37</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(integer $start, integer $end)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/OutOfBoundsException"><abbr title="OutOfBoundsException">OutOfBoundsException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_contains">
|
||||
<div class="location">at line 55</div>
|
||||
<code> public Boolean
|
||||
<strong>contains</strong>(integer $value)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$value</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Histogram/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Histogram/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Histogram | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
1437
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/ImageInterface.html
vendored
Normal file
1437
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/ImageInterface.html
vendored
Normal file
File diff suppressed because it is too large
Load Diff
360
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/ImagineInterface.html
vendored
Normal file
360
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/ImagineInterface.html
vendored
Normal file
@@ -0,0 +1,360 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\ImagineInterface | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../Imagine/Image.html">Imagine\Image</a>\ImagineInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>interface <strong>ImagineInterface</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The imagine interface</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Constants</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>VERSION</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_create">create</a>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color = null)
|
||||
<p>Creates a new empty image with an optional background color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_open">open</a>(string $path)
|
||||
<p>Opens an existing image from $path</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_load">load</a>(string $string)
|
||||
<p>Loads an image from a binary $string</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_read">read</a>(<abbr title="Imagine\Image\resource">resource</abbr> $resource)
|
||||
<p>Loads an image from a resource $resource</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_font">font</a>(string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_create">
|
||||
<div class="location">at line 39</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>create</strong>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates a new empty image with an optional background color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_open">
|
||||
<div class="location">at line 50</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>open</strong>(string $path)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Opens an existing image from $path</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$path</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_load">
|
||||
<div class="location">at line 62</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>load</strong>(string $string)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Loads an image from a binary $string</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_read">
|
||||
<div class="location">at line 73</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>read</strong>(<abbr title="Imagine\Image\resource">resource</abbr> $resource)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Loads an image from a resource $resource</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Image\resource">resource</abbr></td>
|
||||
<td>$resource</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_font">
|
||||
<div class="location">at line 86</div>
|
||||
<code> public <a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a>
|
||||
<strong>font</strong>(string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
<p>The font size is to be specified in points (e.g. 10pt means 10)</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$file</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
482
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/LayersInterface.html
vendored
Normal file
482
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/LayersInterface.html
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\LayersInterface | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../Imagine/Image.html">Imagine\Image</a>\LayersInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>interface <strong>LayersInterface</strong> implements
|
||||
<a href="http://php.net/Iterator"><abbr title="Iterator">Iterator</abbr></a>, <a href="http://php.net/Countable"><abbr title="Countable">Countable</abbr></a>, <a href="http://php.net/ArrayAccess"><abbr title="ArrayAccess">ArrayAccess</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The layers interface</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_merge">merge</a>()
|
||||
<p>Merge layers into the original objects</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_animate">animate</a>(string $format, integer $delay, integer $loops)
|
||||
<p>Animates layers</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_coalesce">coalesce</a>()
|
||||
<p>Coalesce layers.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_add">add</a>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Adds an image at the end of the layers stack</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_set">set</a>(integer $offset, <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Set an image at offset</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_remove">remove</a>(integer $offset)
|
||||
<p>Removes the image at offset</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_get">get</a>(integer $offset)
|
||||
<p>Returns the image at offset</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_has">has</a>(integer $offset)
|
||||
<p>Returns true if a layer at offset is preset</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_merge">
|
||||
<div class="location">at line 29</div>
|
||||
<code> public
|
||||
<strong>merge</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Merge layers into the original objects</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_animate">
|
||||
<div class="location">at line 43</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>animate</strong>(string $format, integer $delay, integer $loops)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Animates layers</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$format</td>
|
||||
<td>The output output format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$delay</td>
|
||||
<td>The delay in milliseconds between two frames</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$loops</td>
|
||||
<td>The number of loops, 0 means infinite</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>In case an invalid argument is provided</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>In case the driver fails to animate</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_coalesce">
|
||||
<div class="location">at line 49</div>
|
||||
<code> public
|
||||
<strong>coalesce</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Coalesce layers.</p>
|
||||
<p>Each layer in the sequence is the same size as the first and composited with the next layer in
|
||||
the sequence.</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_add">
|
||||
<div class="location">at line 60</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>add</strong>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Adds an image at the end of the layers stack</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_set">
|
||||
<div class="location">at line 74</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>set</strong>(integer $offset, <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Set an image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/OutOfBoundsException"><abbr title="OutOfBoundsException">OutOfBoundsException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_remove">
|
||||
<div class="location">at line 86</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>remove</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Removes the image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_get">
|
||||
<div class="location">at line 98</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>get</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_has">
|
||||
<div class="location">at line 107</div>
|
||||
<code> public Boolean
|
||||
<strong>has</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if a layer at offset is preset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
805
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/ManipulatorInterface.html
vendored
Normal file
805
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/ManipulatorInterface.html
vendored
Normal file
@@ -0,0 +1,805 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\ManipulatorInterface | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../Imagine/Image.html">Imagine\Image</a>\ManipulatorInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>interface <strong>ManipulatorInterface</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The manipulator interface</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2>Constants</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>THUMBNAIL_INSET</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>THUMBNAIL_OUTBOUND</td>
|
||||
<td class="last">
|
||||
<p><em>
|
||||
</em></p>
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_copy">copy</a>()
|
||||
<p>Copies current source image into a new ImageInterface instance</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_crop">crop</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size)
|
||||
<p>Crops a specified box out of the source image (modifies the source image) Returns cropped self</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_resize">resize</a>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, string $filter = ImageInterface::FILTER_UNDEFINED)
|
||||
<p>Resizes current image and returns self</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_rotate">rotate</a>(integer $angle, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $background = null)
|
||||
<p>Rotates an image at the given angle.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_paste">paste</a>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start)
|
||||
<p>Pastes an image into a parent image Throws exceptions if image exceeds parent image borders or if paste operation fails</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_save">save</a>(string $path, array $options = array())
|
||||
<p>Saves the image at a specified path, the target file extension is used to determine file format, only jpg, jpeg, gif, png, wbmp and xbm are supported</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_show">show</a>(string $format, array $options = array())
|
||||
<p>Outputs the image content</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_flipHorizontally">flipHorizontally</a>()
|
||||
<p>Flips current image using horizontal axis</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_flipVertically">flipVertically</a>()
|
||||
<p>Flips current image using vertical axis</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_strip">strip</a>()
|
||||
<p>Remove all profiles and comments</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_thumbnail">thumbnail</a>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, string $mode = self::THUMBNAIL_INSET)
|
||||
<p>Generates a thumbnail from a current image Returns it as a new image, doesn't modify the current image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_applyMask">applyMask</a>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $mask)
|
||||
<p>Applies a given mask to current image's alpha channel</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_fill">fill</a>(<a href="../../Imagine/Image/Fill/FillInterface.html"><abbr title="Imagine\Image\Fill\FillInterface">FillInterface</abbr></a> $fill)
|
||||
<p>Fills image with provided filling, by replacing each pixel's color in the current image with corresponding color from FillInterface, and returns modified image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_copy">
|
||||
<div class="location">at line 37</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>copy</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Copies current source image into a new ImageInterface instance</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_crop">
|
||||
<div class="location">at line 51</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>crop</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Crops a specified box out of the source image (modifies the source image) Returns cropped self</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/OutOfBoundsException"><abbr title="OutOfBoundsException">OutOfBoundsException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_resize">
|
||||
<div class="location">at line 63</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>resize</strong>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, string $filter = ImageInterface::FILTER_UNDEFINED)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Resizes current image and returns self</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$filter</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_rotate">
|
||||
<div class="location">at line 77</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>rotate</strong>(integer $angle, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $background = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Rotates an image at the given angle.</p>
|
||||
<p>Optional $background can be used to specify the fill color of the empty
|
||||
area of rotated image.</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$background</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_paste">
|
||||
<div class="location">at line 95</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>paste</strong>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Pastes an image into a parent image Throws exceptions if image exceeds parent image borders or if paste operation fails</p>
|
||||
<p>Returns source image</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/OutOfBoundsException"><abbr title="OutOfBoundsException">OutOfBoundsException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_save">
|
||||
<div class="location">at line 109</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>save</strong>(string $path, array $options = array())</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Saves the image at a specified path, the target file extension is used to determine file format, only jpg, jpeg, gif, png, wbmp and xbm are supported</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$path</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$options</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_show">
|
||||
<div class="location">at line 121</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>show</strong>(string $format, array $options = array())</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Outputs the image content</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$format</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$options</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_flipHorizontally">
|
||||
<div class="location">at line 130</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>flipHorizontally</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Flips current image using horizontal axis</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_flipVertically">
|
||||
<div class="location">at line 139</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>flipVertically</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Flips current image using vertical axis</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_strip">
|
||||
<div class="location">at line 148</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>strip</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Remove all profiles and comments</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_thumbnail">
|
||||
<div class="location">at line 161</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>thumbnail</strong>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, string $mode = self::THUMBNAIL_INSET)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Generates a thumbnail from a current image Returns it as a new image, doesn't modify the current image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$mode</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_applyMask">
|
||||
<div class="location">at line 170</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>applyMask</strong>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $mask)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Applies a given mask to current image's alpha channel</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$mask</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_fill">
|
||||
<div class="location">at line 181</div>
|
||||
<code> public <a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a>
|
||||
<strong>fill</strong>(<a href="../../Imagine/Image/Fill/FillInterface.html"><abbr title="Imagine\Image\Fill\FillInterface">FillInterface</abbr></a> $fill)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Fills image with provided filling, by replacing each pixel's color in the current image with corresponding color from FillInterface, and returns modified image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Fill/FillInterface.html"><abbr title="Imagine\Image\Fill\FillInterface">FillInterface</abbr></a></td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ManipulatorInterface.html"><abbr title="Imagine\Image\ManipulatorInterface">ManipulatorInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
305
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Point.html
vendored
Normal file
305
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Point.html
vendored
Normal file
@@ -0,0 +1,305 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Point | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Image.html">Imagine\Image</a>\Point</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Point</strong> implements
|
||||
<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The point class</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(integer $x, integer $y)
|
||||
<p>Constructs a point of coordinates</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getX">getX</a>()
|
||||
<p>Gets points x coordinate</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getY">getY</a>()
|
||||
<p>Gets points y coordinate</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_in">in</a>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $box)
|
||||
<p>Checks if current coordinate is inside a given bo</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_move">move</a>(integer $amount)
|
||||
<p>Returns another point, moved by a given amount from current coordinates</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___toString">__toString</a>()
|
||||
<p>Gets a string representation for the current point</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 39</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(integer $x, integer $y)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a point of coordinates</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$x</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$y</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getX">
|
||||
<div class="location">at line 54</div>
|
||||
<code> public integer
|
||||
<strong>getX</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets points x coordinate</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getY">
|
||||
<div class="location">at line 62</div>
|
||||
<code> public integer
|
||||
<strong>getY</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets points y coordinate</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_in">
|
||||
<div class="location">at line 70</div>
|
||||
<code> public Boolean
|
||||
<strong>in</strong>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $box)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Checks if current coordinate is inside a given bo</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$box</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_move">
|
||||
<div class="location">at line 78</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>move</strong>(integer $amount)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns another point, moved by a given amount from current coordinates</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$amount</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___toString">
|
||||
<div class="location">at line 86</div>
|
||||
<code> public string
|
||||
<strong>__toString</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets a string representation for the current point</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
289
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Point/Center.html
vendored
Normal file
289
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Point/Center.html
vendored
Normal file
@@ -0,0 +1,289 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Point\Center | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../../classes.html">Classes</a></li>
|
||||
<li><a href="../../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../../Imagine/Image/Point.html">Imagine\Image\Point</a>\Center</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Center</strong> implements
|
||||
<a href="../../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Point center</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $box)
|
||||
<p>Constructs coordinate with size instance, it needs to be relative to</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getX">getX</a>()
|
||||
<p>Gets points x coordinate</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getY">getY</a>()
|
||||
<p>Gets points y coordinate</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_in">in</a>(<a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $box)
|
||||
<p>Checks if current coordinate is inside a given bo</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_move">move</a>(integer $amount)
|
||||
<p>Returns another point, moved by a given amount from current coordinates</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___toString">__toString</a>()
|
||||
<p>Gets a string representation for the current point</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 33</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $box)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs coordinate with size instance, it needs to be relative to</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$box</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getX">
|
||||
<div class="location">at line 41</div>
|
||||
<code> public integer
|
||||
<strong>getX</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets points x coordinate</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getY">
|
||||
<div class="location">at line 49</div>
|
||||
<code> public integer
|
||||
<strong>getY</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets points y coordinate</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_in">
|
||||
<div class="location">at line 57</div>
|
||||
<code> public Boolean
|
||||
<strong>in</strong>(<a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $box)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Checks if current coordinate is inside a given bo</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$box</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_move">
|
||||
<div class="location">at line 65</div>
|
||||
<code> public <a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>move</strong>(integer $amount)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns another point, moved by a given amount from current coordinates</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$amount</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___toString">
|
||||
<div class="location">at line 73</div>
|
||||
<code> public string
|
||||
<strong>__toString</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets a string representation for the current point</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Point/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/Point/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\Point | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
251
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/PointInterface.html
vendored
Normal file
251
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/PointInterface.html
vendored
Normal file
@@ -0,0 +1,251 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image\PointInterface | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Interface</div>
|
||||
<h1><a href="../../Imagine/Image.html">Imagine\Image</a>\PointInterface</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>interface <strong>PointInterface</strong></p>
|
||||
|
||||
<div class="description">
|
||||
<p>The point interface</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getX">getX</a>()
|
||||
<p>Gets points x coordinate</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getY">getY</a>()
|
||||
<p>Gets points y coordinate</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_in">in</a>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $box)
|
||||
<p>Checks if current coordinate is inside a given bo</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_move">move</a>(integer $amount)
|
||||
<p>Returns another point, moved by a given amount from current coordinates</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___toString">__toString</a>()
|
||||
<p>Gets a string representation for the current point</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_getX">
|
||||
<div class="location">at line 27</div>
|
||||
<code> public integer
|
||||
<strong>getX</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets points x coordinate</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getY">
|
||||
<div class="location">at line 34</div>
|
||||
<code> public integer
|
||||
<strong>getY</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets points y coordinate</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_in">
|
||||
<div class="location">at line 43</div>
|
||||
<code> public Boolean
|
||||
<strong>in</strong>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $box)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Checks if current coordinate is inside a given bo</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$box</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_move">
|
||||
<div class="location">at line 51</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>move</strong>(integer $amount)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns another point, moved by a given amount from current coordinates</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$amount</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___toString">
|
||||
<div class="location">at line 58</div>
|
||||
<code> public string
|
||||
<strong>__toString</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets a string representation for the current point</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Image/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Image | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
59
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick.html
vendored
Normal file
59
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick.html
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Imagick | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Imagick</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Imagick/Drawer.html"><abbr title="Imagine\Imagick\Drawer">Drawer</abbr></a></td>
|
||||
<td class="last">Drawer implementation using the Imagick PHP extension</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Imagick/Effects.html"><abbr title="Imagine\Imagick\Effects">Effects</abbr></a></td>
|
||||
<td class="last">Effects implementation using the Imagick PHP extension</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Imagick/Font.html"><abbr title="Imagine\Imagick\Font">Font</abbr></a></td>
|
||||
<td class="last">Font implementation using the Imagick PHP extension</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Imagick/Image.html"><abbr title="Imagine\Imagick\Image">Image</abbr></a></td>
|
||||
<td class="last">Image implementation using the Imagick PHP extension</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Imagick/Imagine.html"><abbr title="Imagine\Imagick\Imagine">Imagine</abbr></a></td>
|
||||
<td class="last">Imagine implementation using the Imagick PHP extension</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Imagick/Layers.html"><abbr title="Imagine\Imagick\Layers">Layers</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
720
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/Drawer.html
vendored
Normal file
720
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/Drawer.html
vendored
Normal file
@@ -0,0 +1,720 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Imagick\Drawer | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Imagick.html">Imagine\Imagick</a>\Drawer</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Drawer</strong> implements
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Drawer implementation using the Imagick PHP extension</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<abbr title="Imagine\Imagick\Imagick">Imagick</abbr> $imagick)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_arc">arc</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)
|
||||
<p>Draws an arc on a starting at a given x, y coordinates under a given start and end angles</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_chord">chord</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Same as arc, but also connects end points with a straight line</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_ellipse">ellipse</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Draws and ellipse with center at the given x, y coordinates, and given width and height</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_line">line</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)
|
||||
<p>Draws a line from start(x, y) to end(x, y) coordinates</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_pieSlice">pieSlice</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Same as arc, but connects end points and the center</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_dot">dot</a>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Places a one pixel point at specific coordinates and fills it with specified color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_polygon">polygon</a>(array $coordinates, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)
|
||||
<p>Draws a polygon using array of x, y coordinates.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_text">text</a>(string $string, <a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> $font, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, integer $angle)
|
||||
<p>Annotates image with specified text at a given position starting on the top left of the final text box</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 36</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<abbr title="Imagine\Imagick\Imagick">Imagick</abbr> $imagick)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Imagick\Imagick">Imagick</abbr></td>
|
||||
<td>$imagick</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_arc">
|
||||
<div class="location">at line 44</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>arc</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws an arc on a starting at a given x, y coordinates under a given start and end angles</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_chord">
|
||||
<div class="location">at line 79</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>chord</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Same as arc, but also connects end points with a straight line</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_ellipse">
|
||||
<div class="location">at line 139</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>ellipse</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws and ellipse with center at the given x, y coordinates, and given width and height</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_line">
|
||||
<div class="location">at line 186</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>line</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $start, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws a line from start(x, y) to end(x, y) coordinates</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_pieSlice">
|
||||
<div class="location">at line 221</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>pieSlice</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $center, <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, integer $start, integer $end, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Same as arc, but connects end points and the center</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$center</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$start</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$end</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_dot">
|
||||
<div class="location">at line 255</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>dot</strong>(<a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Places a one pixel point at specific coordinates and fills it with specified color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_polygon">
|
||||
<div class="location">at line 286</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>polygon</strong>(array $coordinates, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color, Boolean $fill = false, integer $thickness = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Draws a polygon using array of x, y coordinates.</p>
|
||||
<p>Must contain at least
|
||||
three coordinates</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>array</td>
|
||||
<td>$coordinates</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>$fill</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$thickness</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_text">
|
||||
<div class="location">at line 336</div>
|
||||
<code> public <a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a>
|
||||
<strong>text</strong>(string $string, <a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> $font, <a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a> $position, integer $angle)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Annotates image with specified text at a given position starting on the top left of the final text box</p>
|
||||
<p>The rotation is done CW</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></td>
|
||||
<td>$font</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/PointInterface.html"><abbr title="Imagine\Image\PointInterface">PointInterface</abbr></a></td>
|
||||
<td>$position</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Draw/DrawerInterface.html"><abbr title="Imagine\Draw\DrawerInterface">DrawerInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Exception/RuntimeException.html"><abbr title="Imagine\Exception\RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
341
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/Effects.html
vendored
Normal file
341
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/Effects.html
vendored
Normal file
@@ -0,0 +1,341 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Imagick\Effects | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Imagick.html">Imagine\Imagick</a>\Effects</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Effects</strong> implements
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Effects implementation using the Imagick PHP extension</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<abbr title="Imagine\Imagick\Imagick">Imagick</abbr> $imagick)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_gamma">gamma</a>(<abbr title="Imagine\Effects\float">float</abbr> $correction)
|
||||
<p>Apply gamma correction</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_negative">negative</a>()
|
||||
<p>Invert the colors of the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_grayscale">grayscale</a>()
|
||||
<p>Grayscale the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_colorize">colorize</a>(<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Colorize the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_sharpen">sharpen</a>()
|
||||
<p>Sharpens the image</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 25</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<abbr title="Imagine\Imagick\Imagick">Imagick</abbr> $imagick)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Imagick\Imagick">Imagick</abbr></td>
|
||||
<td>$imagick</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_gamma">
|
||||
<div class="location">at line 33</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>gamma</strong>(<abbr title="Imagine\Effects\float">float</abbr> $correction)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Apply gamma correction</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Effects\float">float</abbr></td>
|
||||
<td>$correction</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_negative">
|
||||
<div class="location">at line 47</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>negative</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Invert the colors of the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_grayscale">
|
||||
<div class="location">at line 61</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>grayscale</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Grayscale the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_colorize">
|
||||
<div class="location">at line 75</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>colorize</strong>(<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Colorize the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_sharpen">
|
||||
<div class="location">at line 89</div>
|
||||
<code> public <a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a>
|
||||
<strong>sharpen</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Sharpens the image</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Effects/EffectsInterface.html"><abbr title="Imagine\Effects\EffectsInterface">EffectsInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
264
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/Font.html
vendored
Normal file
264
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/Font.html
vendored
Normal file
@@ -0,0 +1,264 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Imagick\Font | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Imagick.html">Imagine\Imagick</a>\Font</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Font</strong> extends <a href="../../Imagine/Image/AbstractFont.html"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Font implementation using the Imagick PHP extension</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<abbr title="Imagine\Imagick\Imagick">Imagick</abbr> $imagick, string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
string
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getFile">getFile</a>()
|
||||
<p>Gets the fontfile for current font</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractFont.html#method_getFile"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
integer
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getSize">getSize</a>()
|
||||
<p>Gets font's integer point size</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractFont.html#method_getSize"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_getColor">getColor</a>()
|
||||
<p>Gets font's color</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractFont.html#method_getColor"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_box">box</a>(string $string, integer $angle)
|
||||
<p>Gets BoxInterface of font size on the image based on string and angle</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 34</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<abbr title="Imagine\Imagick\Imagick">Imagick</abbr> $imagick, string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
<p>The font size is to be specified in points (e.g. 10pt means 10)</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Imagick\Imagick">Imagick</abbr></td>
|
||||
<td>$imagick</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$file</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getFile">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractFont.html#method_getFile"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> at line 55</div>
|
||||
<code>final public string
|
||||
<strong>getFile</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets the fontfile for current font</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getSize">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractFont.html#method_getSize"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> at line 63</div>
|
||||
<code>final public integer
|
||||
<strong>getSize</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets font's integer point size</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_getColor">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractFont.html#method_getColor"><abbr title="Imagine\Image\AbstractFont">AbstractFont</abbr></a> at line 71</div>
|
||||
<code>final public <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a>
|
||||
<strong>getColor</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets font's color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_box">
|
||||
<div class="location">at line 44</div>
|
||||
<code> public <a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a>
|
||||
<strong>box</strong>(string $string, integer $angle)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Gets BoxInterface of font size on the image based on string and angle</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$angle</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
1333
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/Image.html
vendored
Normal file
1333
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/Image.html
vendored
Normal file
File diff suppressed because it is too large
Load Diff
385
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/Imagine.html
vendored
Normal file
385
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/Imagine.html
vendored
Normal file
@@ -0,0 +1,385 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Imagick\Imagine | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Imagick.html">Imagine\Imagick</a>\Imagine</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Imagine</strong> implements
|
||||
<a href="../../Imagine/Image/ImagineInterface.html"><abbr title="Imagine\Image\ImagineInterface">ImagineInterface</abbr></a></p>
|
||||
|
||||
<div class="description">
|
||||
<p>Imagine implementation using the Imagick PHP extension</p>
|
||||
<p>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>()
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_open">open</a>(string $path)
|
||||
<p>Opens an existing image from $path</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_create">create</a>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color = null)
|
||||
<p>Creates a new empty image with an optional background color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_load">load</a>(string $string)
|
||||
<p>Loads an image from a binary $string</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_read">read</a>(<abbr title="Imagine\Image\resource">resource</abbr> $resource)
|
||||
<p>Loads an image from a resource $resource</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_font">font</a>(string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 28</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_open">
|
||||
<div class="location">at line 47</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>open</strong>(string $path)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Opens an existing image from $path</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$path</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_create">
|
||||
<div class="location">at line 70</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>create</strong>(<a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a> $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Creates a new empty image with an optional background color</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/BoxInterface.html"><abbr title="Imagine\Image\BoxInterface">BoxInterface</abbr></a></td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_load">
|
||||
<div class="location">at line 103</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>load</strong>(string $string)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Loads an image from a binary $string</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$string</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_read">
|
||||
<div class="location">at line 122</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>read</strong>(<abbr title="Imagine\Image\resource">resource</abbr> $resource)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Loads an image from a resource $resource</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Image\resource">resource</abbr></td>
|
||||
<td>$resource</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_font">
|
||||
<div class="location">at line 143</div>
|
||||
<code> public <a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a>
|
||||
<strong>font</strong>(string $file, integer $size, <a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a> $color)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Constructs a font with specified $file, $size and $color</p>
|
||||
<p>The font size is to be specified in points (e.g. 10pt means 10)</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$file</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$size</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/Color.html"><abbr title="Imagine\Image\Color">Color</abbr></a></td>
|
||||
<td>$color</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/FontInterface.html"><abbr title="Imagine\Image\FontInterface">FontInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
831
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/Layers.html
vendored
Normal file
831
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/Layers.html
vendored
Normal file
@@ -0,0 +1,831 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Imagick\Layers | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
<body id="class">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../../classes.html">Classes</a></li>
|
||||
<li><a href="../../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Class</div>
|
||||
<h1><a href="../../Imagine/Imagick.html">Imagine\Imagick</a>\Layers</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>class <strong>Layers</strong> extends <a href="../../Imagine/Image/AbstractLayers.html"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2>Methods</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_add">add</a>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Adds an image at the end of the layers stack</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_add"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_set">set</a>(integer $offset, <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)
|
||||
<p>Set an image at offset</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_set"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_remove">remove</a>(integer $offset)
|
||||
<p>Removes the image at offset</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_remove"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_get">get</a>(integer $offset)
|
||||
<p>Returns the image at offset</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_get"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
Boolean
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_has">has</a>(integer $offset)
|
||||
<p>Returns true if a layer at offset is preset</p>
|
||||
</td>
|
||||
<td><small>from <a href="../../Imagine/Image/AbstractLayers.html#method_has"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a></small></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method___construct">__construct</a>(<a href="../../Imagine/Imagick/Image.html"><abbr title="Imagine\Imagick\Image">Image</abbr></a> $image, <abbr title="Imagine\Imagick\Imagick">Imagick</abbr> $resource)
|
||||
<p>
|
||||
</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_merge">merge</a>()
|
||||
<p>Merge layers into the original objects</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
<a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_animate">animate</a>(string $format, integer $delay, integer $loops)
|
||||
<p>Animates layers</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_coalesce">coalesce</a>()
|
||||
<p>Coalesce layers.</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_current">current</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_key">key</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_next">next</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_rewind">rewind</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_valid">valid</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_count">count</a>()
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_offsetExists">offsetExists</a>($offset)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_offsetGet">offsetGet</a>($offset)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_offsetSet">offsetSet</a>($offset, $image)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="type">
|
||||
|
||||
</td>
|
||||
<td class="last">
|
||||
<a href="#method_offsetUnset">offsetUnset</a>($offset)
|
||||
<p>{@inheritdoc}</p>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<h3 id="method_add">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_add"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 22</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>add</strong>(<a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Adds an image at the end of the layers stack</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_set">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_set"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 32</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>set</strong>(integer $offset, <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a> $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Set an image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/OutOfBoundsException"><abbr title="OutOfBoundsException">OutOfBoundsException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_remove">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_remove"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 42</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>remove</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Removes the image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_get">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_get"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 52</div>
|
||||
<code> public <a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a>
|
||||
<strong>get</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns the image at offset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/ImageInterface.html"><abbr title="Imagine\Image\ImageInterface">ImageInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_has">
|
||||
<div class="location">in <a href="../../Imagine/Image/AbstractLayers.html#method_has"><abbr title="Imagine\Image\AbstractLayers">AbstractLayers</abbr></a> at line 60</div>
|
||||
<code> public Boolean
|
||||
<strong>has</strong>(integer $offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Returns true if a layer at offset is preset</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>Boolean</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method___construct">
|
||||
<div class="location">at line 39</div>
|
||||
<code> public
|
||||
<strong>__construct</strong>(<a href="../../Imagine/Imagick/Image.html"><abbr title="Imagine\Imagick\Image">Image</abbr></a> $image, <abbr title="Imagine\Imagick\Imagick">Imagick</abbr> $resource)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>
|
||||
</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Imagick/Image.html"><abbr title="Imagine\Imagick\Image">Image</abbr></a></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><abbr title="Imagine\Imagick\Imagick">Imagick</abbr></td>
|
||||
<td>$resource</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_merge">
|
||||
<div class="location">at line 48</div>
|
||||
<code> public
|
||||
<strong>merge</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Merge layers into the original objects</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_animate">
|
||||
<div class="location">at line 65</div>
|
||||
<code> public <a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a>
|
||||
<strong>animate</strong>(string $format, integer $delay, integer $loops)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Animates layers</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$format</td>
|
||||
<td>The output output format</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$delay</td>
|
||||
<td>The delay in milliseconds between two frames</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>integer</td>
|
||||
<td>$loops</td>
|
||||
<td>The number of loops, 0 means infinite</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Return Value</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../../Imagine/Image/LayersInterface.html"><abbr title="Imagine\Image\LayersInterface">LayersInterface</abbr></a></td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Exceptions</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="http://php.net/InvalidArgumentException"><abbr title="InvalidArgumentException">InvalidArgumentException</abbr></a></td>
|
||||
<td>In case an invalid argument is provided</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="http://php.net/RuntimeException"><abbr title="RuntimeException">RuntimeException</abbr></a></td>
|
||||
<td>In case the driver fails to animate</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_coalesce">
|
||||
<div class="location">at line 95</div>
|
||||
<code> public
|
||||
<strong>coalesce</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>Coalesce layers.</p>
|
||||
<p>Each layer in the sequence is the same size as the first and composited with the next layer in
|
||||
the sequence.</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_current">
|
||||
<div class="location">at line 121</div>
|
||||
<code> public
|
||||
<strong>current</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_key">
|
||||
<div class="location">at line 153</div>
|
||||
<code> public
|
||||
<strong>key</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_next">
|
||||
<div class="location">at line 161</div>
|
||||
<code> public
|
||||
<strong>next</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_rewind">
|
||||
<div class="location">at line 169</div>
|
||||
<code> public
|
||||
<strong>rewind</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_valid">
|
||||
<div class="location">at line 177</div>
|
||||
<code> public
|
||||
<strong>valid</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_count">
|
||||
<div class="location">at line 185</div>
|
||||
<code> public
|
||||
<strong>count</strong>()</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_offsetExists">
|
||||
<div class="location">at line 199</div>
|
||||
<code> public
|
||||
<strong>offsetExists</strong>($offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_offsetGet">
|
||||
<div class="location">at line 207</div>
|
||||
<code> public
|
||||
<strong>offsetGet</strong>($offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_offsetSet">
|
||||
<div class="location">at line 215</div>
|
||||
<code> public
|
||||
<strong>offsetSet</strong>($offset, $image)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$image</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 id="method_offsetUnset">
|
||||
<div class="location">at line 260</div>
|
||||
<code> public
|
||||
<strong>offsetUnset</strong>($offset)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
<p>{@inheritdoc}</p>
|
||||
<p>
|
||||
</p>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>$offset</td>
|
||||
<td>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/namespace-frame.html
vendored
Normal file
9
core/vendor/imagine/imagine/docs/API/API/Imagine/Imagick/namespace-frame.html
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Imagick | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
|
||||
</head>
|
||||
</html>
|
||||
39
core/vendor/imagine/imagine/docs/API/API/Imagine/Test.html
vendored
Normal file
39
core/vendor/imagine/imagine/docs/API/API/Imagine/Test.html
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="robots" content="index, follow, all" />
|
||||
<title>Imagine\Test | Imagine API</title>
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
|
||||
</head>
|
||||
<body id="overview">
|
||||
<div class="header">
|
||||
<ul>
|
||||
<li><a href="../classes.html">Classes</a></li>
|
||||
<li><a href="../namespaces.html">Namespaces</a></li>
|
||||
<li><a href="../interfaces.html">Interfaces</a></li>
|
||||
<li><a href="../doc-index.html">Index</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<div id="title">Imagine API</div>
|
||||
|
||||
<div class="type">Namespace</div>
|
||||
<h1>Imagine\Test</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<table>
|
||||
<tr>
|
||||
<td><a href="../Imagine/Test/ImagineTestCase.html"><abbr title="Imagine\Test\ImagineTestCase">ImagineTestCase</abbr></a></td>
|
||||
<td class="last">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="footer">
|
||||
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user