base64上傳頭像
A. C#關於上傳圖片轉換base64字元串問題
圖片轉成byte[] 然後用Convert.ToBase64String方法轉換成base64就行了
B. 正常php上傳圖片要轉成base64編碼么,為什麼要這么做
int WINAPI icePub_base64EncodeFile(char *strFromFilename,char *strBase64Filename);int WINAPI icePub_base64DecodeFile(char *strBase64Filename,char *strToFilename);網路icePubDll.dll下載
C. thinkphp3.1頭像剪切上傳怎麼把jquery剪切好的圖片上傳保存到資料庫
canvas
轉成
base64位,然後得到圖片的編碼,然後上傳到資料庫
D. 從base64字元串獲取圖像問題,怎麼解決
需要在php端處理base64字元串里的頭部信息
貼一段我正在用的
php($stream是你傳上來的base64
//獲取擴展名和文件名 if (preg_match('/(?<=\/)[^\/]+(?=\;)/',$stream,$pregR)) $streamFileType ='.' .$pregR[0]; //讀取擴展名,如果你的程序僅限於畫板上來的,那一定是png,這句可以直接streamFileType 賦值png $streamFileRand = date('YmdHis').rand(1000,9999); //產生一個隨機文件名(因為你base64上來肯定沒有文件名,這里你可以自己設置一個也行) $streamFilename = $upPath."/".$streamFileRand .$streamFileType; //處理base64文本,用正則把第一個base64,之前的部分砍掉 preg_match('/(?<=base64,)[\S|\s]+/',$stream,$streamForW); if (file_put_contents($streamFilename,base64_decode($streamForW[0]))===false) Common::exitWithError("文件寫入失敗!","");//這是我自己的一個靜態類,輸出錯誤信息的,你可以換成你的程序
字元串,假設隨機命名,如果你不要隨機命名,可以改streamFileRand 的值,$upPath是你上傳路徑):
E. 如何把src為base64格式的img上傳到伺服器
我也正在做,一起研究吧
$.post("/unifiedtool/uploadProctImg", { "img": 「data:image/png;base64,...
」},function(ret){
if(ret.img!=""){
img.src = ret;
}else{
alert("upload fail");
}
});
伺服器那邊
String imgString =request.getParameter("img");
UserBean user = (UserBean)request.getSession().getAttribute("user") ;
String language_id = request.getParameter("language_id");
//對位元組數組字元串進行Base64解碼並生成圖片
if (imgString == null) //圖像數據為空
return "img error";
imgString = imgString.substring(imgString.indexOf(",")+1, imgString.length());
String imgFilePath = "";
BASE64Decoder decoder = new BASE64Decoder();
try
{
//Base64解碼
byte[] b = decoder.decodeBuffer(imgString);
for(int i=0;i<b.length;++i)
{
if(b[i]<0)
{//調整異常數據
b[i]+=256;
}
}
//生成jpeg圖片
File newPath = new File(request.getSession().getServletContext().getRealPath("/")+"download/"+user.getUserid()+"/proct/"+language_id+"/0");
if(!newPath.exists()){
newPath.mkdirs();
imgFilePath = "1.jpg";
}else{
if(newPath.list().length > 0){
imgFilePath = (newPath.list().length+1)+".jpg";
}else{
imgFilePath = "1.jpg";
}
}
//String imgFilePath = "d:\\1111.jpg";//新生成的圖片
OutputStream out = new FileOutputStream(newPath+"/"+imgFilePath);
out.write(b);
out.flush();
out.close();
}
catch (Exception e)
{
return "img error";
}
return "/download/"+user.getUserid()+"/proct/"+language_id+"/0/"+imgFilePath;
ok
F. 圖片為什麼要用base64上傳
問題不詳細,BASE64是一種語言,樓主要往哪兒上床啊
G. IOS 我要上傳頭像 現在的問題是 能傳成功 但是伺服器那 圖片打不開 說我傳上去的Str不對
//圖片轉字元串
-(NSString *)UIImageToBase64Str:(UIImage *) image
{
NSData *data = UIImageJPEGRepresentation(image, 1.0f);
NSString *encodedImageStr = [data :];
return encodedImageStr;
}
//字元串轉圖片
-(UIImage *)Base64StrToUIImage:(NSString *)_encodedImageStr
{
NSData *_decodedImageData = [[NSData alloc] initWithBase64Encoding:_encodedImageStr];
UIImage *_decodedImage = [UIImage imageWithData:_decodedImageData];
return _decodedImage;
}
H. vue 上傳圖片時 base64 怎麼傳到java後台
base64字元串你需要在後台轉換成文件流。
I. php圖片上傳為什麼要base64上傳
可以讓別人看不到你的路徑,還要base64可以存入資料庫,
J. php怎麼實現頭像上傳到客戶端
php根據APP的上傳方式來決定PHP端的獲取方式,多數都是表單式上傳。
$_FILES; file_get_contents('php://input')都可以。
還有的是先在客戶端讀取了文件內容,再base64編碼,再上傳。
比較簡單的大文件斷點上傳,其實就可以靠APP處理。