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.
1 parent 6a6a805 commit ef3d0adCopy full SHA for ef3d0ad
phpFlickr.php
@@ -361,12 +361,21 @@ function buildPhotoURL ($photo, $size = "Medium") {
361
//file size exists)
362
$sizes = array(
363
"square" => "_s",
364
+ "square_75" => "_s",
365
+ "square_150" => "_q",
366
"thumbnail" => "_t",
367
"small" => "_m",
368
+ "small_240" => "_m",
369
+ "small_320" => "_n",
370
"medium" => "",
371
+ "medium_500" => "",
372
"medium_640" => "_z",
373
+ "medium_800" => "_c",
374
"large" => "_b",
- "original" => "_o"
375
+ "large_1024" => "_b",
376
+ "large_1600" => "_h",
377
+ "large_2048" => "_k",
378
+ "original" => "_o",
379
);
380
381
$size = strtolower($size);
0 commit comments