2

我正在使用 Facebook SDK 获取用户封面照片。我有到 img 的路径和偏移量 y。

  "source": "http://a5.sphotos.ak.fbcdn.net/hphotos-ak-ash3/526114_459046674110601_992101492_n.jpg",
  "offset_y": 19

我放置图像的 div 高度为 300px;和右背景位置是center -146px;top value当我有 300 和 19 时如何计算?

4

1 回答 1

0

offset_y是裁剪图像的上部区域和下部区域之间的空间比例。

所以,实际的像素偏移应该是这样的:

y = (offset_y / 100) * (upperArea_of_cropImage.height + lowerArea_of_cropImage.height)

编辑:

// where y is the actual pixels from the upper left corner of the real image to
// upper left corner of the cropped image

        -- ================================  --
    y {   ||                              ||    } a
        --||..............................|| --
          ||                              ||
          ||                              ||
          ||            Cover             ||
          ||                              ||
          ||..............................|| --
          ||                              ||    } b
          ||                              ||   |
           ================================  --

     offset_y that Facebook send to you actually was a/b not y
于 2012-08-30T12:47:04.163 回答