I have spent quite a lot of time optimising the performance of this site, and as part of ongoing work I monitor new technologies that could help improve the speed for visitors. I’ve been tracking the adoption of next-generation image formats for a while and with support by web browsers now fairly widespread it was time to figure out how to make use of these new formats in wordpress.
There are multiple steps required which I have broken down into headings below
Nginx में समर्थन सक्षम करें
The first step is to enable your web server (मेरे मामले में nginx) to recognise the mime types of the new formats. ऐसा करने के लिए आपको mime.types को संपादित करने की आवश्यकता है जो कि /etc/nginx/mime.types पर मिलने की संभावना है. I added the following section
/ सामग्री नियमों का उल्लंघन करती है नियमों का उल्लंघन करती है; छवि/हीफ हेइफ़; छवि/हेइक-अनुक्रम heics; छवि/हेफ-सीक्वेंस हीफ्स; छवि/एविफ एविफ; छवि / एविफ-अनुक्रम समीक्षा; छवि / जेएक्सएल जेएक्सएल;
स्वचालित रूप से उन फ़ाइलों की सेवा करें जहां वे उपलब्ध हैं
The next step is to tell nginx to serve files automatically whenever they exist (and to fall back to older formats where a new format file doesn’t exist)
To do this first edit the main nginx config file (usually /etc/nginx/nginx.conf) and add the following section inside the http{} section of the config
नक्शा $http_स्वीकार $img_ext { ~ छवि / जेएक्सएल '.जेएक्सएल'; ~छवि/एविफ '.एविफ'; ~छवि/वेबप '.वेबप'; चूक ''; }
Note that I am only trying to serve jxl (जेपीईजी-एक्स्ट्रा लार्ज) या AVIF फ़ाइलें, आप और विकल्प जोड़ सकते हैं (in order of preference!) यदि आप चाहते हैं.
आगामी, you need to add the following under the server{} section of the nginx config (which may be in the main config file or may be in a separate config file depending how you’ve set up your nginx config structure)
स्थान ~* ^.+.(png|जेपीजी|जेपीईजी)$ { add_header भिन्न स्वीकार करें; try_files $uri$img_ext $uri =404; }
Now nginx will look for image.jpg.jxl and then image.jpg.avif and then image.jpg.webp and finally image.jpg when it is asked for image.jpg by any browsers that support the newer formats. आगे हमें उन्हें वर्डप्रेस में सक्षम करना होगा
वर्डप्रेस में नेक्स्ट-जेन फॉर्मेट को इनेबल करें
Add the following code to your functions.php (आदर्श रूप से इसे चाइल्ड थीम में करें ताकि जब आप अपनी थीम को अपडेट करें तो आपके परिवर्तन ओवर-लिखे न हों)
/***************************************************\ * सक्षम करें एसवीजी समर्थन और अन्य आधुनिक छवि प्रारूप * \***************************************************/ समारोह cc_mime_types( $माइम्स ) { $माइम्स['एसवीजी'] = 'इमेज/एसवीजी+एक्सएमएल'; $माइम्स['वेबप'] = 'छवि/वेबपी'; $माइम्स["उल्लंघन"] = "छवि / अकुशल '; $माइम्स['बछिया'] = 'इमेज/हीफ'; $माइम्स['हेक्स'] = "छवि / नियम-अनुक्रम का उल्लंघन '; $माइम्स['बछिया'] = 'इमेज/हीफ-सीक्वेंस'; $माइम्स['अविफ'] = 'छवि/अविफ'; $माइम्स['सूचना'] = 'इमेज/एविफ-सीक्वेंस'; $माइम्स['जेएक्सएल'] = 'छवि / जेएक्सएल'; $mimes return लौटाएं; } add_filter( 'अपलोड_माइम्स', 'cc_mime_types' );
Note that I also enabled support for एसवीजी एक ही समय में चित्र
Now you can actually upload next gen format images and use them directly in wordpress if you want to, but I don’t recommend this as many older browsers don’t support them yet — and we’ve already set up nginx to serve them intelligently so we should make use of that. What we want to do is to automatically generate the new formats when we upload images (there are plugins that do this for webp already, but nothing that does it for jxl or avif yet).
libheif . स्थापित करें
This step does require access to the command line of your web host, which is straight-forward if you run a वीपीएस, but may not be so simple if you’re on shared hosting in which case you might need to ask your host for support
Run the following bash commands (these are selected for Centos 8, other distributions may be a little different)
dnf -y install --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm https://download1.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-8.noarch.rpm
dnf -y install libheif
सभी अपलोड की गई छवियों को संपीड़ित करने के लिए WordPress functions.php में कस्टम फ़ंक्शन जोड़ें (और उनके थंबनेल) एविफ़ प्रारूप के लिए
As with the earlier functions.php step I recommend adding this in a child theme
/*****************************\ * पीएनजी और जेपीजी को एविफ में बदलें * \*****************************/ add_filter( 'wp_generate_attachment_metadata', 'jps_compress_img', 10, 2 ); समारोह jps_compress_img( $मेटाडाटा, $अटैचमेंट_आईडी ) { // get filepath from id $filepath= get_attached_file($अटैचमेंट_आईडी); // is the file a png or jpeg if(पाथइन्फो($दस्तावेज पथ, PATHINFO_EXTENSION)=="जेपीजी" || पाथइन्फो($दस्तावेज पथ, PATHINFO_EXTENSION)=="जेपीईजी" || पाथइन्फो($दस्तावेज पथ, PATHINFO_EXTENSION)=="png") { // यदि ऐसा है तो, run compression of the main file to avif shell_exec("हेइफ़-एनएनसी $filepath -o $filepath.avif -q 50 -ए"); $भागों = preg_split('~/(?=[^/]*$)~', $दस्तावेज पथ); // Then run compression of the thumbnails to avif $thumbpaths = $metadata['आकार']; प्रत्येक के लिए ($thumbpaths as $key => $अंगूठा) { $थंबपथ = $अंगूठा['फाइल']; $थंबफुलपाथ = $ पार्ट्स[0] . "/" . $थंबपथ; खोल_निष्पादन("हेइफ़-एनएनसी $thumbfullpath -o $thumbfullpath.avif -q 50 -ए"); } } // give back what we got return $metadata; } //dont forget to delete the avifs if the attachments are deleted function jps_delete_avif($अटैचमेंट_आईडी) { $all_images= get_intermediate_image_sizes($अटैचमेंट_आईडी); प्रत्येक के लिए($all_images $each_img . के रूप में) { $प्रत्येक_img_det= wp_get_attachment_image_src($अटैच_आईडी,$प्रत्येक_आईएमजी); $प्रत्येक_img_path= ABSPATH.'wp-content'.substr($प्रत्येक_img_det[0],स्ट्रोपोस($प्रत्येक_img_det[0],"/अपलोड/")).'.अविफ'; खोल_निष्पादन("आरएम-एफ $each_img_path"); } } ADD_ACTION( 'डिलीट_अटैचमेंट', 'jps_delete_avif' );
At present that is it — all images you upload will be converted to avif copies (with the originals retained). You can regenerate all of your images to create the avif files by using a plugin. Note — I haven’t yet set up जेपीईजी-XL compression as support for it isn’t available in mainstream browsers yet (although it is in prerelease browsers so it is coming very soon).
Whilst I’m covering next gen formats and optimisation though I have one final tip — To compress एसवीजी gzip . के साथ चित्र (or even better zopfli and brotli). To do that requires another custom function…
बक्शीश: एसवीजी दबाव
/*************************************************\ * संकुचित करें एसवीजी brotli और zopfli . के साथ अधिक छवियां * \*************************************************/ add_filter( 'wp_generate_attachment_metadata', 'jps_compress_vectors', 10, 2 ); समारोह jps_compress_vectors( $मेटाडाटा, $अटैचमेंट_आईडी ) { // get filepath from id $filepath= get_attached_file($अटैचमेंट_आईडी); // is the file an svg if(पाथइन्फो($दस्तावेज पथ, PATHINFO_EXTENSION)=="एसवीजी") { // यदि ऐसा है तो, run compression of it using zopfli and brotli shell_exec("ज़ोपफली --gzip $filepath"); खोल_निष्पादन("brotli --best --output=$filepath.br $filepath"); } // give back what we got return $metadata; }
ध्यान दें कि आपको अपने nginx config में gzip_static और brotli_static सक्षम करने की आवश्यकता होगी.
एक नए संस्करण के लिए स्व-संकलन
I found that on Centos the latest version of heif-enc is 1.7 which has quite a few bugs when creating avifs. So I opted to compile my own newer (1.12) इसके बजाय निर्माण और उपयोग करें. Doing so was a little complicated as it required the aom codec as a shared library. To do so run the following bash commands. Make sure to run them as a normal user, रूट उपयोगकर्ता के रूप में नहीं. Also note some of these commands may not be strictly needed, it took me a while to get it working and I just made a note of what worked — I am by no means a linux expert!
dnf install x265 x265-devel svt-av1 export CXXFLAGS="$CXXFLAGS -fPIC" cd ~ git clone https://aomedia.googlesource.com/aom mkdir -p aom_build cd aom_build cmake ~/aom -DBUILD_SHARED_LIBS=true make sudo make install cp ./libaom.so.3 /usr/bin/local/libaom.so.3 cd ~ export PKG_CONFIG_PATH=~/aom_build/ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/aom_build/ export LD_LIBRARY_PATH git clone --recurse-submodules --recursive https://github.com/strukturag/libheif.git cd libheif ./autogen.sh ./configure make sudo make install LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/bin/ export LD_LIBRARY_PATH
एक बार जब आप ऐसा कर लेते हैं, make sure it works by running php -a
and running the following command
खोल_निष्पादन("/usr/स्थानीय/बिन/हेइफ़-एनएनसी-ए");
You should get a full output, सिर्फ एक नहीं 1 लाइन त्रुटि. Assuming that works ok you can modify your functions.php so that each of the shell-exec references points to /usr/local/bin/heif-enc instead of just heif-enc
/*****************************\ * पीएनजी और जेपीजी को एविफ में बदलें * \*****************************/ add_filter( 'wp_generate_attachment_metadata', 'jps_compress_img', 10, 2 ); समारोह jps_compress_img( $मेटाडाटा, $अटैचमेंट_आईडी ) { // get filepath from id $filepath= get_attached_file($अटैचमेंट_आईडी); // is the file a png or jpeg if(पाथइन्फो($दस्तावेज पथ, PATHINFO_EXTENSION)=="जेपीजी" || पाथइन्फो($दस्तावेज पथ, PATHINFO_EXTENSION)=="जेपीईजी" || पाथइन्फो($दस्तावेज पथ, PATHINFO_EXTENSION)=="png") { // यदि ऐसा है तो, run compression of the main file to avif shell_exec("/usr/स्थानीय/बिन/हेइफ़-एनएनसी $filepath -o $filepath.avif -q 50 -ए"); $भागों = preg_split('~/(?=[^/]*$)~', $दस्तावेज पथ); // Then run compression of the thumbnails to avif $thumbpaths = $metadata['आकार']; प्रत्येक के लिए ($thumbpaths as $key => $अंगूठा) { $थंबपथ = $अंगूठा['फाइल']; $थंबफुलपाथ = $ पार्ट्स[0] . "/" . $थंबपथ; खोल_निष्पादन("/usr/स्थानीय/बिन/हेइफ़-एनएनसी $thumbfullpath -o $thumbfullpath.avif -q 50 -ए"); } } // give back what we got return $metadata; }
“Hi James I realise it has been a long while, but I just checked this on windows 11 (build 23H2)…”