• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

CFIMAGE & webp image type

Enthusiast ,
Aug 09, 2023 Aug 09, 2023

Copy link to clipboard

Copied

I am using CF 2016 and found that CFIMAGE does not work with the image type webp

 

Does anybody know if newer versions of CF support it?

Views

2.0K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Aug 10, 2023 Aug 10, 2023

Copy link to clipboard

Copied

I tried this forum's "Search this community" feature as I had posted a solution in the past, but apparently "this community" includes every post in other Photoshop-related groups.  (This broadness of results makes the search feature useless.)


I don't believe newer versions support it as that would have been a big feature announcement.

The solution that I use when using CF2016-2023 is to convert WEBP to JPG using third-party ImageMagick.
https://community.adobe.com/t5/coldfusion-discussions/is-there-a-way-to-convert-webp-to-jpg-using-cf...

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Aug 12, 2023 Aug 12, 2023

Copy link to clipboard

Copied

Thanks for the input. The challange I have is that I'd want to retain the webp file as-is. I need to upload it through the dashboard, read and store it's attributes and then make it available for download. So I can't convert it.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 12, 2023 Aug 12, 2023

Copy link to clipboard

Copied

ACS, can you clarify what cfimage actions you'd want to do? I'm only asking in case there may be an alternative to offer some (if not all) actions.

 

Finally, I was going to suggest you file an enhancement request at tracker.adobe.com, but I thought to check and indeed someone already had. It's at CF-4212258, and though it has no additional votes so far (since 2021), it is marked "to fix", so you never know when one more vote could catch the attention of those responsible. 🙂 

 

As the saying goes, it's better to light one candle than to curse the darkness. Well, that's how I roll at least. 🙂 


/Charlie (troubleshooter, carehart.org)

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Aug 12, 2023 Aug 12, 2023

Copy link to clipboard

Copied

Thanks Charlie. I've added a vote for what it's worth, if it's not in since 2021 I'm not holding out much hope. Webp is common now and I've tested it and found that it does bring very significant improvements of file size over other file types such as jpg and even PNG.

 

For now it looks like we'll have to just not allow wepb in, as it's too much of a pain to manually manage it

 

Btw I'm using CFIMAGE to initially find out what type of file was uploaded (it crashes with webp's), video,  audio or image. I then record several attributes from the file into the database, extension, height, width and filesize. I need the dimensions to manage the front end display as I only force reduction if it's over a certain width. I could manually type it in to each webp but what a pain that is, when it's automatic on all other formats. I could use CFFILE for some of this, find the extension and then avoid using CFIMAGE and ask for the dimensions. So there's a work around but it's for me.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Aug 12, 2023 Aug 12, 2023

Copy link to clipboard

Copied

We allow WebP & HEIC/HEIF image uploads, but we are currently converting them to JPG or PNG using ImageMagick (open source).  We used CFImage for retrieving the image data, but discovered that GraphicsMagick (open source) did a better job (faster; doesn't crash; works with more image types; can bulk output data for an entire directory, etc.)

After discovering Caravaggio (a node.js image proxy), we don't use ColdFusion to resize images anymore.  We prefer to retain the original uploaded image (convert only if WebP/HEIC/HEIF) and then use Caravaggio to resize, crop, overlay, rotate, flip and blur images by adding directives to the URL path. (Caravaggio has an option to modify the output format, so we add "o:wep" to the URL path for page requests when CGI.HTTP_ACCEPT contains "image/webp" and optimizes images are automatically returned as WebP.)
https://caravaggio.ramielcreations.com/


To reduce conversion overhead, we leverage BunnyCDN's perma-cache to permanently cache images. To assist with cache busting (whenever images are updated by clients), we add a unique date-based hash to the URL path so that updated images have a unique path and can be refreshed.

While the approach we've taken is technical and requires using some self-hosted non-ColdFusion apps & services (ImageMagick, GraphicsMagicl, reverse proxy, Caravaggio) and third-party (BunnyCDN), the result has been extremely good.  We no longer have to generate & store multiple variations of images, WebP is returned automatically (if supported) and the Bunny CDN performance has boosted our SEO scores.

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 12, 2023 Aug 12, 2023

Copy link to clipboard

Copied

James, I can relate (on challenges using the search here to search only one forum). FWIW, here's what I do in Google, using both the site and inurl keywords:

 

 

site:community.adobe.com inurl:t5/coldfusion-discussions/ "webp"

 

 

And to ACS, I'll confirm there are no other useful discussions here other than the thread James shared, nor much in Google's results for all sites on the topic of cf support webp. But I'll offer some other thoughts in a reply to another comment instead of here. 


/Charlie (troubleshooter, carehart.org)

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 13, 2023 Aug 13, 2023

Copy link to clipboard

Copied

@James Moberg , thanks for the heads-up on BunnyCDN. There are so many CDNs to evaluate, it seems like they're reproducing like, well ...

 

@Charlie Arehart , thanks for sharing your Google search operators. This should make search a lot easier for forum users. It's a shame that search has come to this, though. Terrible design.

 

Dave Watts, Eidolon LLC 

Dave Watts, Eidolon LLC

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Aug 14, 2023 Aug 14, 2023

Copy link to clipboard

Copied

Thanks Charlie. 

 

I'm just going to have to avoid/block webp for now. I was really hoping the latest version of CF would have been brought up to do with image handling

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Feb 14, 2024 Feb 14, 2024

Copy link to clipboard

Copied

Wow, Coldfusion 2023 Still doesn't support the .webp format?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 09, 2024 Jul 09, 2024

Copy link to clipboard

Copied

i  have an  issue while fetching image info in cfimage (image format is webp)

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jul 10, 2024 Jul 10, 2024

Copy link to clipboard

Copied

You can't read the info of a webp with CF, which was really disappointing for me. The solution for me was that I ran the site I needed to do this on, on Lucee instead, which worked exceptionally well and brought a few other advantages..

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 10, 2024 Jul 10, 2024

Copy link to clipboard

Copied

LATEST

I can share that at recent cf conferences, Adobe has mentioned in keynotes on the next release that webp support will be included.  

 

No date or formal name yet, but there have been public references (by them) calling it CF 2025. (And FWIW, cf2021 came out in Nov 2020--though that doesn't mean it will happen this time. Only time will tell. ) 


/Charlie (troubleshooter, carehart.org)

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation