Skip to content

Instantly share code, notes, and snippets.

@AmroAbdul
Created January 14, 2023 16:40
Show Gist options
  • Save AmroAbdul/4dca172f5dfd9840ef95d0fdbda85f14 to your computer and use it in GitHub Desktop.
Save AmroAbdul/4dca172f5dfd9840ef95d0fdbda85f14 to your computer and use it in GitHub Desktop.
# Google Image Search Operators

## src:
**يعرض الصفحات التي تشير إلى عنوان URL للصورة المقدم في عامل التشغيل. علي سبيل المثال:**

### `src:https://example.com/media/carrot.jpg`

## imagesize: 
**The imagesize: search operator returns images of the dimension specified in the operator. You must specify the dimension in width x height format. For example:**


### `imagesize:1500x1000`

**This operator can be helpful in conjunction with the src: and site: operator. For example, you can find an image of a certain size that was indexed on your site:**



### `src:https://example.com/media/carrot.jpg imagesize:500x1200`

**Using imagesize: with the site: operator, you can find images of the exact size:**


### `site:https://example.com/ imagesize:500x1200`




[المصدر](https://developers.google.com/search/docs/monitor-debug/search-operators/image-search)



<style>
    :root {
        --direction:rtl;
    }
    body {
    direction:rtl;
    margin: auto;
    padding-right: 1em;
    padding-left: 1em;
    max-width: 44em; 
    border-left: 1px solid black;
    border-right: 1px solid black;
    color: black;
    font-family: Verdana, sans-serif;
    font-size: 100%;
    font-weight:bold;
    line-height: 140%;
    color: #009199; 
}
pre {
    border: 1px dotted gray;
    background-color: #ececec;
    color: #1111111;
    padding: 0.5em;
}
code {
    font-family: monospace;
}
h1 a, h2 a, h3 a, h4 a, h5 a { 
    direction:rtl !important;
    text-decoration: none;
    color: #7a5ada; 
}
h1, h2, h3, h4, h5 { font-family: verdana;
                    font-weight: bold;
                    border-bottom: 1px dotted black;
                    color: #7a5ada; }
h1 {
        font-size: 130%;
        text-align:center;
}

h2 {
        font-size: 110%;
}

h3 {
        font-size: 95%;
}

h4 {
        font-size: 90%;
        font-style: italic;
}

h5 {
        font-size: 90%;
        font-style: italic;
}

h1.title {
        font-size: 200%;
        font-weight: bold;
        padding-top: 0.2em;
        padding-bottom: 0.2em;
        text-align: left;
        border: none;
}

dt code {
        font-weight: bold;
}
dd p {
        margin-top: 0;
}

#footer {
        padding-top: 1em;
        font-size: 70%;
        color: gray;
        text-align: center;
        }
</style>

Google Image Search Operators

src:

يعرض الصفحات التي تشير إلى عنوان URL للصورة المقدم في عامل التشغيل. علي سبيل المثال:

src:https://example.com/media/carrot.jpg

imagesize:

The imagesize: search operator returns images of the dimension specified in the operator. You must specify the dimension in width x height format. For example:

imagesize:1500x1000

This operator can be helpful in conjunction with the src: and site: operator. For example, you can find an image of a certain size that was indexed on your site:

src:https://example.com/media/carrot.jpg imagesize:500x1200

Using imagesize: with the site: operator, you can find images of the exact size:

site:https://example.com/ imagesize:500x1200

<style> :root { --direction:rtl; } body { direction:rtl; margin: auto; padding-right: 1em; padding-left: 1em; max-width: 44em; border-left: 1px solid black; border-right: 1px solid black; color: black; font-family: Verdana, sans-serif; font-size: 100%; font-weight:bold; line-height: 140%; color: #009199; } pre { border: 1px dotted gray; background-color: #ececec; color: #1111111; padding: 0.5em; } code { font-family: monospace; } h1 a, h2 a, h3 a, h4 a, h5 a { direction:rtl !important; text-decoration: none; color: #7a5ada; } h1, h2, h3, h4, h5 { font-family: verdana; font-weight: bold; border-bottom: 1px dotted black; color: #7a5ada; } h1 { font-size: 130%; text-align:center; } h2 { font-size: 110%; } h3 { font-size: 95%; } h4 { font-size: 90%; font-style: italic; } h5 { font-size: 90%; font-style: italic; } h1.title { font-size: 200%; font-weight: bold; padding-top: 0.2em; padding-bottom: 0.2em; text-align: left; border: none; } dt code { font-weight: bold; } dd p { margin-top: 0; } #footer { padding-top: 1em; font-size: 70%; color: gray; text-align: center; } </style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment