set_water_mark method

int set_water_mark(
  1. trtc_cloud instance,
  2. int stream_type,
  3. Pointer<Char> src_data,
  4. int src_type,
  5. int width,
  6. int height,
  7. double x_offset,
  8. double y_offset,
  9. double f_width_ratio,
  10. bool is_visible_on_local_preview,
)

7.2

Implementation

int set_water_mark(
  trtc_cloud instance,
  int stream_type,
  ffi.Pointer<ffi.Char> src_data,
  int src_type,
  int width,
  int height,
  double x_offset,
  double y_offset,
  double f_width_ratio,
  bool is_visible_on_local_preview,
) {
  return _set_water_mark(
    instance,
    stream_type,
    src_data,
    src_type,
    width,
    height,
    x_offset,
    y_offset,
    f_width_ratio,
    is_visible_on_local_preview,
  );
}