6
วิธีการเข้ารหัส base64 ภาพใน linux bash / shell
ฉันพยายามที่จะเข้ารหัส base64 ภาพในเชลล์สคริปต์และใส่ลงในตัวแปร: test="$(printf DSC_0251.JPG | base64)" echo $test RFNDXzAyNTEuSlBH ฉันได้ลองทำสิ่งนี้ด้วย: test=\`echo -ne DSC_0251.JPG | base64\` แต่ก็ยังไม่ประสบความสำเร็จ ฉันต้องการทำสิ่งนี้: curl -v -X POST -d '{"image":$IMAGE_BASE64,"location":$LOCATION,"time_created":$TIMECREATED}' -H 'Content-type: text/plain; charset=UTF8' http://192.168.1.1/upload ฉันพบสิ่งนี้http://www.zzzxo.com/q/answers-bash-base64-encode-script-not-encoding-right-12290484.html แต่ก็ยังไม่ประสบความสำเร็จ