{"id":4309,"date":"2024-08-22T11:39:38","date_gmt":"2024-08-22T11:39:38","guid":{"rendered":"https:\/\/www.systools.in\/blog\/?p=4309"},"modified":"2025-03-03T10:00:05","modified_gmt":"2025-03-03T10:00:05","slug":"applescript-for-finding-duplicate-images","status":"publish","type":"post","link":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/","title":{"rendered":"AppleScript for Finding Duplicate Images and Deleting Small Files | In-Depth Guide"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-4314 aligncenter\" src=\"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/08\/applescript-find-duplicate-images-and-delete-small-images.png\" alt=\"applescript find duplicate images and delete small images\" width=\"750\" height=\"450\" \/><\/p>\n<p><b>Summary &#8211; <\/b>This article provides an in-depth guide on how to leverage AppleScript to find duplicate images and delete small images on macOS. It covers the benefits of using Applescript, the step-by-step process of creating and running scripts, and tips for customizing the scripts to meet your needs. By following this guide, you can efficiently manage your photo library, removing unwanted duplicates and low-quality images.<\/p>\n<div class=\"card-header text-center font-weight-bold\" style=\"text-align: center;\"><strong>Table of Contents <\/strong><a class=\"badge badge-primary toc-hv\" href=\"#\" data-bs-toggle=\"collapse\" data-bs-target=\"#toc\">Hide<\/a><\/div>\n<div class=\"card mb-5 bg-menu\">\n<div id=\"toc\" class=\"card-body collapse show\">\n<ul class=\"list-unstyled\">\n<li style=\"list-style-type: none;\">\n<ol>\n<li><a href=\"#explanation\">Understanding AppleScript<\/a><\/li>\n<li><a href=\"#reasons\">Why Choose Applescript for Managing Images?<\/a><\/li>\n<li><a href=\"#setup\">Setting Up AppleScript<\/a><\/li>\n<li><a href=\"#tips\">Tips for Customizing Your Scripts<\/a><\/li>\n<li><a href=\"#automated solution\">Applescript Find and Delete Duplicate Images: Code-Free Alternative<\/a><\/li>\n<li><a href=\"#sumup\">Conclusion<\/a><\/li>\n<\/ol>\n<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<p><b>Introduction<\/b><\/p>\n<p>Keeping a clean photo library is never an easy task on a Mac, as there can be thousands of images. Duplicates and small, low-quality images of no value tend to creep in, taking up expensive storage and muddling your collection. Though several third-party applications can provide a solution for such issues, Applescript provides a native, flexible way to automate the process. It demonstrates how Applescript may be used to check for picture duplicates and remove small images, keeping everything organized in a photo library.<\/p>\n<h2 id=\"explanation\"><b>Understanding AppleScript<\/b><\/h2>\n<p>Before diving into the script, let&#8217;s discuss what AppleScript actually is. AppleScript is a scripting language developed by Apple to automate repeated tasks within macOS. It communicates with the operating system and various other applications to make it easier for the user to customize the workflow. Just in case users are dealing with huge picture collections, AppleScript becomes very useful in searching for duplicate images and deleting small images with less hassle.<\/p>\n<h2 id=\"reasons\"><b>Why Choose Applescript for Managing Images?<\/b><\/h2>\n<p>AppleScript is an incredibly powerful native script language for macOS, designed mainly to automate repetitive actions. It offers several benefits to image management:<\/p>\n<ul>\n<li><b>Personalization:<\/b> Unlike generic software, Applescript enables one to custom-create the script to their needs, be it through the identification of duplicates based on file names, metadata, or any other criteria.<\/li>\n<li><b>Integration:<\/b> Applescript integrates so well into the Mac environment that one can perform Automation tasks without requiring any applications.<\/li>\n<li><b>Efficiency:<\/b> Since Applescript makes this whole process automatic, it scans hundreds of images in no time, saving you plenty of your time and effort.<\/li>\n<\/ul>\n<h3 id=\"setup\"><b>Setting Up AppleScript<\/b><\/h3>\n<p>The following AppleScript will find all the duplicate images and then delete the small ones.<\/p>\n<ol>\n<li><b>Open Script Editor: <\/b>First, open the Script Editor on a Mac. It is in the Utilities folder within the Applications folder.<\/li>\n<li><b>Write the Script:<\/b> Below is a sample basic script on searching for duplicate images and getting rid of small files based on the user&#8217;s preference, e.g., based on small file size.<\/li>\n<\/ol>\n<blockquote>\n<pre>-- Define the folder containing your images\r\n\r\nset imageFolder to choose folder with prompt \"Select the folder containing your images:\"\r\n\r\n-- Get a list of all image files in the folder\r\n\r\ntell application \"Finder\"\r\n\r\nset imageFiles to every file of imageFolder whose name extension is \"jpg\" or name extension is \"png\"\r\n\r\nend tell\r\n\r\n-- Function to check for duplicate images based on file size and name\r\n\r\non checkForDuplicates(imageList)\r\n\r\nset duplicates to {}\r\n\r\nrepeat with i from 1 to (count of imageList)\r\n\r\nset currentImage to item i of imageList\r\n\r\nrepeat with j from (i + 1) to (count of imageList)\r\n\r\nset comparisonImage to item j of imageList\r\n\r\nif (size of currentImage) is equal to (size of comparisonImage) and (name of currentImage) is not equal to (name of comparisonImage) then\r\n\r\ncopy currentImage to the end of duplicates\r\n\r\nexit repeat\r\n\r\nend if\r\n\r\nend repeat\r\n\r\nend repeat\r\n\r\nreturn duplicates\r\n\r\nend checkForDuplicates\r\n\r\n-- Check for duplicate images\r\n\r\nset duplicateImages to checkForDuplicates(imageFiles)\r\n\r\n-- Delete duplicate images\r\n\r\nrepeat with duplicates in duplicateImages\r\n\r\ntell application \"Finder\"\r\n\r\ndelete duplicate\r\n\r\nend tell\r\n\r\nend repeat\r\n\r\n-- Delete small images below a certain size (e.g., 100KB)\r\n\r\nrepeat with imageFile in imageFiles\r\n\r\nif (size of imageFile) &lt; 100000 then\r\n\r\ntell application \"Finder\"\r\n\r\ndelete imageFile\r\n\r\nend tell\r\n\r\nend if\r\n\r\nend repeat<\/pre>\n<\/blockquote>\n<p>display dialog &#8220;Process complete. Duplicates and small images have been removed.&#8221;<\/p>\n<p><b>3. Personalize the Script: <\/b>You can certainly adapt that script for your purposes. Examples might include altering the threshold of the file size at which tiny images are purged or adding more test criteria to determine duplicates, such as resolution and file creation date.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4312\" src=\"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/08\/ss-1-.jpg\" alt=\"Applescript for Finding Duplicate Images &amp; Deleting Small Files | In-Depth GuideApplescript for Finding Duplicate Images &amp; Deleting Small Files\" width=\"1440\" height=\"900\" \/><\/p>\n<p><b>4. Run the Script:<\/b> After you have customized the script, run it from the Script Editor by clicking the &#8220;Run&#8221; button. The script will ask you to select a folder containing images. Then, it will automatically find duplicate images and delete small images.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4313\" src=\"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/08\/ss-2.jpg\" alt=\"Process Complete\" width=\"416\" height=\"140\" \/><\/p>\n<p><b>5. Check the Results:<\/b> Once the script has finished running, you should take a look at the image folder and check all the images for the removal of duplicates and small images, as should have occurred. This step is evidently one of the most important in the whole process to make sure that your script is working fine and you are not accidentally deleting some important file.<\/p>\n<h3 id=\"tips\"><b>Tips for Customizing Your Scripts<\/b><\/h3>\n<p>AppleScript is flexible, and the above scripts can be extended to meet more elaborate requirements.<\/p>\n<ul>\n<li><b>Exclude Specific Folders: <\/b>The script needs to be modified so that the specified subfolders in case such subfolders need to be kept out of the process.<\/li>\n<li><b>Logging:<\/b> Add logging for further use in keeping track of all the moved and deleted files. It will definitely come in handy if you want to review the changes.<\/li>\n<li><b>Automatic Backup:<\/b> Before running the script, there should be a backup of the Photo library in case something goes wrong with the data during processing.<\/li>\n<\/ul>\n<h3 id=\"automated solution\"><b>AppleScript Find and Delete Duplicate Images: Code-Free Alternative<\/b><\/h3>\n<p>Although AppleScript provides a very powerful way to find and clean out duplicate images, it requires prior coding knowledge. If that&#8217;s a bit too much for what you want to do, or if you don&#8217;t feel like getting into scripting, consider using <b>SysTools Duplicate File Finder<\/b>. This tool is designed to help you easily identify and remove duplicate images without writing or running scripts. This tool offers an intuitive interface, making it simple for anyone to clean up their photo library with ease and accuracy. It&#8217;s perfect for users who prefer a hassle-free solution for managing digital clutter, ensuring that all unwanted duplicates are efficiently removed from your system.<\/p>\n<p class=\"text-center mr-2\"><a class=\"btn btn-lg btn-md-block text-white\" style=\"background: #28a745; color: #fff !important;\" href=\"https:\/\/systoolskart.com\/download\/SYS4M1D1F\/29\" rel=\"nofollow\"> Download Now<\/a> <a class=\"btn btn-lg btn-md-block text-white\" style=\"background: #ff6800; color: #fff !important;\" href=\"https:\/\/systoolskart.com\/buy\/SYS4M1D1F\/1\" target=\"_blank\" rel=\"noopener noreferrer nofollow\">Purchase Now<\/a><\/p>\n<h3 id=\"sumup\"><b>Conclusion<\/b><\/h3>\n<p>AppleScript provides a strong, native solution for managing duplicate and low-quality images on a Mac. By automating this process, you can keep your photo library clean and well-organized. However, not everyone is comfortable with scripting. For those who prefer a code-free solution, the above-mentioned duplicate file finder offers an easy-to-use alternative that simplifies the task of removing unwanted images. Whether you choose AppleScript for a customized approach or an automated solution for its user-friendly interface, both methods help maintain an organized and efficient photo library.<\/p>\n<p>Also Read &#8211; <b>Top 10 Free <\/b><b>Best <\/b><a href=\"https:\/\/www.systools.in\/blog\/best-duplicate-photo-finder\/\"><b>Duplicate Photo Finder &amp; Remover<\/b><\/a><b> Tool \u2013 2024<\/b><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Summary &#8211; This article provides an in-depth guide on how to leverage AppleScript to find duplicate images and delete small images on macOS. It covers the benefits of using Applescript, <\/p>\n","protected":false},"author":6,"featured_media":4314,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[363],"class_list":["post-4309","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-remover"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Applescript for Finding Duplicate Images &amp; Deleting Small Files<\/title>\n<meta name=\"description\" content=\"Learn how to use Applescript to find duplicate images and delete small files on macOS. Get instructions, tips, and a code-free alternative.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Raj Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/\"},\"author\":{\"name\":\"Raj Kumar\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#\\\/schema\\\/person\\\/38995c504e8e559d45dd2c8b2bba176b\"},\"headline\":\"AppleScript for Finding Duplicate Images and Deleting Small Files | In-Depth Guide\",\"datePublished\":\"2024-08-22T11:39:38+00:00\",\"dateModified\":\"2025-03-03T10:00:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/\"},\"wordCount\":923,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/applescript-find-duplicate-images-and-delete-small-images.png\",\"articleSection\":[\"remover\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/\",\"name\":\"Applescript for Finding Duplicate Images & Deleting Small Files\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/applescript-find-duplicate-images-and-delete-small-images.png\",\"datePublished\":\"2024-08-22T11:39:38+00:00\",\"dateModified\":\"2025-03-03T10:00:05+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#\\\/schema\\\/person\\\/38995c504e8e559d45dd2c8b2bba176b\"},\"description\":\"Learn how to use Applescript to find duplicate images and delete small files on macOS. Get instructions, tips, and a code-free alternative.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/applescript-find-duplicate-images-and-delete-small-images.png\",\"contentUrl\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/applescript-find-duplicate-images-and-delete-small-images.png\",\"width\":750,\"height\":450,\"caption\":\"applescript find duplicate images and delete small images\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/applescript-for-finding-duplicate-images\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AppleScript for Finding Duplicate Images and Deleting Small Files | In-Depth Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/\",\"name\":\"Informative Blogs Related To Technologies &amp; Data Recovery Solutions\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#\\\/schema\\\/person\\\/38995c504e8e559d45dd2c8b2bba176b\",\"name\":\"Raj Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g\",\"caption\":\"Raj Kumar\"},\"description\":\"A dynamic writer with extensive knowledge of technology aids in closing the gap between the user and technology. Provides simple and dependable solutions to a variety of technical challenges that customers face on a daily basis.\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/author\\\/raj\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Applescript for Finding Duplicate Images & Deleting Small Files","description":"Learn how to use Applescript to find duplicate images and delete small files on macOS. Get instructions, tips, and a code-free alternative.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/","twitter_misc":{"Written by":"Raj Kumar","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/#article","isPartOf":{"@id":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/"},"author":{"name":"Raj Kumar","@id":"https:\/\/www.systools.in\/blog\/#\/schema\/person\/38995c504e8e559d45dd2c8b2bba176b"},"headline":"AppleScript for Finding Duplicate Images and Deleting Small Files | In-Depth Guide","datePublished":"2024-08-22T11:39:38+00:00","dateModified":"2025-03-03T10:00:05+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/"},"wordCount":923,"commentCount":0,"image":{"@id":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/08\/applescript-find-duplicate-images-and-delete-small-images.png","articleSection":["remover"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/","url":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/","name":"Applescript for Finding Duplicate Images & Deleting Small Files","isPartOf":{"@id":"https:\/\/www.systools.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/#primaryimage"},"image":{"@id":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/08\/applescript-find-duplicate-images-and-delete-small-images.png","datePublished":"2024-08-22T11:39:38+00:00","dateModified":"2025-03-03T10:00:05+00:00","author":{"@id":"https:\/\/www.systools.in\/blog\/#\/schema\/person\/38995c504e8e559d45dd2c8b2bba176b"},"description":"Learn how to use Applescript to find duplicate images and delete small files on macOS. Get instructions, tips, and a code-free alternative.","breadcrumb":{"@id":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/#primaryimage","url":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/08\/applescript-find-duplicate-images-and-delete-small-images.png","contentUrl":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/08\/applescript-find-duplicate-images-and-delete-small-images.png","width":750,"height":450,"caption":"applescript find duplicate images and delete small images"},{"@type":"BreadcrumbList","@id":"https:\/\/www.systools.in\/blog\/applescript-for-finding-duplicate-images\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systools.in\/blog\/"},{"@type":"ListItem","position":2,"name":"AppleScript for Finding Duplicate Images and Deleting Small Files | In-Depth Guide"}]},{"@type":"WebSite","@id":"https:\/\/www.systools.in\/blog\/#website","url":"https:\/\/www.systools.in\/blog\/","name":"Informative Blogs Related To Technologies &amp; Data Recovery Solutions","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systools.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.systools.in\/blog\/#\/schema\/person\/38995c504e8e559d45dd2c8b2bba176b","name":"Raj Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g","caption":"Raj Kumar"},"description":"A dynamic writer with extensive knowledge of technology aids in closing the gap between the user and technology. Provides simple and dependable solutions to a variety of technical challenges that customers face on a daily basis.","url":"https:\/\/www.systools.in\/blog\/author\/raj\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/posts\/4309","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/comments?post=4309"}],"version-history":[{"count":0,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/posts\/4309\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/media\/4314"}],"wp:attachment":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/media?parent=4309"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/categories?post=4309"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}