...
1 = Success.
Python
Shutter.
Anchor | ||||
---|---|---|---|---|
|
setIso
Sets camera ISO.
Language | Syntax |
---|---|
C++ | byte setIso( real iso ) |
Python | int setIso( float iso ) |
Return value
0 = Error setting ISO.
1 = Success.
Anchor | ||||
---|---|---|---|---|
|
getIso
Gets camera ISO.
Language | Syntax |
---|---|
C++ | byte getIso( real& iso ) |
Python | float getIso() |
Return value
C++
0 = Error getting ISO.
1 = Success.
Python
ISO.
Anchor | ||||
---|---|---|---|---|
|
setFilmSize
...
Language | Syntax |
---|---|
C++ | byte setFilmSize( real filmWidth, real filmHeight ) |
Python | int setFilmSize( float filmWidth, float filmHeight) |
Return value
0 = Error setting film size.
...
Language | Syntax |
---|---|
C++ | byte getFilmSize( real& filmWidth, real& filmHeight ) |
Python | (x,y) getFilmSize() |
Return value
C++
0 = Error getting camera film size.
1 = Success.
Python
(x,y) = Tuple containing width and height.
...
Type | Name | In/Out | Description |
---|---|---|---|
const char* | pDiaphragmType | in | Diaphgragm type. Must be one of the following values: "CIRCULAR" or "POLYGONAL". |
real | angle | in | Diaphgragm angle. |
dword | nBlades | in | Number of blades (of "POLYGONAL" diaphragm). |
Return value
0 = Error setting camera diaphgragm.
...
Type | Name | In/Out | Description |
---|---|---|---|
const char* | pDiaphragmType | out | Diaphgragm type. Can be one of the following values: "CIRCULAR" or "POLYGONAL". |
real | angle | out | Diaphgragm angle. |
dword | nBlades | out | Number of blades (if "POLYGONAL" diaphragm). |
Return value
C++
0 = Error getting camera diaphragm.
...
Type | Name | In/Out | Description |
---|---|---|---|
dword | x1 | in | X-axis up-left edge of the region (in pixels) |
dword | y1 | in | Y-axis up-left edge of the region (in pixels) |
dword | x2 | in | X-axis down-right edge of the region (in pixels) |
dword | y2 | in | Y-axis down-right edge of the region (in pixels) |
const char* | pRegionType | in | Region type. Must be one of the following values: "REGION" or "BLOW UP". |
Return value
0 = Error setting screen region.
...
Type | Name | In/Out | Description |
---|---|---|---|
dword | x1 | out | X-axis up-left edge of the region (in pixels) |
dword | y1 | out | Y-axis up-left edge of the region (in pixels) |
dword | x2 | out | X-axis down-right edge of the region (in pixels) |
dword | y2 | out | Y-axis down-right edge of the region (in pixels) |
const char* | pRegionType | out | Region type. Must be one of the following values: "REGION" or "BLOW UP". |
Return value
C++
0 = Error setting screen region.
1 = Success.
...