I'm looking for an extension in TYPO3 6.2 which does basically the same as the build-in image manipulation feature in TYPO3 7.
So far i had a look on following extensions:
k23_imagecrop - works, but only usable in filelist module and you cant see any pixel values
image_crop - no graphical ui
nwt_imagecrop - no graphical ui
Has anybody a good solution for this?
There is nothing more. Please think about upgrading!
Related
In my typo3 7.6.19 Website I want to user the flexslider plugin.
That works fine, my problem is that the image is a cropped one and not the original file I uploaded.
How can I change it to use the original picture?
Thanks in advance
The plugin sets up a TypoScript constant
plugin.tx_wsflexslider.maxwidth=800px
You can modify this value in your TypoScript template (Module Template > Constant Editor > select "PLUGIN.TX_WSFLEXSLIDER"
About your other problem that is artifacts in the reduced image, I think that when resizing an image from 2550px to 800px, it is probable that the quality will be reduced :) You could check those settings in Install Tool >All Configuration > Image Processing [GFX] and see if you can improve them.
A last word: I would not use images of 2550px, it seems that they will be very heavy! I would try to set a compromise (e.g. plugin.tx_wsflexslider.maxwidth=1200px).
You could also evalutate the extension EXT:image_autoresize https://extensions.typo3.org/extension/image_autoresize/
to automatically resize the images when uploading them and limit the weight or dimensions of the images that your editor will upload.
From this answer typo3 uses crop images how can I avoid this I see that (of course) you can also modify the partial that renders the image and avoid using the TypoScript constants at all, but for the reasons I mentioned above, I would not recommend it.
In TYPO3 10.4.x and ws_slider 0.9.8, it was not a constant but:
<f:image image="{item.foregroundMedia.0}" maxWidth="600" />
in
Resources/Private/Partials/Item/Flexslider.html
In TYPO3 7.6, I used the TYPO3 icon API to display an icon for a new CType.
All worked well on the local machine.
After copying the code to a staging-machine, the icons I used are displayed as "missing" (i.e. the red "default-not-found"-icon is displayed instead.)
If I change my icon to a more common one, like "content-table", it is correctly shown. If I change it to a less popular like "content-briefcase", the default-icon is shown.
Deleting chaches didn't solve the problem.
Do I have to activate/load the icons before use?
The problem seems to be depending on the minor version.
I tried it with TYPO3 7.6.15.
There, some of the icon-files where missing in typo3/sysext/core/Resources/Public/Icons/T3Icons/content
After update to TYPO3 7.6.19 everything works as expected
I got a weired problem with my RTE after updating to 7.6.15. it looks like this
htmlarea buttons without icons
It seems, that the spritesheet "actions.png" (typo3/sysext/t3skin/rtehtmlarea/images/sprites) is not loaded.
Any ideas why?
have you checked the usual information?
does the file exist?
is the file accessible?
what does the browser (e.g. firebug) report? (console, net)
I notice some problems with the icons when the mod_pagespeed was installed. Maybe you have this also installed. Disabling is then required for the backend.
i got the same problem and a frame (where the rte is in) reload does the trick.
Im working on a website using typo3 and the image handler being used is GraphicMagick. At an certain page im displaying an Latest view news item.
This news item contains an media pdf file.
So when I visit that page I will see an Thumb of that pdf since that is being created by GraphicMagick and stored in my typo3temp folder.
Now the real question is.. that this gif file, is like 10-15% transparent at the top.
I have no idea how this comes.. the settings in the installation tool look similar to the onces I use on a different website.
Did anybody see this before and knows how I might resolve this ?
I'm using the following versions:
Typo3: 6.2.11
imagehandler: Graphics Magick
[GFX][thumbnails_png] = 1
Solved it for me, gifs gave me a problem
We recently moved a working installation of our typo3 website to another server and now some images are displayed wrong. They are being resized (displayed smaller than they actually are) and the anchor tag has this source:
src="/index.php?eID=tx_nawsecuredl&u=0&g=0&t=138......b&file=fileadmin/templates/../images/clear.gif"
As you can see, we use the naw_securedl extension. When I remove everything of the link until fileadmin (/index.php?eID=tx_nawsecuredl&u=0&g=0&t=138......b&file=) the image works, but of course this is not the sense of securedl.
Does anyone know a solution for this? I tried to figure out that is could be the setting "linkFormat" which is currently set to
/index.php?eID=tx_nawsecuredl&u=###FEUSER###&g=###FEGROUPS###&t=###TIMEOUT###&hash=###HASH###&file=###FILE###
and I updated the .htaccess file but it doesn't change anything...
Any help is appreciated. Thanks!