Tag: 图片

如何获得android.widget.ImageView的宽度和高度?

╔══════════════════════════════════════════════╗ ^ ║ ImageView ╔══════════════╗ ║ | ║ ║ ║ ║ | ║ ║ Actual image ║ ║ | ║ ║ ║ ║ |60px height of ImageView ║ ║ ║ ║ | ║ ║ ║ ║ | ║ ╚══════════════╝ ║ | ╚══════════════════════════════════════════════╝ <————————————————> 90px width of ImageView 我有一个默认的高度和宽度的图像视图,图像存储在数据库中,我想根据ImageView的高度宽度缩放图像。 因为我不希望它给出默认值,因为当我改变它的高度和宽度时,我也必须在代码中进行更改。 我想获得ImageView的高度和宽度,但在这两种情况下返回给我0。 int height = ((ImageView) v.findViewById(R.id.img_ItemView)).getHeight(); […]

HTML5上传前预先调整图像的大小

这是一个面条刮刀。 请记住,我们有HTML5本地存储和xhr v2,什么不是。 我想知道是否有人可以find一个工作的例子,甚至只是给我一个是或否的这个问题: 是否有可能预先使用新的本地存储(或其他)图像的大小,以便一个用户谁不知道调整图像的大小,可以拖动他们的10MB图像到我的网站,resize使用新的本地存储和那么以较小的尺寸上传它。 我完全知道你可以用Flash,Java applets,active X来做…问题是如果你可以用Javascript + Html5做。 期待在这一个回应。 Ta现在。

以编程方式更改img标签的src

我怎样才能改变使用JavaScript的img标签的src属性? <img src="../template/edit.png" name=edit-save/> 首先我有一个默认的src,它是“../template/edit.png”,我想用“../template/save.png”onclick来改变它。 更新:这是我的HTML onclick: <a href='#' onclick='edit()'><img src="../template/edit.png" id="edit-save"/></a> 和我的JS function edit() { var inputs = document.myform; for(var i = 0; i < inputs.length; i++) { inputs[i].disabled = false; } } 我已经试过在edit()中插入这个,它工作,但需要点击图像两次 var edit_save = document.getElementById("edit-save"); edit_save.onclick = function(){ this.src = "../template/save.png"; }

有没有办法使用Java截图并将其保存为某种图像?

简单的标题说明:你只能使用Java命令来截图并保存它吗? 或者,我是否需要使用特定于操作系统的程序来截取屏幕截图,然后从剪贴板中抓取它?

用相同的URL刷新一个新的图像

我正在访问我的网站上的链接,每次访问时都会提供一个新的图像。 我遇到的问题是,如果我尝试在后台加载图像,然后更新页面上的图像,则图像不会更改 – 尽pipe在重新加载页面时会更新图像。 var newImage = new Image(); newImage.src = "http://localhost/image.jpg"; function updateImage() { if(newImage.complete) { document.getElementById("theText").src = newImage.src; newImage = new Image(); number++; newImage.src = "http://localhost/image/id/image.jpg?time=" + new Date(); } setTimeout(updateImage, 1000); } 正如FireFox看到的那样: HTTP/1.x 200 OK Cache-Control: no-cache, must-revalidate Pragma: no-cache Transfer-Encoding: chunked Content-Type: image/jpeg Expires: Fri, 30 Oct 1998 14:19:41 GMT […]

显示从iPhone中的ALAsset中检索的URL的图像

我正在使用ALAsset框架来访问设备照片库中的文件。 到目前为止,我可以访问缩略图并显示它。 我想显示图像视图中的实际图像,但我无法弄清楚如何做到这一点。 我尝试使用ALAsset对象中的URL字段,但不成功。 有人知道如何做到这一点? 以下是我能够访问缩略图的一些代码,并将其放在表格单元格中: – (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; } //here 'asset' represents the ALAsset object asset = [assets objectAtIndex:indexPath.row]; //i am accessing the thumbnail here [cell.imageView setImage:[UIImage imageWithCGImage:[asset […]