לדלג לתוכן

קובץ:Leucospermum cultivar gradual decrease of quality.jpg

תוכן הדף אינו נתמך בשפות אחרות.
מתוך ויקיפדיה, האנציקלופדיה החופשית

לקובץ המקורי(1,805 × 1,200 פיקסלים, גודל הקובץ: 876 ק"ב, סוג MIME‏: image/jpeg)

ויקישיתוף זהו קובץ שמקורו במיזם ויקישיתוף. תיאורו בדף תיאור הקובץ המקורי (בעברית) מוצג למטה.

תקציר

תיאור
English: Visualization of decreasing JPEG quality, with lowest quality in the middle, and highest at the left and right.
תאריך יצירה
מקור File:Leucospermum cultivar.jpg
יוצר original made by User:Flying Freddy; I've applied an algorithm to visualize JPEG compression
גרסאות אחרות

Following code was used to modify the original image:

#!/usr/bin/perl 
use strict;
use warnings;
use v5.12;
use File::Temp qw/ tempdir /;
use Graphics::Magick;
use Math::Round qw(:all);
my $p = new Graphics::Magick;
$p->Read("Leucospermum_cultivar.jpg");
my ($width, $height) = $p->Get('width', 'height');
my $center = $width/2;
my $result = new Graphics::Magick;
$result->Set(size=>"${width}x${height}");
$result->Read();
$result->Set('quality', 100);
my $dir = tempdir(CLEANUP => 1);
my $chop = 16; # 1 MCU normally
for my $col (0..$width) {
	next if $col%$chop; 
	my $current = $p->Clone();
	$current->Crop(width => $chop, height => $height, x => $col, y => 0);
	$current->Set('quality' => round_even(100*abs(($col-$center)/$center)));
	my $filename = sprintf "%s/%05d.jpg", $dir, $col;
	$current->Write($filename);
	my $n = new Graphics::Magick;
	$n->Read($filename);
	$result->Composite( image => $n, x => $col, y => 0);
}
$result->Write('Leucospermum_cultivar_gradual_decrease_of_quality.jpg');

רישיון

w:he:Creative Commons
ייחוס שיתוף זהה
הקובץ הזה מתפרסם לפי תנאי רישיון קריאייטיב קומונז ייחוס-שיתוף זהה 3.0 לא מותאם.
הנכם רשאים:
  • לשתף – להעתיק, להפיץ ולהעביר את העבודה
  • לערבב בין עבודות – להתאים את העבודה
תחת התנאים הבאים:
  • ייחוס – יש לתת ייחוס הולם, לתת קישור לרישיון, ולציין אם נעשו שינויים. אפשר לעשות את זה בכל צורה סבירה, אבל לא בשום צורה שמשתמע ממנה שמעניק הרישיון תומך בך או בשימוש שלך.
  • שיתוף זהה – אם תיצרו רמיקס, תשנו, או תבנו על החומר, חובה עליכם להפיץ את התרומות שלך לפי תנאי רישיון זהה או תואם למקור.

כיתובים

נא להוסיף משפט שמסביר מה הקובץ מייצג

פריטים שמוצגים בקובץ הזה

מוצג

היסטוריית הקובץ

ניתן ללחוץ על תאריך/שעה כדי לראות את הקובץ כפי שנראה באותו זמן.

תאריך/שעהתמונה ממוזערתממדיםמשתמשהערה
נוכחית21:03, 16 בספטמבר 2011תמונה ממוזערת לגרסה מ־21:03, 16 בספטמבר 2011‪1,200 × 1,805‬ (876 ק"ב)AzaToth

אין בוויקיפדיה דפים המשתמשים בקובץ זה.

מטא־נתונים