为什么我总是遇到这个错误
@Font_Size=params['FontSize'].to_i
img.annotate(txt,0,0,@XDIM[xLoop].to_i,@YDIM[xLoop].to_i,@Trans[xLoop]){
txt.gravity=Magick::SouthGravity
txt.pointsize=@Font_Size <<<<######### The Error Line
txt.stroke='#000000'
txt.fill='#ff0000'
txt.font_weight=Magick::BoldWeight
}
为什么总是收到错误no implicit conversion to float from nil
我试图将大小转换为int但仍然会出现此错误