Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

1 = Success.

Python

Shutter.

Anchor
setiso
setiso

setIso

Sets camera ISO.

LanguageSyntax
C++byte setIso( real iso )
Pythonint setIso( float iso )

Return value

0 = Error setting ISO.

1 = Success.

Anchor
getiso
getiso

getIso

Gets camera ISO.

LanguageSyntax
C++byte getIso( real& iso )
Pythonfloat getIso()

Return value

C++

0 = Error getting ISO.

1 = Success.

Python

ISO.

Anchor
setfilmsize
setfilmsize

setFilmSize

...

LanguageSyntax
C++byte setFilmSize( real filmWidth, real filmHeight )
Pythonint setFilmSize( float filmWidth, float filmHeight)

Return value

0 = Error setting film size.

...

LanguageSyntax
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.

...

TypeNameIn/OutDescription
const char*pDiaphragmTypeinDiaphgragm type. Must be one of the following values: "CIRCULAR" or "POLYGONAL".
realangleinDiaphgragm angle.
dwordnBladesinNumber of blades (of "POLYGONAL" diaphragm).

Return value

0 = Error setting camera diaphgragm.

...

TypeNameIn/OutDescription
const char*pDiaphragmTypeoutDiaphgragm type. Can be one of the following values: "CIRCULAR" or "POLYGONAL".
realangleoutDiaphgragm angle.
dwordnBladesoutNumber of blades (if "POLYGONAL" diaphragm).

Return value

C++

0 = Error getting camera diaphragm.

...

TypeNameIn/OutDescription
dwordx1inX-axis up-left edge of the region (in pixels)
dwordy1inY-axis up-left edge of the region (in pixels)
dwordx2inX-axis down-right edge of the region (in pixels)
dwordy2inY-axis down-right edge of the region (in pixels)
const char*pRegionTypeinRegion type. Must be one of the following values: "REGION" or "BLOW UP".

Return value

0 = Error setting screen region.

...

TypeNameIn/OutDescription
dwordx1outX-axis up-left edge of the region (in pixels)
dwordy1outY-axis up-left edge of the region (in pixels)
dwordx2outX-axis down-right edge of the region (in pixels)
dwordy2outY-axis down-right edge of the region (in pixels)
const char*pRegionTypeoutRegion type. Must be one of the following values: "REGION" or "BLOW UP".

Return value

C++

0 = Error setting screen region.

1 = Success.

...