# imageDetails

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    imageDetails:
      type: object
      properties:
        imagedata:
          type: string
          description: Base64-encoded image string.
        imagewidth:
          type: integer
          minimum: 0
          description: Width of the image in pixels.
        imageheight:
          type: integer
          minimum: 0
          description: Height of the image in pixels.
        format:
          type: string
          enum:
            - auto
          description: Image format, via "auto" the format will be evaluated
        scale:
          type: integer
          minimum: 25
          maximum: 2000
          description: Resize percentage of the image (25–2000).
        name:
          type: string
          description: Optional name for the image input.
      x-apidog-orders:
        - imagedata
        - imagewidth
        - imageheight
        - format
        - scale
        - name
      required:
        - imagedata
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: http://{{host}}:8090
    description: Develop Env
  - url: https://{{host}}:8092
    description: Testing Env
security: []

```
