亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

從存儲桶將多個文件傳遞給 exec.Command 調用

從存儲桶將多個文件傳遞給 exec.Command 調用

Go
慕田峪9158850 2023-07-04 16:49:55
我正在嘗試構建一個用 Go 編寫的云函數,它將使用 Google 云函數基礎設施中可用的 ImageMagick 庫將多個圖像合成和操作為結果輸出圖像。問題的根源是我想使用的 ImageMagick 函數可用,但它需要多個不同的輸入才能工作。我的輸入是存儲桶中的對象。os/exec Cmd 結構允許您通過使用“ExtraFiles”數組來執行此操作,并且我知道如何向我的 ImageMagick 命令提供這些額外文件。但是,“ExtraFiles”數組只想存儲 os.File 的實例,而 GCP 存儲客戶端在您打開文件時會為您提供一個“Reader”實例。        backgroundBlob := storageClient.Bucket(inputBucket).Object(background)        backgroundImg, err := backgroundBlob.NewReader(ctx)        if err != nil {                return "", fmt.Errorf("backgroundImg: %v", err)        }        foregroundBlob := storageClient.Bucket(inputBucket).Object(foreground)        foregroundImg, err := foregroundBlob.NewReader(ctx)        if err != nil {                return "", fmt.Errorf("foregroundImg: %v", err)        }        outputBlob := storageClient.Bucket(outputBucket).Object(output)        outputImg := outputBlob.NewWriter(ctx)        defer outputImg.Close()        // Set up some additional file handles since we're dealing with more inputs than STDIN Can cope with        cmd := exec.Command("convert", "fd:3", "fd:4", "-composite", "fd:5")        cmd.ExtraFiles = append(cmd.ExtraFiles,backgroundImg)        cmd.ExtraFiles = append(cmd.ExtraFiles,foregroundImg)        cmd.ExtraFiles = append(cmd.ExtraFiles,outputImg)        if err := cmd.Run(); err != nil {                return "", fmt.Errorf("cmd.Run: %v", err)        }        log.Printf("Blurred image has been uploaded to %s", outputBlob.ObjectName())        return outputBlob.ObjectName(), nil}```So, from where I am at the moment, I need to do one of the following two things:1. Figure out how to get Google's storage API to treat/use objects in their storage buckets as "os.File"sOR2. Figure out how to execute my "convert" command using multiple Readers as input, rather than leveraging the ExtraFiles array.If anybody out there has any ideas on how to achieve either of the above, or has alternate ways of solving this problem, I would be very grateful to hear them!
查看完整描述

1 回答

?
慕俠2389804

TA貢獻1719條經驗 獲得超6個贊

對于將來遇到這個問題的任何人 - 我找到了一個解決方法。我對它并不感到興奮,但它很實用。


本質上,我能夠獲取存儲讀取器的內容,然后在 Cloud Functions 上下文中創建我自己的 os.File 對象。然后,將該 os.File 傳遞給 exec.Cmd 調用。這絕對不理想,但代碼如下:


func Overlay(ctx context.Context, inputBucket, outputBucket, background string, foreground string, output string) (string, error) {

        // Retrieve the Background Image from the storage API

        backgroundBlob := storageClient.Bucket(inputBucket).Object(background)

        backgroundImg, err := backgroundBlob.NewReader(ctx)

        if err != nil {

                return "", fmt.Errorf("backgroundImg: %v", err)

        }        

        // Read the contents of the file into a variable

        backgroundSlurp, err := ioutil.ReadAll(backgroundImg)

        if err != nil {

                return "", fmt.Errorf("readFile: unable to read data from bucket %q, file %q: %v", inputBucket, background, err)

        }

        // Write the contents of Background Image to an os.File instance

        err = ioutil.WriteFile(fmt.Sprintf("/tmp/%s",background), backgroundSlurp, 0644)

        if err != nil {

                return "", fmt.Errorf("backgroundImg: %v", err)

        }

        // Open the os.File instance to pass it on to os.exec later

        backgroundFile, err := os.Open(fmt.Sprintf("/tmp/%s",background))

        if err != nil {

                return "", fmt.Errorf("backgroundFile: %v", err)

        }


        foregroundBlob := storageClient.Bucket(inputBucket).Object(foreground)

        foregroundImg, err := foregroundBlob.NewReader(ctx)

        if err != nil {

                return "", fmt.Errorf("foregroundImg: %v", err)

        }

        // Read the contents of the file into a variable

        foreroundSlurp, err := ioutil.ReadAll(foregroundImg)

        if err != nil {

                return "", fmt.Errorf("readFile: unable to read data from bucket %q, file %q: %v", inputBucket, foreground, err)

        }

        // Write the contents of Foreground Image to an os.File instance

        err = ioutil.WriteFile(fmt.Sprintf("/tmp/%s",foreground), foreroundSlurp, 0644)

        if err != nil {

                return "", fmt.Errorf("foregroundImg: %v", err)

        }

        // Open the os.File instance to pass it on to os.exec later

        foregroundFile, err := os.Open(fmt.Sprintf("/tmp/%s",foreground))

        if err != nil {

                return "", fmt.Errorf("foregroundFile: %v", err)

        }


        outputBlob := storageClient.Bucket(outputBucket).Object(output)

        outputImg := outputBlob.NewWriter(ctx)

        defer outputImg.Close()


        // Set up some additional file handles since we're delaqing with more inputs than STDIN Can cope with

        cmd := exec.Command("convert", "fd:3", "fd:4", "-composite", "-")

        cmd.Stdout = outputImg

        cmd.ExtraFiles = append(cmd.ExtraFiles,backgroundFile)

        cmd.ExtraFiles = append(cmd.ExtraFiles,foregroundFile)


        if err := cmd.Run(); err != nil {

                return "", fmt.Errorf("cmd.Run: %v", err)

        }


        log.Printf("Blurred image has been uploaded to %s", outputBlob.ObjectName())


        return outputBlob.ObjectName(), nil

}


查看完整回答
反對 回復 2023-07-04
  • 1 回答
  • 0 關注
  • 162 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號