We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b5955ce + ef3d0ad commit 15a7823Copy full SHA for 15a7823
phpFlickr.php
@@ -370,12 +370,21 @@ function buildPhotoURL ($photo, $size = "Medium") {
370
//file size exists)
371
$sizes = array(
372
"square" => "_s",
373
+ "square_75" => "_s",
374
+ "square_150" => "_q",
375
"thumbnail" => "_t",
376
"small" => "_m",
377
+ "small_240" => "_m",
378
+ "small_320" => "_n",
379
"medium" => "",
380
+ "medium_500" => "",
381
"medium_640" => "_z",
382
+ "medium_800" => "_c",
383
"large" => "_b",
- "original" => "_o"
384
+ "large_1024" => "_b",
385
+ "large_1600" => "_h",
386
+ "large_2048" => "_k",
387
+ "original" => "_o",
388
);
389
390
$size = strtolower($size);
0 commit comments