Do you mean this?
else {
$command = $convert_options['convert_path']." -quality ".$ann_image_quality." -antialias -density 90 -font $ann_font_path -fill $ann_shadow_color -pointsize $ann_font_size -draw \"text $h_offset,$v_offset '$ann_text'\" \"$ann_src\" \"$ann_dest\"";
system($command);
$file_shd = $ann_dest.".shd";
rename($ann_dest, $file_shd);
$h_offset = $h_offset - $shadow_offset;
$v_offset = $v_offset - $shadow_offset;
$command = $convert_options['convert_path']." -quality ".$ann_image_quality." -antialias -density 90 -font $ann_font_path -fill $ann_fill_color -pointsize $ann_font_size -draw \"text $h_offset,$v_offset '$ann_text'\" \"$file_shd\" \"$ann_dest\"";
system($command);
@chmod($ann_dest, CHMOD_FILES);
@unlink($file_shd);