2
如何將多個(本例中爲10)圖像「條」(所有等寬)組合成一個圖像與ChunkyPNG?用ChunkyPNG將多個圖像「條」組合成一個圖像
現在,我將所有這些圖像條存儲在一個數組中,並且在某些時候我將不得不根據像素數據來安排它們。這裏是我的代碼是這樣的:
require 'chunky_png'
image = ChunkyPNG::Image.from_file('input.png')
width = image.dimension.width
currentWidth = 0
strips = []
20.times do
image2 = image.crop(currentWidth, 0, 32, 359)
strips << image2
currentWidth += 32
end
我是新來ruby編程和chunkypng,所以任何幫助,非常感謝。
謝謝。
謝謝,工作完美 – initWithStyle