问题标签 [flutter-image]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
821 浏览

flutter - 如何检查颤振应用程序中的执行时间?

我已经创建了带有 API 集成的基本颤振应用程序。现在很少有 API 调用可以提供即时响应,但很少有非常慢的。我需要找出哪些电话让我响应缓慢。

0 投票
3 回答
2595 浏览

flutter - How to solve flutter "Infinity or NaN toInt" on some images

I have a simple project that should just display an image. I should mention that am very new to flutter.

Below is the main.dart

And here is the HomepageClass

The above code is giving me the error

The error points to the line that contains the image asset.

I have tried using several different images and it is working well with some images and gives error on other images. I need it to always work with all images.

A sample working image has dimensions 626 by 626 and is jpg A sample non working image has dimension 1080 by 768 and is png

I have tried replacing container with Expandable. I have appended height and width value to the container. Still not working I have changed the width and height of image to double.maxFinite. Not working.

I don't find anything on their docs that is helping.

Someone help me know where I am going wrong.

0 投票
0 回答
194 浏览

image - Flutter 图像保存在 iOS 中变得模糊

我创建了一个示例应用程序,它使用颤振将容器保存为图像。这与 android 设备完全兼容,并且保存的图像质量很好。但是,当我在 iPhone(模拟器和物理设备)中检查时,保存的图像质量不佳。

下面是我用来将容器保存为图像的代码,我只传递了需要保存的容器的全局键。

有人可以帮我解决这个问题吗?

0 投票
2 回答
556 浏览

flutter - 来自 post API 的 Flutter 显示图像

我正在使用 POST 请求(带有 json 正文)来检索 png 图像(二维码)。我怎么能显示这样的图像?我检查了 image.network 但它似乎只处理 GET 请求。

0 投票
0 回答
115 浏览

flutter - Flutter 图像裁剪无响应

我正在尝试从图库中挑选的图像中裁剪图像,该图像被完美地挑选,但是在尝试裁剪图像时,屏幕中似乎没有发生任何事情,并且在控制台中检测到一些问题,尽管我无法理解问题。我使用的代码来自官方 pub.dev 网站 [https://pub.dev/packages/image_cropper/example]

我的任务是:为

帮我解决这个问题,在此先感谢。

编码:

……

控制台屏幕截图

0 投票
1 回答
329 浏览

flutter - Flutter:图像 base64 编码 | 颤振中base64编码的字节不准确

通过使用 Image Cropper 和 Picker Libraries 的方式,我正在尝试将图像上传到服务器。它工作正常,但在 API 调用期间我需要编码为 base64,与在线图像到 base64 编码工具相比,这里编码的字符串是错误的。所以服务器无法保存数据,即使它保存了它似乎是无效的图像。请帮我解决这个问题。

我已经使用 Postman(在线 base64 图像工具)检查了 API,它工作正常。

代码 :

截屏

在线转换工具以这些字符开头

0 投票
1 回答
439 浏览

flutter - 不能将变量用作网络图像中的 URL,但直接在参数内使用 URL 可以正常工作。显示错误:URI 中未指定主机

当我在其中传递 imageURL 变量时,网络图像不会加载。但是,如果我直接在参数内使用 URL,那么它可以正常工作。我该如何解决这个问题,因为我需要从 FirebaseFirestore 获取 URL,所以我必须将它存储在 String 变量中。

这样做很好 -NetworkImage('https://images.ctfassets.net/3s5io6mnxfqz/6ZImCEzx6UuvuKaAiZEDDN/50479ee4a0902deb4eb1bab720ce248a/image1.jpg');

但这不起作用- NetworkImage(imageURL);

0 投票
0 回答
91 浏览

flutter - 使用相同的 Widget 渲染 SVG 和 PNG/JPG

目前,我正在使用Image.network渲染 PNG/JPG 和SvgPicture.network渲染 SVG。

但是,是否有一个 Widget 能够检测实际图像类型并根据类型自动选择Image.network或自动选择?SvgPicture.network

0 投票
1 回答
1518 浏览

sqlite - 如何从flutter app中的数据文件中删除图片

在我的应用程序中,我正在拍照并将其存储在设备中,还使用 ​​sqlite 存储路径。现在,如果我使用下面给出的代码删除数据,它会从本地数据库(sqlite)中删除,但不要从文件中删除图片。例如,我创建了 3 个事务并删除了其中的 2 个,但在文件中我仍然有 3 个图像(在文件中)。那么如何删除它们。请帮忙 。

保存:

删除:

}

详细代码:从这里拍摄或选择图片并将其传递给方法 =>

它来到这里然后我将它传递给上面给出的提供者删除方法(我只给出上面的费用删除方法)=>

0 投票
1 回答
145 浏览

image - 如果网络/资产图像无法加载圆形头像,有没有办法显示默认图像?

如果网络/资产图像无法加载,我想要一种加载占位符图像的方法。这是我尝试过的。