第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

更改像素值,保存并再次讀取返回原始顏色

更改像素值,保存并再次讀取返回原始顏色

Go
滄海一幻覺(jué) 2022-06-27 17:31:03
我想將像素的所有藍(lán)色值更改為 255,如果它等于 20。我讀取源圖像,將其繪制為新的 image.RGBA,以便我可以修改像素。但是,當(dāng)我獲取輸出圖像(在執(zhí)行程序之后)并將其作為輸入提供,并在 IF 塊內(nèi)放置一個(gè)調(diào)試點(diǎn),并在調(diào)試模式下運(yùn)行程序時(shí),我看到調(diào)試器在多點(diǎn)停止在那里。這意味著,我沒(méi)有正確修改圖像。誰(shuí)能告訴我,如何修改像素并正確保存?非常感謝func changeOnePixelInImage() {    imgPath := "./source.png"    f, err := os.Open(imgPath)    check(err)    defer f.Close()    sourceImage, _, err := image.Decode(f)    size := sourceImage.Bounds().Size()    destImage := image.NewRGBA(sourceImage.Bounds())    draw.Draw(destImage, sourceImage.Bounds(), sourceImage, image.Point{}, draw.Over)    for x := 0; x < size.X; x++ {        for y := 0; y < size.Y; y++ {            pixel := sourceImage.At(x, y)            originalColor := color.RGBAModel.Convert(pixel).            (color.RGBA)            b := originalColor.B            if b == 20 {                b = 255 // <--- then i swap source and destination paths, and debug this line            }            c := color.RGBA{                R: originalColor.R,                G: originalColor.G,                B: b,                A: originalColor.A,            }            destImage.SetRGBA(x, y, c)        }    }    ext := filepath.Ext(imgPath)    newImagePath := fmt.Sprintf("%s/dest%s", filepath.Dir(imgPath), ext)    fg, err := os.Create(newImagePath)    check(err)    defer fg.Close()    err = jpeg.Encode(fg, destImage, &jpeg.Options{100})    check(err)}
查看完整描述

1 回答

?
千巷貓影

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超7個(gè)贊

我找到了我的問(wèn)題的答案。問(wèn)題是,我正在解碼 jpeg 圖像,我從這個(gè) stackoverflow 問(wèn)題中發(fā)現(xiàn) JPEG 圖像會(huì)損失質(zhì)量(因此,像素值會(huì)在此過(guò)程中被修改):當(dāng)質(zhì)量設(shè)置為 100 時(shí),JPEG 是否無(wú)損?

所以,我應(yīng)該使用 PNG 圖像。(即使我使用source.png作為源圖像,它實(shí)際上是 jpg 圖像:/)

所以我將最后幾行更改為:

if ext != ".png" {    panic("cannot do my thing with jpg images, since they get compressed")}err = png.Encode(fg, destImage)


查看完整回答
反對(duì) 回復(fù) 2022-06-27
  • 1 回答
  • 0 關(guān)注
  • 136 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)