쿼리:
여러 이미지(i1 및 i2)를 어떻게 배치하고 회전합니까? Golang의 배경 이미지(bi), 올바른 위치 지정 및 겹치는 Z-인덱스 보장 이미지?
해결책:
이를 달성하려면 Golang의 이미지 패키지를 활용하고 이미지 조작을 위해 Graphics-go 패키지를 활용할 수 있습니다. 솔루션을 시각화하는 코드 조각은 다음과 같습니다.
package main import ( "fmt" "image" "image/draw" "image/jpeg" "code.google.com/p/graphics-go/graphics" "os" ) func main() { // Load the background image fImg1, _ := os.Open("background.jpg") defer fImg1.Close() bi, _, _ := image.Decode(fImg1) // Load the overlay images fImg2, _ := os.Open("overlay1.jpg") defer fImg2.Close() i1, _, _ := image.Decode(fImg2) fImg3, _ := os.Open("overlay2.jpg") defer fImg3.Close() i2, _, _ := image.Decode(fImg3) // Create a new image to hold the final result m := image.NewRGBA(image.Rect(0, 0, bi.Bounds().Max.X, bi.Bounds().Max.Y)) // Draw the background image draw.Draw(m, m.Bounds(), bi, image.Point{0, 0}, draw.Src) // Draw the overlay images with the specified positioning and rotation graphics.Rotate(m, i1, &graphics.RotateOptions{3.141592653589793, 0, 0}) graphics.Draw(m, m.Bounds(), i2, image.Point{100, 100}, draw.Src) // Save the final image to a file toimg, _ := os.Create("new.jpg") defer toimg.Close() jpeg.Encode(toimg, m, &jpeg.Options{jpeg.DefaultQuality}) fmt.Println("Image manipulation complete. Saved as 'new.jpg'.") }
이 예에서 m 변수는 배경 및 오버레이 이미지가 그려지는 이미지 캔버스를 나타냅니다. Graphics.Rotate 함수는 제공된 z-index 값을 기반으로 오버레이 이미지를 회전하는 데 사용됩니다. 조작이 완료된 후 최종 이미지는 "new.jpg"로 저장됩니다.
위 내용은 적절한 Z-Index를 사용하여 Golang에서 여러 이미지를 배치하고 회전하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!