3

我一直在尝试使用 ColdFusion 10 以编程方式调整图像大小和裁剪图像。让我抓狂的是,我无法在保持相同宽度的同时从底部和顶部同样裁剪图像。

这是我目前拥有的,只有几行简单的:

    <cfimage source="images/test/airateapple.png" name="myImage" overwrite="yes">

    <cfif ImageGetWidth(myImage) gte 1024>
        <cfset ImageSetAntialiasing(myImage,"on")>
        <cfset ImageScaleToFit(myImage,800,"","mediumquality")>
        <cfif ImageGetHeight(myImage) gt 350> 
            <cfset sizeToCrop= ImageGetHeight(myImage) - 350>
            <cfset ImageCrop(myImage,0, sizeToCrop
                               , ImageGetWidth(myImage)
                               , ImageGetHeight(myImage) )>
        </cfif>

        <cfset finalImage=myImage>
    </cfif>

    <!--- Display the modified image in a browser. --->
    <cfimage source="#finalImage#" action="writeToBrowser">

例如,如果调整大小后图像高度为 500 像素,则应再裁剪 150 像素。更具体地说,从底部裁剪 75px,从顶部裁剪 75px。可能吗?

4

1 回答 1

4
<cfset sizeToCrop= ImageGetHeight(myImage) - 350>
<cfset ImageCrop(myImage, 0 
                     , #sizeToCrop# 
                     , #ImageGetWidth(myImage)#
                     , #ImageGetHeight(myImage)#
                   )>

如果你输出参数,你可以看到你的yheight值是关闭的。假设原始图像尺寸为500px x 500px. 现在你开始裁剪太低,(即y=150px)并使用原始高度而不是所需的高度(即350px)。

       // current code (wrong)
       ImageCrop(myImage, 0 , 150 , 500 , 500 )

要抓住图像的中心,您需要在y=75(即超高/2)处开始裁剪。然后使用所需的高度(即350px),而不是原来的:

       // ImageCrop( img, x, y, width, height )
       yPosition  = (originalHeight - desiredHeight) / 2;
       ImageCrop(myImage, 0, yPosition, originalWidth, desiredHeight );
于 2013-09-14T19:33:48.743 回答