- Posts: 10
COMMUNITY FORUM
Stop K2 image resizing
- Rocio
-
Topic Author
- Offline
- New Member
For my website I need only one size image, so I would like to stop the auto-resizing and only have one image per item, because it makes images that occupy space in my disk.
Is there any way to do this?
Thanks!
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Rocio
-
Topic Author
- Offline
- New Member
- Posts: 10
I was wondering if touching the code it not possible neither?
Or is there a way to group images in folders, like:
/media/k2/items/cache/small
/media/k2/items/cache/medium
/media/k2/items/cache/large
/media/k2/items/cache/extra-large
So I can delete the ones I dont want
...
Thanks!
Please Log in or Create an account to join the conversation.
- Javi Mata
-
- Offline
- Senior Member
if you upload the images before this need upload again :-S
Twitter: @Javi_Mata
Web: www.javimata.com
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
The only way to stop K2 from generating thumbnails is to either use an image extrafield or use an image from the server.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Javi Mata
-
- Offline
- Senior Member
Twitter: @Javi_Mata
Web: www.javimata.com
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
It will show you the generic image, the one used in date/ search/ tag results.
If you want to show the original image something like this will do the trick
echo JURI::base(true).'/media/k2/items/src/'.md5("Image".$item->id).'.jpg';
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Joe Campbell
-
- Offline
- Platinum Member
- Posts: 438
Extra fields provides maximum flexibility, as you can use them for list images, item images, metadata, attachments, and more.
This way you do not have to worry about image processing (messing with quality and/or file names).
The only thing missing, and I will say it until I am blue in the face, is a "File" extra field type, so that you can upload and select files types such as doc, spreed sheets, pdfs, etc.
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
github.com/kricore/Advanced-templating-with-K2/blob/master/_inc/cheatsheet.php#L78-L82
Also I will +1 the file type request as well.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Joe Campbell
-
- Offline
- Platinum Member
- Posts: 438
As I often tell people, I use extra fields for 90% of my website - what can I say, I'm a CMS Control Freak - LOL
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Electronic Beatz Network
-
- Offline
- New Member
- Posts: 17
egculture.de/labels/electronic-groove-culture/artists
<? if(count($this->items)) { ?>
<div class="row">
<? foreach($this->items as $item) { ?><div class="col-xs-4 col-sm-3 col-md-2 col-lg-2">
<a href="<?=$item->link; ?>" class="thumbnail"><img class="img-thumbnail" src="<?=JURI::base(true).'/media/k2/items/src/'.md5("Image".$item->id).'.jpg'; ?>" alt="<? if(!empty($item->image_caption)) echo K2HelperUtilities::cleanHtml($item->image_caption); else echo K2HelperUtilities::cleanHtml($item->title); ?>" style="margin:5px;"/></a>
</div><? }?>
</div>
<? }?>
Background: I change the generic-imagesize in the backend a few times the last years. But the existing images weren't resized... so I had a tag-listing-view with x different image-sizes...
Please Log in or Create an account to join the conversation.
- JoomlaWorks
-
- Offline
- Admin
- Posts: 6227
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.