Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d256fbcfc | |||
| 356c1885df | |||
| 5638476d71 | |||
| 1ddd50ec90 | |||
| f0fa8b6efc |
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: sur-le-sentier.fr\n"
|
"Project-Id-Version: sur-le-sentier.fr\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2024-12-14 11:46+0100\n"
|
"POT-Creation-Date: 2024-12-14 11:46+0100\n"
|
||||||
"PO-Revision-Date: 2024-12-14 13:41+0100\n"
|
"PO-Revision-Date: 2024-12-23 10:21+0100\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: French <bruno@clicclac.info>\n"
|
"Language-Team: French <bruno@clicclac.info>\n"
|
||||||
"Language: es_ES\n"
|
"Language: es_ES\n"
|
||||||
@@ -857,9 +857,8 @@ msgid "String"
|
|||||||
msgstr "Cadena"
|
msgstr "Cadena"
|
||||||
|
|
||||||
#: vegas/index.php:106
|
#: vegas/index.php:106
|
||||||
#, fuzzy
|
|
||||||
msgid "<span class=\"green\">Latest</span> images..."
|
msgid "<span class=\"green\">Latest</span> images..."
|
||||||
msgstr "<span class=« green »>Últimas</span> imágenes…"
|
msgstr "<span class=« green»>Últimas</span> imágenes…"
|
||||||
|
|
||||||
#: view_bdd.php:101 view_bdd.php:155 view_bdd2.php:280 view_bdd2.php:306
|
#: view_bdd.php:101 view_bdd.php:155 view_bdd2.php:280 view_bdd2.php:306
|
||||||
msgid "Suppress"
|
msgid "Suppress"
|
||||||
|
|||||||
@@ -80,7 +80,7 @@
|
|||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p class="navPage"><a href="index.php" title="<?php echo gettext("Home"); ?>"><?php echo gettext("Home"); ?></a> | <a href="photo-du-mois.php" title="<?php echo gettext("Picture of the month"); ?>"><?php echo gettext("Picture of the month"); ?></a> | <a href="maps.php" title="<?php echo gettext("Maps"); ?>"><?php echo gettext("Maps"); ?></a> | <a href="admin.php" title="<?php echo gettext("Admin page"); ?>"><?php echo gettext("Admin page"); ?></a></p>
|
<p class="navPage"><a href="../index.php" title="<?php echo gettext("Home"); ?>"><?php echo gettext("Home"); ?></a> | <a href="../photo-du-mois.php" title="<?php echo gettext("Picture of the month"); ?>"><?php echo gettext("Picture of the month"); ?></a> | <a href="../maps.php" title="<?php echo gettext("Maps"); ?>"><?php echo gettext("Maps"); ?></a> | <a href="admin.php" title="<?php echo gettext("Admin page"); ?>"><?php echo gettext("Admin page"); ?></a></p>
|
||||||
|
|
||||||
<p><em><small>© 2013-<?php echo date('Y'); ?> sur-le-sentier.fr</small></em></p>
|
<p><em><small>© 2013-<?php echo date('Y'); ?> sur-le-sentier.fr</small></em></p>
|
||||||
|
|
||||||
|
|||||||
@@ -108,16 +108,11 @@ $i = 1;
|
|||||||
$photos = array();
|
$photos = array();
|
||||||
|
|
||||||
foreach($dir as $file){
|
foreach($dir as $file){
|
||||||
/*
|
|
||||||
$file->getFilename()
|
|
||||||
pathName()
|
|
||||||
*/
|
|
||||||
$file = $file->getpathName();
|
$file = $file->getpathName();
|
||||||
//$file = $file->getFilename();
|
//$file = $file->getFilename();
|
||||||
echo $file;
|
|
||||||
|
|
||||||
$x = in_bdd($file);
|
$x = in_bdd($file);
|
||||||
echo $x;
|
|
||||||
/*
|
/*
|
||||||
if ($i > 5) {
|
if ($i > 5) {
|
||||||
break;
|
break;
|
||||||
@@ -653,6 +648,9 @@ try {
|
|||||||
$titre = $item['title']; // ***
|
$titre = $item['title']; // ***
|
||||||
$legende = $item['legende']; // ***
|
$legende = $item['legende']; // ***
|
||||||
|
|
||||||
|
|
||||||
|
# Create Thumbnails (functions.php line 203)
|
||||||
|
|
||||||
$big = $chemin . $file;
|
$big = $chemin . $file;
|
||||||
create_thumb($th_w, $th_h, $big);
|
create_thumb($th_w, $th_h, $big);
|
||||||
|
|
||||||
|
|||||||
@@ -201,12 +201,49 @@ function get_gps($exif) {
|
|||||||
|
|
||||||
|
|
||||||
function create_thumb($thumb_w, $thumb_h, $image) {
|
function create_thumb($thumb_w, $thumb_h, $image) {
|
||||||
|
global $chemin;
|
||||||
|
|
||||||
list($origin_w, $origin_h) = getimagesize($image);
|
list($origin_w, $origin_h) = getimagesize($image);
|
||||||
$origin_ratio = round($origin_w / $origin_h, 1);
|
$origin_ratio = round($origin_w / $origin_h, 1);
|
||||||
$outFile = str_replace("../photos/img", "../photos/thumb", $image);
|
$outFile = str_replace("img", "thumb", $chemin) . basename($image);
|
||||||
|
|
||||||
if ($origin_w != null && $origin_h != null) {
|
$new_w = 300;
|
||||||
|
$new_h = 200;
|
||||||
|
|
||||||
|
//$f = $chemin . $image;
|
||||||
|
$thumb = new Imagick($image);
|
||||||
|
|
||||||
|
if ($origin_w != null && $origin_h != null) {
|
||||||
|
if ($origin_w > $origin_h) {
|
||||||
|
|
||||||
|
$resize_w = $origin_w * $new_h / $origin_h;
|
||||||
|
$resize_h = $new_h;
|
||||||
|
|
||||||
|
//$thumb->resizeImage($resize_w, $resize_h, Imagick::FILTER_LANCZOS, 0.9);
|
||||||
|
$thumb->resizeImage($resize_w, $resize_h, Imagick::FILTER_CATROM, 0.9);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
|
||||||
|
$resize_w = $new_w;
|
||||||
|
$resize_h = $origin_h * $new_w / $origin_w; // 450
|
||||||
|
|
||||||
|
$thumb->resizeImage($resize_w, $resize_h, Imagick::FILTER_CATROM, 0.9); // 300 x 300
|
||||||
|
$thumb->cropImage($new_w, $new_h, ($resize_w - $new_w) / 2, ($resize_h - $new_h) / 2); // (w, h, x ,y) (xy coin haut gauche) (300, 200, 0, 125)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//$image->sharpenimage($radius, $sigma, $channel); // 5, 1
|
||||||
|
$thumb->sharpenimage(5, 1);
|
||||||
|
$thumb->setImageCompression(Imagick::COMPRESSION_ZIP);
|
||||||
|
// Set compression level (1 lowest quality, 100 highest quality)
|
||||||
|
$thumb->setImageCompressionQuality(75);
|
||||||
|
// Strip out unneeded meta data
|
||||||
|
$thumb->stripImage();
|
||||||
|
|
||||||
|
$thumb->writeImage($outFile);
|
||||||
|
$thumb->destroy();
|
||||||
|
|
||||||
|
/*
|
||||||
if ($thumb_w / $thumb_h > $origin_ratio) {
|
if ($thumb_w / $thumb_h > $origin_ratio) {
|
||||||
$thumb_w = $thumb_h * $origin_ratio;
|
$thumb_w = $thumb_h * $origin_ratio;
|
||||||
} else {
|
} else {
|
||||||
@@ -219,8 +256,11 @@ if ($origin_w != null && $origin_h != null) {
|
|||||||
$image->writeImage($outFile);
|
$image->writeImage($outFile);
|
||||||
$image->destroy();
|
$image->destroy();
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Fonction in_bdd(): test si la photo est déjà dans la bdd
|
/* Fonction in_bdd(): test si la photo est déjà dans la bdd
|
||||||
|
|
||||||
@@ -228,8 +268,10 @@ if ($origin_w != null && $origin_h != null) {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function in_bdd($image) {
|
function in_bdd($image) {
|
||||||
|
global $base;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$conn3 = new PDO('sqlite:../db_photo.sqlite3');
|
$conn3 = new PDO("sqlite:$base");
|
||||||
#$query3 = "SELECT filename FROM photos WHERE instr(filename, '". $file . "') > 0;";
|
#$query3 = "SELECT filename FROM photos WHERE instr(filename, '". $file . "') > 0;";
|
||||||
$query3 = "SELECT filename FROM photos WHERE filename = :filename";
|
$query3 = "SELECT filename FROM photos WHERE filename = :filename";
|
||||||
$stmt = $conn3->prepare($query3);
|
$stmt = $conn3->prepare($query3);
|
||||||
@@ -400,6 +442,11 @@ function data_for_lightbox($data) {
|
|||||||
$longitude = $data['long'];
|
$longitude = $data['long'];
|
||||||
$altitude = $data['alt'];
|
$altitude = $data['alt'];
|
||||||
|
|
||||||
|
$width = $data['width'];
|
||||||
|
$height = $data['height'];
|
||||||
|
|
||||||
|
//echo $width . "-" . $height;
|
||||||
|
|
||||||
$gps = (!empty($longitude) && !empty($latitude)) ? $latitude . "," . $longitude : "";
|
$gps = (!empty($longitude) && !empty($latitude)) ? $latitude . "," . $longitude : "";
|
||||||
//$gps = $longitude . "," . $latitude;
|
//$gps = $longitude . "," . $latitude;
|
||||||
|
|
||||||
@@ -488,6 +535,8 @@ function data_for_lightbox($data) {
|
|||||||
$lightbox['creator'] = $creator;
|
$lightbox['creator'] = $creator;
|
||||||
$lightbox['gps'] = $gps;
|
$lightbox['gps'] = $gps;
|
||||||
$lightbox['description'] = $description;
|
$lightbox['description'] = $description;
|
||||||
|
$lightbox['width'] = $width;
|
||||||
|
$lightbox['height'] = $height;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Array
|
Array
|
||||||
|
|||||||
71
maps.php
@@ -6,6 +6,10 @@ $domain = 'sentier';
|
|||||||
localize($domain);
|
localize($domain);
|
||||||
*/
|
*/
|
||||||
include 'functions.php';
|
include 'functions.php';
|
||||||
|
|
||||||
|
$base = 'db_photo.sqlite3';
|
||||||
|
$chemin = 'photos/img/';
|
||||||
|
$chemin_thumb = str_replace("img", "thumb", $chemin);
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
@@ -54,7 +58,7 @@ include 'functions.php';
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$conn4 = new PDO('sqlite:db_photo.sqlite3');
|
$conn4 = new PDO("sqlite:$base");
|
||||||
$query4 = "SELECT filename, filesize, dateoriginal, lens, speed, correctexpo, iso, usercomment, comment, model, metering, flash, focal, program, wb, mode, width, height, html, aperture, software, lat, long, alt, keywords, title, creator, city, department, code, country, copyright, legende FROM photos WHERE lat != '' ORDER BY dateoriginal DESC";
|
$query4 = "SELECT filename, filesize, dateoriginal, lens, speed, correctexpo, iso, usercomment, comment, model, metering, flash, focal, program, wb, mode, width, height, html, aperture, software, lat, long, alt, keywords, title, creator, city, department, code, country, copyright, legende FROM photos WHERE lat != '' ORDER BY dateoriginal DESC";
|
||||||
|
|
||||||
$stmt = $conn4->prepare($query4);
|
$stmt = $conn4->prepare($query4);
|
||||||
@@ -119,7 +123,8 @@ include 'functions.php';
|
|||||||
|
|
||||||
$lb = data_for_lightbox($result[$i]);
|
$lb = data_for_lightbox($result[$i]);
|
||||||
|
|
||||||
$b .= '[\'<div class="info_content"><h3>' . htmlspecialchars($lb['title_thumb'], ENT_QUOTES) . '</h3><div class="gm_thumb"><a href="' . $lb['big'] . '" title="' . htmlspecialchars($lb['title'], ENT_QUOTES) . '" data-lcl-txt="' . htmlspecialchars($lb['title'], ENT_QUOTES) . '" data-lcl-author="' . htmlspecialchars($lb['exif'], ENT_QUOTES) . '"><img src="' . $lb['thumb'] . '" /></a></div><p>' . htmlspecialchars($lb['title'], ENT_QUOTES) . '</p><p>' . htmlspecialchars($lb['legende'], ENT_QUOTES) . '</p><p>' . htmlspecialchars($lb['keywords'], ENT_QUOTES) . '</p></div>\'],' . "\r\n";
|
//$b .= '[\'<div class="info_content"><h3>' . htmlspecialchars($lb['title_thumb'], ENT_QUOTES) . '</h3><div class="gm_thumb"><a href="' . $lb['big'] . '" title="' . htmlspecialchars($lb['title'], ENT_QUOTES) . '" data-lcl-txt="' . htmlspecialchars($lb['title'], ENT_QUOTES) . '" data-lcl-author="' . htmlspecialchars($lb['exif'], ENT_QUOTES) . '"><img src="' . $lb['thumb'] . '" alt="' . htmlspecialchars($lb['title']) . '"></a></div><p>' . htmlspecialchars($lb['title'], ENT_QUOTES) . '</p><p>' . htmlspecialchars($lb['legende'], ENT_QUOTES) . '</p><p>' . htmlspecialchars($lb['keywords'], ENT_QUOTES) . '</p></div>\'],' . "\r\n";
|
||||||
|
$b .= '[\'<div class="info_content"><h3>' . htmlspecialchars($lb['title_thumb'], ENT_QUOTES) . '</h3><div class="gm_thumb"><a href="' . $lb['big'] . '" title="' . htmlspecialchars($lb['title']) . '" data-lcl-txt="' . htmlspecialchars($lb['description']) . '" data-lcl-author="' . htmlspecialchars($lb['creator']) . '"><img src="' . $lb['thumb'] . '" alt="' . htmlspecialchars($lb['title']) . '"></a></div><p>' . htmlspecialchars($lb['title'], ENT_QUOTES) . '</p><p>' . htmlspecialchars($lb['legende'], ENT_QUOTES) . '</p><p>' . htmlspecialchars($lb['keywords'], ENT_QUOTES) . '</p></div>\'],' . "\r\n";
|
||||||
}
|
}
|
||||||
$b = substr_replace($b, '', -3, 1);
|
$b = substr_replace($b, '', -3, 1);
|
||||||
echo $b;
|
echo $b;
|
||||||
@@ -174,23 +179,51 @@ include 'functions.php';
|
|||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
|
||||||
var $obj = lc_lightbox('.gm_thumb a', {
|
var $obj = lc_lightbox('.gm_thumb a', {
|
||||||
img_zoom : true,
|
|
||||||
open_close_time : 200,
|
img_zoom : true, // whether to enable zooming system
|
||||||
ol_time_diff : 100,
|
author_by_txt : '<?php echo gettext("by"); ?>', // which text is used before the author name, by default is "by"
|
||||||
wrap_class : 'lcl_zoomin_oc',
|
|
||||||
skin : 'minimal', // minimal | light | dark
|
slideshow : true, // whether to enable slideshow
|
||||||
data_position : 'over',
|
open_close_time : 200, // durée de l'animation pour l'ouverture et la fermeture de la lightbox
|
||||||
cmd_position : 'inner',
|
ol_time_diff : 100, // animation de superposition avance (à l'ouverture) et retard (à la fermeture) à la fenêtre
|
||||||
txt_hidden : false,
|
fading_time : 50, // durée de l'animation de fondu des éléments
|
||||||
//shox_title : true, // s'il faut afficher les titres
|
animation_time : 100,
|
||||||
show_descr : false, // s'il faut afficher les descriptions
|
slideshow_time : 4000, // durée de l'intervalle du diaporama
|
||||||
//show_author : true, // s'il faut afficher les auteurs
|
autoplay : false, // autoplay slideshow - bool
|
||||||
fullscreen : true,
|
counter : false, // s'il faut afficher le compteur d'éléments
|
||||||
fs_img_behavior : 'smart',
|
progressbar : false, // s'il faut afficher une barre de progression lors de l'exécution du diaporama
|
||||||
fs_only : 500,
|
|
||||||
browser_fs_mode : true,
|
max_width : '95%', // largeur maximale de la lightbox
|
||||||
txt_toggle_cmd : true,
|
max_height : '95%', // hauteur maximale de la lightbox
|
||||||
rclick_prevent : true,
|
ol_opacity : 0.7, // overlay opacity / value between 0 and 1
|
||||||
|
ol_color : '#111', // background color of the overlay
|
||||||
|
ol_pattern : false, // overlay patterns - insert the pattern name or false
|
||||||
|
|
||||||
|
wrap_class : 'lcl_fade_oc', // Classes personnalisées ajoutées au wrapper: effet à l'ouverture de la lb (lcl_fade_oc | lcl_zoomin_oc | lcl_rtl_oc)
|
||||||
|
skin : 'minimal', // minimal | light | dark
|
||||||
|
data_position : 'over', // Spécifie où les données des éléments seront affichées. Les modes disponibles sont :over, under|rside|lside
|
||||||
|
cmd_position : 'inner', // Déclare où les commandes doivent être affichées : inner|outer
|
||||||
|
ins_close_pos : 'normal', // set closing button position for inner commands - normal/corner
|
||||||
|
nav_btn_pos : 'normal', // Régle les flèches et la position de lecture/pause. Options disponibles: normal|middle
|
||||||
|
|
||||||
|
txt_hidden : true, // whether to hide texts on lightbox opening - bool or int (related to browser's smaller side)
|
||||||
|
shox_title : true, // s'il faut afficher les titres
|
||||||
|
show_descr : true, // s'il faut afficher les descriptions
|
||||||
|
show_author : true, // s'il faut afficher les auteurs
|
||||||
|
|
||||||
|
thumbs_nav : false, // permet la navigation par vignettes (nécessite des éléments affiche ou images)
|
||||||
|
|
||||||
|
fullscreen : true, // Autoriser ou non le mode plein écran
|
||||||
|
fs_img_behavior : 'smart', //Comportement de l'image en plein écran : fit|fill|smart
|
||||||
|
fs_only : 500, // s'il faut utiliser uniquement l'ouverture de la lightbox en mode plein écran (utile pour les appareils mobiles) : false | (integer)
|
||||||
|
browser_fs_mode : true, // utiliser ou non le mode plein écran du navigateur
|
||||||
|
|
||||||
|
txt_toggle_cmd : true, // s'il faut afficher le bouton de basculement du texte de l'élément
|
||||||
|
download : true, // whether to show element's file download button
|
||||||
|
autoplay_videos : false, // bool / whether to autoplay videos (NB: modern browsers ignore this for deeplinked elements. Not applied if video has poster)
|
||||||
|
touchswipe : true, // permet les interactions tactiles (nécessite AlloyFinger)
|
||||||
|
rclick_prevent : true, // s'il faut éviter le clic droit sur les éléments de la lightbox
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -56,6 +56,7 @@ else $page = intval($_GET['page']);
|
|||||||
|
|
||||||
<?php
|
<?php
|
||||||
$chemin = 'photos/img/';
|
$chemin = 'photos/img/';
|
||||||
|
$chemin_thumb = str_replace("img", "thumb", $chemin);
|
||||||
|
|
||||||
$base = 'db_photo.sqlite3';
|
$base = 'db_photo.sqlite3';
|
||||||
|
|
||||||
@@ -189,11 +190,32 @@ else exit("Database " . $base . " does not exist !");
|
|||||||
$meta = '';
|
$meta = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
echo '<div class="item">';
|
echo '<div class="item">';
|
||||||
|
|
||||||
echo '<a href ="' . $lb['big'] . '" title="' . htmlspecialchars($lb['title']) . '" data-lcl-txt="' . htmlspecialchars($lb['description']) . '" data-lcl-author="' . htmlspecialchars($lb['creator']) . '">';
|
echo '<a href ="' . $lb['big'] . '" title="' . htmlspecialchars($lb['title']) . '" data-lcl-txt="' . htmlspecialchars($lb['description']) . '" data-lcl-author="' . htmlspecialchars($lb['creator']) . '">';
|
||||||
|
/*
|
||||||
|
if ($lb['width'] > $lb['height']) {
|
||||||
|
echo '<img src="' . $lb['thumb'] . '" alt="' . htmlspecialchars($lb['title']) . '">';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$f = $chemin . $result[$i]['filename'];
|
||||||
|
$image = new Imagick($f);
|
||||||
|
|
||||||
|
$new_w = 300;
|
||||||
|
$new_h = 200;
|
||||||
|
|
||||||
|
$resize_w = $new_w;
|
||||||
|
$resize_h = $lb['height'] * $new_w / $lb['width']; // 450
|
||||||
|
|
||||||
|
$image->resizeImage($resize_w, $resize_h, Imagick::FILTER_LANCZOS, 0.9); // 300 x 300
|
||||||
|
$image->cropImage($new_w, $new_h, ($resize_w - $new_w) / 2, ($resize_h - $new_h) / 2); // (w, h, x ,y) (xy coin haut gauche) (300, 200, 0, 125)
|
||||||
|
|
||||||
|
$thu = $chemin_thumb ."_" . $result[$i]['filename'];;
|
||||||
|
$image->writeImage($thu);
|
||||||
|
|
||||||
|
echo '<img src="' . $thu . '" alt="' . htmlspecialchars($lb['title']) . '">';
|
||||||
|
}
|
||||||
|
*/
|
||||||
echo '<img src="' . $lb['thumb'] . '" alt="' . htmlspecialchars($lb['title']) . '">';
|
echo '<img src="' . $lb['thumb'] . '" alt="' . htmlspecialchars($lb['title']) . '">';
|
||||||
echo "</a>";
|
echo "</a>";
|
||||||
echo '<span class="caption">' . month($date) . '</span>';
|
echo '<span class="caption">' . month($date) . '</span>';
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 333 KiB |
|
Before Width: | Height: | Size: 105 KiB |
|
Before Width: | Height: | Size: 330 KiB |
|
Before Width: | Height: | Size: 203 KiB |
|
Before Width: | Height: | Size: 145 KiB |
|
Before Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 433 KiB After Width: | Height: | Size: 894 KiB |
BIN
photos/img/12_2024.jpg
Normal file
|
After Width: | Height: | Size: 943 KiB |
BIN
photos/img/1_2025.jpg
Normal file
|
After Width: | Height: | Size: 592 KiB |
|
Before Width: | Height: | Size: 9.3 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 7.1 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 7.5 KiB |
|
Before Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 8.9 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 8.0 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 8.9 KiB |
|
Before Width: | Height: | Size: 8.8 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 9.2 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 8.8 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 8.9 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 9.6 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 7.7 KiB |
|
Before Width: | Height: | Size: 6.1 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 7.5 KiB |
|
Before Width: | Height: | Size: 8.5 KiB |