问题标签 [uiimage]

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 投票
15 回答
163440 浏览

ios - 如何将图片保存到 iPhone 照片库?

我需要做什么才能将我的程序生成的图像(可能来自相机,也可能不是)保存到 iPhone 上的系统照片库中?

0 投票
1 回答
1541 浏览

objective-c - UITableView 之外的 UIImage 和 UILabel

看看这张图片:

替代文字 http://img139.imageshack.us/img139/4488/pi​​cture2ep3.png

我知道如何使用分组样式添加 UITableView 以及如何在任何表格单元格中添加标签。

但是如何在视图顶部添加图像和标签,例如屏幕。

0 投票
5 回答
76389 浏览

ios - NSData 和 UIImage

我正在尝试从 加载UIImage对象NSData,而示例代码是 to NSImage,我想它们应该是相同的。但是刚刚加载图像,我想知道解决UIImage加载NSData问题的最佳方法是什么。

0 投票
9 回答
30049 浏览

ios - How to get the size of a scaled UIImage in UIImageView?

The image.size attribute of UIImageView gives the size of the original UIImage. I would like to find out the size of the autoscaled image when it is put in the UIImageView (typically smaller than the original).

For example, I have the image set to Aspect Fit. Now I want to know its new height and width on the screen so I can draw accurately on the new scaled image.

Is there any way to do this without figuring it out myself based on the UIImageView size & UIImage original size (basically reverse engineering its scaling)?

0 投票
9 回答
126969 浏览

cocoa-touch - 用户捏屏幕时如何放大/缩小 UIImage 对象?

当用户在我的应用程序上执行标准捏合操作时,我想放大/缩小 UIImage 对象。我目前正在使用 UIImageView 来显示我的图像,如果该细节有任何帮助的话。

我试图弄清楚如何做到这一点,但到目前为止还没有这样的运气。

有什么线索吗?

0 投票
2 回答
5711 浏览

iphone - iPhone UIImagePickerController didFinishPickingImage:视图控制器之间的UIImage传输?

在我的应用程序中,我有一个 UIImagePickerController。选择图像后,我的视图控制器需要获取图像并将其传递给另一个视图控制器,该视图控制器被推送到 self.navigationController。但我总是得到 SEGFAULTS 或 nil 参数,诸如此类。如果您能告诉我这段代码有什么问题,我将不胜感激:

FirstViewController.m:

SecondViewController.m:

它们都将 currentpicture 定义为 UIImage *currentpicture;
我现在应该有 currentpicture 作为一些数据,但它每次都崩溃!我尝试了很多不同的事情,但我无法弄清楚。

0 投票
3 回答
17882 浏览

iphone - 从 iPhone 上的其他两个 UIImage 创建一个 UIImage

我正在尝试在 iPhone 上编写动画,但没有取得太大成功,出现崩溃并且似乎没有任何效果。

我想做的事情看起来很简单,创建一个 UIImage,然后在其中绘制另一个 UIImage 的一部分,我对上下文和图层和东西有点困惑。

有人可以用示例代码解释如何(有效地)编写类似的东西吗?

0 投票
1 回答
5843 浏览

iphone - UIImage 和 UIImageView 问题

将 UIImageView.image 属性设置为 UIImage 无法将图像添加到视图中,但是如果我设置 imageview 框架属性,它可以工作。谁能告诉我这是怎么发生的?当我应用 UIImage 实例方法 [drawInRect:] 重绘比视图框架大的图像框架时会发生什么?我尝试过但没有任何反应,这个函数实际上在做什么?

0 投票
4 回答
4121 浏览

iphone - 使用 iPhone API 拍照并将其传输到服务器

我写了一个可可应用程序来在 iPhone 上拍照。我需要将拍摄的图像传输到 iPhone 以外的某个地方,即另一台服务器。有谁知道我怎么能做到这一点?

谢谢,乔

0 投票
1 回答
353 浏览

iphone - 如何在图像上创建热链接?

我不确定 iPhone 版本的名称是什么,但在 HTML 中它是一个图像映射。地图的某些区域会将您引导至不同的页面。我想使用一个图像,主要是在滚动视图中,我可以让某些区域执行不同的操作。例如,Chemical Touch, http: //itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware ?id=288060442&mt=8就是这样做的。单击一个元素,它会变大以显示更多细节。这种技术叫什么?它是如何创建的?

我想与用户进行更多的互动,我该怎么做:

  • 将地图图钉拖放到此图像上
  • 根据我在该区域中是否有文本显示 UITextField
  • 根据用户操作覆盖文本

非常感谢这里的任何建议。