小编bre*_*the的帖子

桶形/枕形变形的公式

对于桶形/枕形失真,无法理解如何获得图像中原始(x,y)的(x',y').

image-processing distortion

16
推荐指数
1
解决办法
3万
查看次数

Drupal查看集成hook_views_data

我的模块视图集成有问题.我需要提供有关添加视频和时间戳的用户的信息.视频字段是CCK嵌入式媒体字段,它存储在content_field_3d_party_video表中.

我的表架构:

function MODULE_schema() {
  $schema = array();

  $schema['video_data'] = array(
      'description' => t('Users and timestamps for video field'),
      'fields' => array(
        'value' => array(
          'description' => t('Emfield value'),
          'type' => 'varchar',
          'length' => '255',
          'not null' => TRUE,
          'default' => '',
        ),
        'uid' => array(
          'description' => t('User id'),
          'type' => 'int',
          'unsigned' => TRUE,
          'not null' => TRUE,
          'default' => 0,
        ),
        'timestamp' => array(
          'description' => t('Timestamp'),
          'type' => 'int',
          'unsigned' => TRUE,
          'not null' => TRUE, …
Run Code Online (Sandbox Code Playgroud)

drupal views drupal-6

6
推荐指数
1
解决办法
4824
查看次数

标签 统计

distortion ×1

drupal ×1

drupal-6 ×1

image-processing ×1

views ×1