Features::get_primary_item_features(): AvifinfoStatus

In this article

Finds the width, height, bit depth and number of channels of the primary item.

Return

AvifinfoStatus FOUND on success or NOT_FOUND on failure.

Source

public function get_primary_item_features() {
  // Nothing to do without the primary item ID.
  if ( !$this->has_primary_item ) {
    return NOT_FOUND;
  }
  // Early exit.
  if ( empty( $this->dim_props ) || empty( $this->chan_props ) ) {
    return NOT_FOUND;
  }
  $status = $this->get_item_features( $this->primary_item_id, /*tile_depth=*/ 0 );
  if ( $status != FOUND ) {
    return $status;
  }

  // "auxC" is parsed before the "ipma" properties so it is known now, if any.
  if ( $this->has_alpha ) {
    ++$this->primary_item_features['num_channels'];
  }
  return FOUND;
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.