Zhiwen Lin
Zhiwen Lin
有没有计划支持一下SAP HANA。。。最近着实被这玩意搞得有点难受 **文档地址:** https://help.sap.com/viewer/b3ee5778bc2e4a089d3299b82ec762a7/2.0.02/en-US/9165807e2ded490ea06f46035c3e58b1.html
```c# public Bitmap CreateBitmapByImgVerifyCode(string verifyCode, int width, int height) { Random random = new Random(); Bitmap bitmap = new Bitmap(width, height); Graphics g = Graphics.FromImage(bitmap); using (var font = new...
After added `ENV LD_DEBUG=libs` in dockerfile  The pod log doesn't output the library paths that trying file both in the application just started and the captcha API was invoked....
yeap. the base container is also the final container.  and run `kubectl exec` enter the current kubernetes pod, run `echo $LD_DEBUG`, output `lib` correctly 
After comparing the two container which one is `r1` and another `r0`. Found some clues run `ldd /usr/lib/libgdiplus.so.0` to trace the denpendency in `r1` container, I found there is some...
学习了,感谢分享:)