CMS Eleanor - Поиск
Полная версия этой страницы: Официальный форум Eleanor CMS » Расширенная поддержка работы с изображениями для Eleanor CMS
Официальный форум Eleanor CMS » Поддержка пользователей системы Eleanor CMS » Секреты и советы
Loader

Нашёл на просторах интернета замечательный класс для работы с изображениями - SimpleImage, и адаптировал его к Eleanor CMS. Поскольку встроенные средства для этого у RC5 мягко говоря слабенькие.

Лицензия проги гласит:
Цитата
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.


Как пользоваться:
1.Закинуть приложенный файл в classes/others/    

2.Далее инструкция по пользованию такова: :)

Цитата
The first example below will load a file named picture.jpg resize it to 250 pixels wide and 400 pixels high and resave it as picture2.jpg
<?php
include $Mainclass->root_path.'classes/others/class_simpleimage.php';
$image = new SimpleImage();
$image->load('picture.jpg');
$image->resize(250,400);
$image->save('picture2.jpg');
?>

If you want to resize to a specifed width but keep the dimensions ratio the same then the script can work out the required height for you, just use the resizeToWidth function.
<?php
include $Mainclass->root_path.'classes/others/class_simpleimage.php';
$image = new SimpleImage();
$image->load('picture.jpg');
$image->resizeToWidth(250);
$image->save('picture2.jpg');
?>

You may wish to scale an image to a specified percentage like the following which will resize the image to 50% of its original width and height
<?php
include $Mainclass->root_path.'classes/others/class_simpleimage.php';
$image = new SimpleImage();
$image->load('picture.jpg');
$image->scale(50);
$image->save('picture2.jpg');
?>

You can of course do more than one thing at once. The following example will create two new images with heights of 200 pixels and 500 pixels
<?php
include $Mainclass->root_path.'classes/others/class_simpleimage.php';
$image = new SimpleImage();
$image->load('picture.jpg');
$image->resizeToHeight(500);
$image->save('picture2.jpg');
$image->resizeToHeight(200);
$image->save('picture3.jpg');
?>

The output function lets you output the image straight to the browser without having to save the file. Its useful for on the fly thumbnail generation
<?php
header('Content-Type: image/jpeg');
include $Mainclass->root_path.'classes/others/class_simpleimage.php';
$image = new SimpleImage();
$image->load('picture.jpg');
$image->resizeToWidth(150);
$image->output();
?>

The following example will resize and save an image which has been uploaded via a form
<?php
if( isset($_POST['submit']) ) {
include $Mainclass->root_path.'classes/others/class_simpleimage.php';
$image = new SimpleImage();
$image->load($_FILES['uploaded_image']['tmp_name']);
$image->resizeToWidth(150);
$image->output();
} else {
?>
<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="uploaded_image" />
<input type="submit" name="submit" value="Upload" />
</form>
<?php
}
?>
Djadka
Пример работы можно?
7Azimuth
Да, пример не помешал бы.
Loader
Цитата (Djadka @ 2024-03-29 14:23)
Пример работы можно?

Цитата (7Azimuth @ 2024-03-29 14:23)
Да, пример не помешал бы.

Вы чего? :blink: Там полно примеров!

Цитата
The first example below will load a file named picture.jpg resize it to 250 pixels wide and 400 pixels high and resave it as picture2.jpg
<?php
include $Mainclass->root_path.'classes/others/class_simpleimage.php';
$image = new SimpleImage();
$image->load('picture.jpg');
$image->resize(250,400);
$image->save('picture2.jpg');
?>

If you want to resize to a specifed width but keep the dimensions ratio the same then the script can work out the required height for you, just use the resizeToWidth function.
<?php
include $Mainclass->root_path.'classes/others/class_simpleimage.php';
$image = new SimpleImage();
$image->load('picture.jpg');
$image->resizeToWidth(250);
$image->save('picture2.jpg');
?>

You may wish to scale an image to a specified percentage like the following which will resize the image to 50% of its original width and height
<?php
include $Mainclass->root_path.'classes/others/class_simpleimage.php';
$image = new SimpleImage();
$image->load('picture.jpg');
$image->scale(50);
$image->save('picture2.jpg');
?>

You can of course do more than one thing at once. The following example will create two new images with heights of 200 pixels and 500 pixels
<?php
include $Mainclass->root_path.'classes/others/class_simpleimage.php';
$image = new SimpleImage();
$image->load('picture.jpg');
$image->resizeToHeight(500);
$image->save('picture2.jpg');
$image->resizeToHeight(200);
$image->save('picture3.jpg');
?>

The output function lets you output the image straight to the browser without having to save the file. Its useful for on the fly thumbnail generation
<?php
header('Content-Type: image/jpeg');
include $Mainclass->root_path.'classes/others/class_simpleimage.php';
$image = new SimpleImage();
$image->load('picture.jpg');
$image->resizeToWidth(150);
$image->output();
?>

The following example will resize and save an image which has been uploaded via a form
<?php
if( isset($_POST['submit']) ) {
include $Mainclass->root_path.'classes/others/class_simpleimage.php';
$image = new SimpleImage();
$image->load($_FILES['uploaded_image']['tmp_name']);
$image->resizeToWidth(150);
$image->output();
} else {
?>
<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="uploaded_image" />
<input type="submit" name="submit" value="Upload" />
</form>
<?php
}
?>
Djadka
Да я имел в виду на сайте где-нибудь пример что бы посмотреть как работает, а не как использовать.
Loader
Цитата (Djadka @ 2024-03-29 14:23)
Да я имел в виду на сайте где-нибудь пример что бы посмотреть как работает, а не как использовать.

На моём сайте - в блоке "Случайный фильм"
Для просмотра полной версии этой страницы, пожалуйста, пройдите по ссылке.