just noticed the selector Mini New Products Item actually resizes the images on the fly by setting the width="75" against the ProductImageFileName
Announcement
Collapse
No announcement yet.
Few Questions for V8
Collapse
X
-
-
I assume, being in the U.S., that a beta 8.0 is not available.
I guess, I will assume too, that I cannot download the U.K. version.
Will the U.S. version be available at the same time the U.K. version is released?
Edit/Delete MessageGot it working now but I notice that although it resizes the image dimensions it does not reduce the file size. If you are using one product per page then the image will be quite large in file size eg 30K so if you are using the new product/best seller side bar then you could end up with some heavy pages if you are not carefull.
<img src="<actinic:variable name="ProductImageFileName" />" width="75" />
with
<img src="<actinic:variable name="ProductThumbnailImageFileName" />" />
Comment
-
Good point. If you wanted to use the 'Thumbnail' field for the best sellers/new products, then click on the product name of an item in the new products/best sellers list then replace
Would there be a way to populate the thumbnail field without going through every product. It may be worth putting a note in the user guide about this.
Or is there a clever bit of code that could not only resize the image but compress it as well.
Comment
-
Would there be a way to populate the thumbnail field without going through every product. It may be worth putting a note in the user guide about this
I think Norman is looking at an automatic image resizer using PHP here - although I might have misunderstood.
Comment
-
I think Norman is looking at an automatic image resizer using PHP here - although I might have misunderstood.
Comment
-
Originally posted by cdicken<img src="<actinic:variable name="ProductThumbnailImageFileName" />" />
Comment
-
Re Automatic image resizer. That's easy to do. The PHP that's embedded into the Actinic App has the necessary GD image manipulation library available.
I can use that to process an image file and creat a new file containing a smaller image.
What I dont (yet) know how to do is to add this new image filename to the list of files that Actinic will then automatically upload.
If anyone has any input on this it would be very useful.Norman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
Comment
-
Comment