{"id":1958,"date":"2023-02-15T12:29:15","date_gmt":"2023-02-15T12:29:15","guid":{"rendered":"https:\/\/www.tools.keywordfinder.us\/?page_id=712"},"modified":"2023-05-23T16:12:13","modified_gmt":"2023-05-23T16:12:13","slug":"image-resizer","status":"publish","type":"page","link":"https:\/\/tools.billionsideas.com\/pt\/image-resizer\/","title":{"rendered":"Image Resizer"},"content":{"rendered":"<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column has-vivid-green-cyan-background-color has-background is-layout-flow wp-block-column-is-layout-flow\">\n<section>\n<h1>Image Resizer<\/h1>\n\n    <div id=\"container\">\n      <div id=\"upload-section\">\n        <input type=\"file\" id=\"file-input\" onchange=\"previewImage()\">\n        <br><br>\n        <input type=\"text\" id=\"img-url\" placeholder=\"Enter image URL\"><br>\n        <button onclick=\"previewImageFromURL()\">Preview Image<\/button>\n      <\/div>\n      <div id=\"original-image\"><\/div>\n      <div id=\"resize-section\">\n        <label for=\"width\">Width: <\/label>\n        <input type=\"number\" id=\"width\" value=\"300\">\n        <br>\n        <label for=\"height\">Height: <\/label>\n        <input type=\"number\" id=\"height\" value=\"300\">\n        <br><br>\n        <button onclick=\"resizeImage()\">Resize Image<\/button>\n      <\/div>\n      <div id=\"resized-image\"><\/div>\n      <button id=\"download-button\" onclick=\"downloadImage()\">Download Image<\/button><br><br>\n    <\/div>\n    \n <\/section>\n\n\n    <script src=\"app.js\"><\/script>\n    \n\n\n\n<script>\nfunction previewImage() {\n  let fileInput = document.getElementById(\"file-input\")\n  let originalImage = document.getElementById(\"original-image\")\n  let img = document.createElement(\"img\")\n  img.src = URL.createObjectURL(fileInput.files[0])\n  originalImage.appendChild(img)\n}\n\nfunction previewImageFromURL() {\n  let imgUrl = document.getElementById(\"img-url\").value\n  let originalImage = document.getElementById(\"original-image\")\n  let img = document.createElement(\"img\")\n  img.src = imgUrl\n  originalImage.appendChild(img)\n}\n\nfunction resizeImage() {\n  let originalImage = document.getElementById(\"original-image\").firstChild\n  let width = document.getElementById(\"width\").value\n  let height = document.getElementById(\"height\").value\n  let resizedImage = document.getElementById(\"resized-image\")\n\n  let canvas = document.createElement(\"canvas\")\n  canvas.width = width\n  canvas.height = height\n\n  let ctx = canvas.getContext(\"2d\")\n  ctx.drawImage(originalImage, 0, 0, width, height)\n\n  resizedImage.innerHTML = \"\"\n  let img = document.createElement(\"img\")\n  img.src = canvas.toDataURL()\n  resizedImage.appendChild(img)\n\n  document.getElementById(\"download-button\").style.display = \"block\"\n}\n\nfunction downloadImage() {\n  let resizedImage = document.getElementById(\"resized-image\").firstChild\n  let link = document.createElement(\"a\")\n  link.href = resizedImage.src\n  link.download = \"resized-image.png\"\n  link.click();\n}\n\n<\/script>\n\n<style>\n\nsection{text-align:center}\n\n\/* Button Styles *\/\nbutton, .button, #button, btn, .btn, #btn, downloadlink,  #download-button, #button-copy, button-copy, copy-button, #copy-button, #copy, copy, #download-html-button{\n  display: inline-block;\n  padding: 12px 24px;\n  font-size: 16px;\n  font-weight: 500;\n  color: #ffffff;\n  text-transform: uppercase;\n  text-decoration: none;\n  text-align: center;\n  border-radius: 30px;\n  background-image: linear-gradient(to right, #0088FF, #0088FF);\n  border: 3px solid #fff;\n  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);\n  transition: all 0.3s ease;\n  margin:0 auto;\n  margin-top:11px;\n  margin-bottom:11px;\n  text-shadow: 2px 2px 4px #333;\n}\n\n\/* Button Hover State *\/\nbutton:hover {\n  background-image: linear-gradient(to right, #FF1493, #FF1493);\n  border: 3px solid #ffffff;\n  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);\n}\n\n -input{\n  width: 25%;\n  height: 100%;\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n  margin:0 auto;\n}\n\ninput[type=file]::file-selector-button {\n  display: inline-block;\n  padding: 1.0rem 1rem;\n  font-size: 1.125rem;\n  font-weight: bold;\n  color: #fff;\n  text-align: center;\n  text-transform: uppercase;\n  background-color: #0088FF;\n  border-radius: 0rem;\n  cursor: pointer;\n  transition: background-color 0.2s ease-in-out;\n  border: 0px solid #fff;\n  width:100%;\n  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);\n}\n\ninput[type=file]::file-selector-button:hover {\n  background-color: #5b52d6;\n}\n\ninput[type=file]::file-selector-button:active {\n  background-color: #4a41ad;\n}\n\ninput[type=file]::file-selector-button:focus {\n  outline: none;\n  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #6c63ff;\n}\n\ninput[type=file]::file-selector-button::before {\n  content: \"Select File\";\n}\n\ninput[type=file]::file-selector-button::before,\ninput[type=file]::file-selector-button::before {\n  content: \"\\2193 Browse Files\";\n}\n\n\ninput[type=\"file\"] {\n  display: yes;\n}\ninput[type=\"text\"], input[type=\"url\"] {\n  width: 80%;\n  height: 50px;\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n  margin:0 auto;\n}\ninput[type=\"number\"], select {\n  width: 30%;\n  height: 50px;\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n  margin:0 auto;\n}\n\ntextarea {\n  width: 100%;\n  height: 170px;\n  padding: 10px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc, -2px -2px 5px #ccc;  \n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n  margin:0 auto;\n}\n\ntextarea:hover {\n  border-color: #06c;\n  box-shadow: 2px 2px 10px #06c;\n}\n\ntextarea:focus {\n  outline: none;\n  border-color: #06c;\n  box-shadow: 2px 2px 10px #06c;\n}\n\ncanvas, #image-container, .img, #img, image, .image, #image, #convertedImage, #preview-image {\n  border: 5px solid;\n  border-image: linear-gradient(to bottom, #007bff, #00f260);\n  border-image-slice: 1;\n  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);\n  margin-top:10px;margin-bottom:10px;\n  width:90%;\n  margin:0 auto;padding:15px;\n\n}\n\n#image-container img {\n  max-width: 100%;\n  }\n\ncode, pre, .result, output, #output, .output {\n  font-family: Monaco, Consolas, \"Andale Mono\", \"DejaVu Sans Mono\", monospace;\n  font-size: 0.9em;\n  color: #333;\n  background-color: #f9f9f9;\n  padding: 0.2em 0.4em;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc, -2px -2px 5px #ccc;  \n  transition: all 0.2s ease-in-out;\n  white-space: pre-wrap;\n  margin-top:10px;margin-bottom:10px;\n  margin:0 auto;\n  width:100%;\n  padding:15px;\n\n}\n\n\ninput[type=\"range\"] {\n  -webkit-appearance: none;\n  width: 80%;\n  background: transparent;\n  height: 10px;\n  border-radius: 5px;\n  outline: none;\n  padding: 0;\n  margin: 0;\n  box-shadow: inset 0 0 5px #333;\n  transition: box-shadow 0.2s;\n  margin-top:10px;\n\n}\n\ninput[type=\"range\"]:focus {\n  box-shadow: inset 0 0 5px #888;\n}\n\ninput[type=\"range\"]::-webkit-slider-thumb {\n  -webkit-appearance: none;\n  height: 20px;\n  width: 20px;\n  border-radius: 50%;\n  background: #4CAF50;\n  cursor: pointer;\n  transition: background 0.2s;\n  margin-top:-5px;\n}\n\ninput[type=\"range\"]::-webkit-slider-thumb:hover {\n  background: #3e8e41;\n}\n\ninput[type=\"range\"]::-webkit-slider-runnable-track {\n  height: 10px;\n  background: #ddd;\n  border-radius: 5px;\n  border: none;\n}\ninput[type=\"checkbox\"] {\n  appearance: none;\n  width: 45px;\n  height: 25px;\n  background: transparent;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;  border-radius: 5px;\n  margin: 10px;\n  outline: none;\n  cursor: pointer;\n  position: relative;\n}\n\ninput[type=\"checkbox\"]:before {\n  content: \"\";\n  width: 15px;\n  height: 15px;\n  background: #D209A4;\n  border-radius: 100px;\n  position: absolute;\n  left: 2px;\n  \n  top: 3px;\n  transition: all 0.2s;\n}\n\ninput[type=\"checkbox\"]:checked:before {\n  transform: translateX(20px);\n}\n\ninput[type=\"checkbox\"]:focus {\n  border: 2px solid #888;\n}\ninput[type=\"radio\"] {\n  appearance: none;\n  width: 20px;\n  height: 20px;\n  border-radius: 50%;\n  border: 2px solid #333;\n  margin-right: 10px;\n  outline: none;\n  position: relative;\n  cursor: pointer;\n}\n\ninput[type=\"radio\"]:after {\n  content: \"\";\n  width: 10px;\n  height: 10px;\n  border-radius: 50%;\n  background: #333;\n  position: absolute;\n  top: 5px;\n  left: 5px;\n  opacity: 0;\n  transition: all 0.2s;\n}\n\ninput[type=\"radio\"]:checked:after {\n  opacity: 1;\n}\n\ninput[type=\"radio\"]:focus {\n  border-color: #888;\n}\n\n\ninput[type=\"radio\"] {\n  display: inline-block;\n  margin-right: 10px;\n  vertical-align: middle;\n}\n\nlabel {\n  display: block; \/* makes each label appear on a new line *\/\n  font-size: 16px;\n  font-weight: bold;\n  margin-bottom: 5px; \/* adds a small gap below each label *\/\n  color:#55555e;\n  margin-top:11px;margin-bottom:11px;\n}\n\ninput[type=\"color\"]{width:17.2%;}\n.form-control {\n    display: block;\n    margin:0 auto;\n    width: 70%;\n    padding: 0.375rem 0.75rem;\n    font-size: 1rem;\n    font-weight: 400;\n    line-height: 1.5;\n    color: #212529;\n    background-color: #fff;\n    background-clip: padding-box;\n    border: 1px solid #ced4da;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    border-radius: 0.25rem;\n    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;\n}\nsection{\n        margin: 0px auto;\n        width: 100%;\n        max-width: 970px;\n        background-color: #fff;\n        border: 1px solid #ddd;\n        padding: 20px;\n      }\n<\/style>\n<\/div>\n<\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"1024\" height=\"512\" src=\"https:\/\/tools.billionsideas.com\/wp-content\/uploads\/2023\/04\/image-resizer-bi-tools.png\" alt=\"image resizer bi tools\" class=\"wp-image-3618\" srcset=\"https:\/\/tools.billionsideas.com\/wp-content\/uploads\/2023\/04\/image-resizer-bi-tools.png 1024w, https:\/\/tools.billionsideas.com\/wp-content\/uploads\/2023\/04\/image-resizer-bi-tools-300x150.png 300w, https:\/\/tools.billionsideas.com\/wp-content\/uploads\/2023\/04\/image-resizer-bi-tools-768x384.png 768w, https:\/\/tools.billionsideas.com\/wp-content\/uploads\/2023\/04\/image-resizer-bi-tools-18x9.png 18w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure><\/div>\n\n\n<div style=\"height:15px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>In today&#8217;s digital landscape, where websites play a vital role in engaging users and driving business success, optimizing various aspects of a website has become essential. One crucial element that significantly impacts website performance and user experience is images. To ensure your website loads quickly and provides a seamless visual experience, it&#8217;s crucial to resize and optimize your images effectively. In this article, we&#8217;ll explore the significance of image resizers, understand image dimensions and file size, discuss the benefits of using an image resizer, and provide practical insights on choosing the right tool and resizing images efficiently.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is an Image Resizer?<\/strong><\/h2>\n\n\n\n<p>An image resizer is a tool or software that allows you to adjust the dimensions and file size of an image without compromising its quality. It provides a convenient way to resize images for various purposes, such as web design, social media posts, email attachments, and printing materials. By reducing the file size and dimensions of an image, an image resizer helps optimize its performance while maintaining visual appeal.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Do You Need an Image Resizer?<\/strong><\/h2>\n\n\n\n<p>As mentioned earlier, large-sized images can have a detrimental impact on website performance. Slow-loading pages can frustrate visitors, leading to higher bounce rates and diminished conversions. An image resizer enables you to optimize your images for the web, making your website faster and more user-friendly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to Resize Images Using an Image Resizer<\/strong><\/h2>\n\n\n\n<p>The process of resizing images may vary depending on the tool or software you choose. However, the basic steps usually involve the following:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Online image resizing process:<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Visit the website of the online image resizer of your choice.<\/li>\n\n\n\n<li>Upload the image you want to resize.<\/li>\n\n\n\n<li>Specify the desired dimensions or select from preset options.<\/li>\n\n\n\n<li>Choose the compression level or image quality.<\/li>\n\n\n\n<li>Click on the &#8220;Resize&#8221; or &#8220;Process&#8221; button.<\/li>\n\n\n\n<li>Download the resized image to your device.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Desktop image resizing process:<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Install the desktop image resizer software on your computer.<\/li>\n\n\n\n<li>Open the software and import the image you want to resize.<\/li>\n\n\n\n<li>Adjust the dimensions and aspect ratio as required.<\/li>\n\n\n\n<li>Set the desired image quality or compression level.<\/li>\n\n\n\n<li>Preview the resized image.<\/li>\n\n\n\n<li>Click on the &#8220;Save&#8221; or &#8220;Export&#8221; button to save the resized image.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Mobile image resizing process:<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Download and install the image resizer app on your mobile device.<\/li>\n\n\n\n<li>Open the app and select the image you want to resize.<\/li>\n\n\n\n<li>Choose the desired dimensions or aspect ratio.<\/li>\n\n\n\n<li>Adjust the image quality or compression level.<\/li>\n\n\n\n<li>Preview the resized image.<\/li>\n\n\n\n<li>Save the resized image to your device or share it directly.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Importance of Image Resizer <\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancing Website Performance<\/h3>\n\n\n\n<p>A slow-loading website can frustrate users and lead to higher bounce rates. By utilizing an image resizer, you can reduce the file size of your images without compromising quality. This optimization technique helps improve website performance by minimizing the time it takes for images to load.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Improving User Experience<\/h3>\n\n\n\n<p>Large, unoptimized images can disrupt the visual flow of your website and cause a cluttered appearance. With an image resizer, you can ensure that images fit harmoniously within your website&#8217;s design, enhancing user experience and making your content more visually appealing.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Optimizing for Mobile Devices<\/h3>\n\n\n\n<p>With the rise of mobile browsing, it&#8217;s crucial to optimize images for different screen sizes. An image resizer allows you to resize images to fit various devices, ensuring that your website remains responsive and accessible to users on smartphones and tablets.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Benefits of Using an Image Resizer<\/strong><\/h2>\n\n\n\n<p>When it comes to image optimization, an image resizer tool offers numerous benefits.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Reducing Image File Size<\/h3>\n\n\n\n<p>Image resizers employ efficient compression algorithms to reduce the file size of images. By removing unnecessary metadata and applying compression techniques, an image resizer helps to minimize the amount of data that needs to be downloaded, resulting in faster load times.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Preserving Image Quality<\/h3>\n\n\n\n<p>While reducing file size is important, maintaining image quality is equally crucial. High-quality image resizers employ advanced algorithms that intelligently balance compression and preservation of image details, ensuring that your resized images retain their visual integrity.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Scaling Images for Different Devices<\/h3>\n\n\n\n<p>Websites need to be accessible across a range of devices with varying screen sizes. An image resizer enables you to resize images to fit different devices while maintaining the correct aspect ratios, ensuring a consistent and visually appealing experience for all users.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to Choose the Right Image Resizer Tool<\/strong><\/h2>\n\n\n\n<p>Choosing the right image resizer tool can greatly impact the efficiency and effectiveness of your image optimization efforts. Consider the following factors when selecting an image resizer tool:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Compatibility with File Formats<\/h3>\n\n\n\n<p>Ensure that the image resizer tool supports a wide range of file formats commonly used for web graphics, such as JPEG, PNG, and GIF. This versatility ensures you can resize images regardless of their original format.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Ease of Use and User Interface<\/h3>\n\n\n\n<p>A user-friendly interface and intuitive design make the image-resizing process more efficient and accessible. Look for tools that offer a simple and straightforward workflow, allowing you to resize images quickly and effortlessly.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Advanced Features and Customization Options<\/h3>\n\n\n\n<p>Different images may require specific adjustments based on their content and purpose. Choose an image resizer tool that provides advanced features like cropping, rotation, and filters, allowing you to customize your images according to your unique requirements.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Speed and Efficiency of Resizing Process<\/h3>\n\n\n\n<p>Efficiency is crucial when resizing multiple images or working with large file sizes. Look for tools that offer fast processing times without compromising the quality of resized images. This ensures a smooth and time-effective optimization process.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>In the world of web optimization, image resizing plays a vital role in enhancing website performance and improving user experience. By employing an image resizer tool, you can reduce file sizes, maintain image quality, and ensure compatibility across various devices. Remember to choose a tool that meets your specific requirements and follows best practices for effective image resizing. By optimizing your website&#8217;s visual assets, you can create a faster, more engaging user experience that drives success.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions (FAQs)<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list\">\n<div id=\"faq-question-1684829453933\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">Can I resize images without losing quality?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Yes, by using advanced image resizer tools and applying appropriate compression techniques, you can resize images while maintaining high quality.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1684829466000\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\"><strong>Q:<\/strong> Are there any free image resizer tools available?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Yes, several free image resizer tools are available online. However, they may have limitations in terms of features and customization options.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1684829535560\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">How does image resizing impact SEO?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Optimized images that load quickly can positively impact SEO by improving website performance and reducing bounce rates.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1684829565943\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">Is it necessary to resize images for mobile devices?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Yes, resizing images for mobile devices ensures proper display and optimal performance on smartphones and tablets.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1684829661122\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">Can I resize multiple images simultaneously?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Many image resizer tools offer batch resizing capabilities, allowing you to resize multiple images in one go.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Image Resizer Preview Image Width: Height: Resize Image Download Image In today&#8217;s digital landscape, where websites play a vital role in engaging users and driving business success, optimizing various aspects of a website has become essential. One crucial element that significantly impacts website performance and user experience is images. To ensure your website loads quickly &#8230; <a title=\"Image Resizer\" class=\"read-more\" href=\"https:\/\/tools.billionsideas.com\/pt\/image-resizer\/\" aria-label=\"Read more about Image Resizer\">Leia mais<\/a><\/p>","protected":false},"author":1,"featured_media":3619,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","footnotes":""},"class_list":["post-1958","page","type-page","status-publish","has-post-thumbnail"],"taxonomy_info":[],"featured_image_src_large":["https:\/\/tools.billionsideas.com\/wp-content\/uploads\/2023\/04\/image-resizer-online-tool.png",800,500,false],"author_info":{"display_name":"Billions Ideas","author_link":"https:\/\/tools.billionsideas.com\/pt\/author\/loginbillionsideas-com\/"},"comment_info":0,"jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tools.billionsideas.com\/pt\/wp-json\/wp\/v2\/pages\/1958","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tools.billionsideas.com\/pt\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/tools.billionsideas.com\/pt\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/tools.billionsideas.com\/pt\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tools.billionsideas.com\/pt\/wp-json\/wp\/v2\/comments?post=1958"}],"version-history":[{"count":0,"href":"https:\/\/tools.billionsideas.com\/pt\/wp-json\/wp\/v2\/pages\/1958\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tools.billionsideas.com\/pt\/wp-json\/wp\/v2\/media\/3619"}],"wp:attachment":[{"href":"https:\/\/tools.billionsideas.com\/pt\/wp-json\/wp\/v2\/media?parent=1958"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}