By Adam O. on Saturday, 15 December 2018
Replies 3
Likes 0
Views 2.7K
Votes 0
Hi there,

I would like to exclude from generating by EB images in this sizes: icon / medium/ thumbnail and small. I need to generate only large and original. How can I in code exclude this four dimensions? What file is reposinsible for it?

I'll be very grateful for your help with this thread!
Best regards!
Adam
Hey Adam,

The icon, medium, small and thumbnail are used in various places, specifically in the media manager because if you are rendering a lot of images in the media manager, it would take a while to render the large and original images.
·
Sunday, 16 December 2018 00:53
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mark, thank you for your reply.

I need to show image as big, as it can be, even if it will not have thumbnails at the bottom.

At now padding around images is huge and on standard resolution like 1366 x 768 photos looks small.

So in brief - I need to find file or line in .js code, to change dimension and padding around every photo


Best regards
Adam
·
Sunday, 16 December 2018 23:27
·
0 Likes
·
0 Votes
·
0 Comments
·
You can find the definitions of all the blog image sizes in the file /administrator/components/com_easyblog/defaults/configuration.ini

[gist]
main_image_large_width=1280
main_image_large_height=1280
main_image_large_quality=90
main_image_large_resize=within
main_image_medium_width=640
main_image_medium_height=640
main_image_medium_quality=90
main_image_medium_resize=within
main_image_thumbnail_width=480
main_image_thumbnail_height=480
main_image_thumbnail_quality=90
main_image_thumbnail_resize=within
main_image_small_width=320
main_image_small_height=320
main_image_small_quality=90
main_image_small_resize=within
main_image_icon_width=128
main_image_icon_height=128
main_image_icon_quality=70
main_image_icon_resize=within
[/gist]
·
Monday, 17 December 2018 14:01
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post