我有一个图像水印,该图像被转换为具有大约205个bin的音频wav 文件的二进制位和直方图。我需要在直方图中嵌入水印位。
add_action('transition_post_status', 'new_product_add', 10, 3);
function new_product_add($new_status, $old_status, $post) {
if(
$old_status != 'publish'
&& $new_status == 'publish'
&& !empty($post->ID)
&& in_array( $post->post_type,
array( 'product')
)
) {
$term = get_term_by('name', 'فروش پیج اینستاگرام', 'product_cat');
wp_set_object_terms($product_ID, $term->term_id, 'product_cat');
}
}
我的下一步是选择直方图的三个连续bin,并将其嵌入水印位。
如何处理所有问题,请提供帮助。
感谢所有人。