Uncategorized

How to reduce image size online in 1 minute without losing the quality

  1. Go to Photopea | Online Photo Editor
  2. click on FILE > OPEN OR click on OPEN FROM COMPUTER

  3. select the file from your computer
  4. go to the top left menu
  5. click on file > export, and choose the format you want.
  6. use jpeg/jpg if your image doesn’t have a background transparent
  7. you can use webp, which is more optimised than png and jpg, saving a lot of space. but only use it for websites, cause it usually works in browsers
  8. then a popup will occur, reduced the width to 1200-1900 as resolution you want, and check the size at the bottom left corner of the popup.

  9. if you want to reduce more you can reduce the quality range bar, below the width and height
  10. click on save that’s it

Abhijit Mhasagar

Share
Published by
Abhijit Mhasagar

Recent Posts

CSS Grid Template example easy to understand

https://codepen.io/abhijitmhasagar/pen/dyjRwxX # HTML <div class="container"> <div class="box">box 1</div> <div class="box">box 2</div> <div class="box">box 3</div> <div…

1 year ago

Redirect to URL on HTML Select option change

<select class="form-select lang-select" aria-label="Language Change" onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"> <option disabled>Language</option> <option value="https://google.com" selected>English</option>…

2 years ago

Default WordPress .htaccess

# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME}…

2 years ago

How to center an element with CSS

#1 .center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); } #2 .center{…

2 years ago

Security Headers .htaccess

put it in .htaccess Header always set Strict-Transport-Security: "max-age=31536000" env=HTTPS Header always set Content-Security-Policy "upgrade-insecure-requests"…

2 years ago

How to redirect HTTP to HTTPS Using .htaccess

Redirecting HTTP to HTTPS by Editing .htaccess File Please replace https://www.yourdomain.com with your Domain URL…

3 years ago