ios开发
风的影子fengdeyingzi
主要写java代码,研究Flutter,偶尔php,后端看好Go,游戏开发用egret。
安卓/iOS跨平台开发者,热爱跨平台技术。写过超多项目。
展开
-
【C/Java/Dart/Go/Js】处理文件名不能包含字符\/:*?“<>|
C语言//检测文件名是否合法,不包含:\/:*?“<>|int CheckFileName(char *path) { int i = 0; for(i = strlen(path) - 1; i >= 0; i--){ if(path[i] == '\\' || path[i] == '/' || path[i] == ':' || path[i] == '*' || path[i] == '?' || path[i] == '"' || path[i] == '<'原创 2021-09-23 10:46:15 · 1861 阅读 · 0 评论 -
Flutter 获取图片宽高
实现思路先读取图片到ui.Image,再调用image.width image.height属性拿到宽高代码注:需要先import ‘dart:ui’ as ui; static Future<ui.Image> loadImage(String url) async { AssetBundle _bundle = rootBundle; ImageStream stream = new AssetImage(url, bundle: _bundle).resolve(原创 2020-11-06 09:44:48 · 3083 阅读 · 0 评论