| external help file | PSOpenAI-help.xml |
|---|---|
| Module Name | PSOpenAI |
| online version | https://github.com/mkht/PSOpenAI/blob/main/Docs/Request-ImageVariation.md |
| schema | 2.0.0 |
Creates a variation of a given image.
Request-ImageVariation
[-Image] <String>
[-NumberOfImages <UInt16>]
[-Size <String>]
[-ResponseFormat <String>]
[-User <String>]
[-TimeoutSec <Int32>]
[-MaxRetryCount <Int32>]
[-ApiBase <Uri>]
[-ApiKey <Object>]
[-Organization <String>]
[<CommonParameters>]
Request-ImageVariation
[-Image] <String>
[-NumberOfImages <UInt16>]
[-Size <String>]
-OutFile <String>
[-User <String>]
[-TimeoutSec <Int32>]
[-MaxRetryCount <Int32>]
[-ApiBase <Uri>]
[-ApiKey <Object>]
[-Organization <String>]
[<CommonParameters>]
Creates a variation of a given image.
https://developers.openai.com/api/docs/guides/image-generation/
Request-ImageVariation -Image C:\cupcake.png -OutFile C:\cupcake2.png -Size 256x256| Source (cupcake.png) | Generated (cupcake2.png) |
|---|---|
![]() |
![]() |
Request-ImageVariation -Image C:\cupcake.png -ResponseFormat "base64"iVBORw0KGgoAAAANSUhEUgAABAAAAAQACAIAAADwf7zUAAAAaGV......
(Required)
The image to use as the basis for the variation(s).
Must be a valid PNG file, less than 4MB, and square.
Type: String
Aliases: File
Required: True
Position: 1
Accept pipeline input: True (ByValue)The number of images to generate.
Must be between 1 and 10.
The default value is 1.
Type: UInt16
Aliases: n
Required: False
Position: Named
Default value: 1The size of the generated images.
Must be one of 256x256, 512x512, or 1024x1024.
The default value is 1024x1024.
Type: String
Required: False
Position: Named
Default value: 1024x1024The format in which the generated images are returned.
Must be one of url, base64 or byte.
Type: String
Parameter Sets: Format
Aliases: response_format
Required: False
Position: Named
Default value: urlSpecify the file path where the generated images will be saved.
This cannot be specified with the Format parameter.
Also, NumberOfImages must be 1.
Type: String
Parameter Sets: OutFile
Required: True
Position: NamedA unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse.
Type: String
Required: False
Position: NamedSpecifies how long the request can be pending before it times out.
The default value is 0 (infinite).
Type: Int32
Required: False
Position: Named
Default value: 0Number between 0 and 100.
Specifies the maximum number of retries if the request fails.
The default value is 0 (No retry).
Note : Retries will only be performed if the request fails with a 429 (Rate limit reached) or 5xx (Server side errors) error. Other errors (e.g., authentication failure) will not be performed.
Type: Int32
Required: False
Position: Named
Default value: 0Specifies an API endpoint URL such like: https://your-api-endpoint.test/v1
If not specified, it will use https://api.openai.com/v1
Type: System.Uri
Required: False
Position: Named
Default value: https://api.openai.com/v1Specifies API key for authentication.
The type of data should [string] or [securestring].
If not specified, it will try to use $global:OPENAI_API_KEY or $env:OPENAI_API_KEY
Type: Object
Required: False
Position: NamedSpecifies Organization ID which used for an API request.
If not specified, it will try to use $global:OPENAI_ORGANIZATION or $env:OPENAI_ORGANIZATION
Type: string
Aliases: OrgId
Required: False
Position: Namedhttps://developers.openai.com/api/docs/guides/image-generation/
https://developers.openai.com/api/reference/resources/images/methods/create_variation/

