Images are stored in a different server than the one i use. Is there a way to losslessly compress them using php and after compression show the images to my site without having to download the images to my server and store them? I do not have any access to the server that the images are stored. I can only download them to my server. Right now i just use the url of the picture to load the images to my site but GTmetrix is constantly mentioning about losslessly compress the images. Any thoughts?
Optimize images - Losslessly compress images in php
369 views Asked by stefanosn At
1
There are 1 answers
Related Questions in PHP
- How to add the dynamic new rows from my registration form in my database?
- Issue in payment form gateway
- How to create a facet for WP gridbuilder that displays both parent and child custom fields?
- Function in anonymous Laravel Blade component
- How to change woocomerce or full wordpress currency with value from USD to AUD
- General questions about creating a custom theme Moodle CMS
- How to add logging to an abstract class in php
- error 500 on IIS FastCGI but no clue despite multiple error loggings activated
- Composer installation fails and reverts ./composer.json and ./composer.lock to original content
- How to isolate PHP apps from each other on a local machine(Windows or Linux)?
- Laravel: Using belongsToMany relationship with MongoDB
- window.location.href redirects but is causing problems on the webpage
- Key provided is shorter than 256 bits, only 64 bits provided
- Laravel's whereBetween method not working with two timestamps
- Implementing UUID as primary key in Laravel intermediate table
Related Questions in LOSSLESS-COMPRESSION
- How does a decompressor know the huffman tree that was used by the compressor?
- What is the difference between 7-zip Deflate and zlib.compress()?
- Shifting a 1 bit into high and 0 bit into low in arithmetic compression
- Questions about the frequency table in arithmetic encoding compression
- How do I set up CloudLab for a Simple Experiment?
- Compression of Database using FP trees
- Is there any way to to compress large size pdf file using only python library no external .exe
- Compute the compression ratio by using Huffman encoding
- Compute the compression ratio for Huffman algorithm
- CABAC for image compression
- How to normalize overflowed state in range asymmetric numeral systems?
- Does any compression standard uses integer DCT?
- combining two seperate numbers into a single byte and being able to uncombine them later
- Compressing multi-spectral image
- Unknown compression used in block of data, could use some fresh eyes on this
Related Questions in GTMETRIX
- Google Tag Manager Event Change is Not Triggered on Page Change Nextjs
- Find the reason of long gap in performance waterfall?
- Why does a small favicon take 10 times as long to load?
- Why polyfills is being called multiple times on page load?
- ClickMagick Tracking Code Not Detected When Using LiteSpeed Cache Guest Mode Optimization
- If we delete paused GTM tags, will it improve the website performance ? Will it reduce the unused JS?
- Preload for script and css with file build in Nextjs
- How to Automate web performance tools in React Application other than lighthouse
- Speed Issue - Font Awesome loading everywhere in Wordpress posts
- GTmetrix about speed issue
- minify , defer and speed up the slider revolution js css files in wordpress
- Do we have anything like GTMetrix for Mobile Apps?
- how to clear variable in google tag manager through tag
- Convert array variable into another variable with comma separated values in Google Tag Manager With Javascript
- Using GTmetrix REST API v2.0 in R
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
You can use something like the kraken-php image API to achieve your goal, granted you have access to the files of the server. If you have composer installed and running, you may use that too, but again, you need access to the server somehow. If you decide to access the files you can install using their install page. You have the option to return the request immediately in a file or you can post it to a URL that can be accessed by the server. Your request may look something like:
and your response may look something like:
Your PHP code for setting up the response may look something like:
You can handle the response like you would a normal JSON request, and you can query the image URL for the processed image. However, you will need to sign up for their API, which is not free. If you are looking for a free solution, with fewer features, you can check out pngquant. This is coincidently how services like Kraken work, but it will take longer to have a robust system setup. You will, again, need some form of access to the server. Otherwise, you can't really do anything about it.