Questions tagged «resize»

与控件,窗口,窗体或屏幕的大小调整有关的问题。

29
调整UIImage大小的最简单方法?
在我的iPhone应用程序中,我用相机拍摄照片,然后将其尺寸调整为290 * 390像素。我正在使用此方法调整图像大小: UIImage *newImage = [image _imageScaledToSize:CGSizeMake(290, 390) interpolationQuality:1]; 它可以完美工作,但是它是一个未记录的功能,因此我无法在iPhone OS4上使用它。 那么...调整UIImage大小的最简单方法是什么?
397 ios  uiimage  resize 

30
创建具有自动调整大小的文本区域
有关于这个另一个线程,我已经试过。但是有一个问题:textarea删除内容不会缩小。我找不到将其缩小到正确大小的任何方法-该clientHeight值以的完整大小返回textarea,而不是其内容的大小。 该页面上的代码如下: function FitToContent(id, maxHeight) { var text = id && id.style ? id : document.getElementById(id); if ( !text ) return; var adjustedHeight = text.clientHeight; if ( !maxHeight || maxHeight > adjustedHeight ) { adjustedHeight = Math.max(text.scrollHeight, adjustedHeight); if ( maxHeight ) adjustedHeight = Math.min(maxHeight, adjustedHeight); if ( adjustedHeight > …

19
使用React重新调整浏览器的渲染视图
调整浏览器窗口大小时,如何让React重新渲染视图? 背景 我有一些块要在页面上单独布局,但是我还希望它们在浏览器窗口更改时更新。最终结果将类似于Ben Holland的 Pinterest布局,但使用React编写的不仅是jQuery。我还有一段路要走。 码 这是我的应用程序: var MyApp = React.createClass({ //does the http get from the server loadBlocksFromServer: function() { $.ajax({ url: this.props.url, dataType: 'json', mimeType: 'textPlain', success: function(data) { this.setState({data: data.events}); }.bind(this) }); }, getInitialState: function() { return {data: []}; }, componentWillMount: function() { this.loadBlocksFromServer(); }, render: function() …

7
使用jQuery获取视口大小
如何使用jQuery确定浏览器视口的大小,并在调整页面大小后重新检测到它?我需要在该空间中放入一个IFRAME大小(每个边距都略有间隔)。 对于那些不知道的人,浏览器视口不是文档/页面的大小。它是滚动前窗口的可见大小。
307 jquery  resize  size  viewport 

17
如何调整图像C#的大小
如Size,Width和Height是Get()的性质System.Drawing.Image; 如何在运行时使用C#调整Image对象的大小? 现在,我正在Image使用以下方法创建一个新的: // objImage is the original Image Bitmap objBitmap = new Bitmap(objImage, new Size(227, 171));
288 c#  image  resize 



21
在Android上调整大位图文件的大小以缩放输出文件
我在文件中有一个大的位图(例如3888x2592)。现在,我想将该位图的大小调整为800x533并将其保存到另一个文件中。我通常会通过调用Bitmap.createBitmapmethod 来缩放位图,但是它需要源位图作为第一个参数,我无法提供,因为将原始图像加载到Bitmap对象中当然会超出内存(例如,请参见此处)。 我也无法读取与位图,例如BitmapFactory.decodeFile(file, options),提供了BitmapFactory.Options.inSampleSize,因为我想将它调整到一个确切的宽度和高度。使用inSampleSize会将位图的大小调整为972x648(如果使用inSampleSize=4)或778x518(如果使用inSampleSize=5,则甚至不是2的幂)。 我还想避免在第一步中使用inSampleSize读取图像,例如,在972x648上读取图像,然后在第二步中将其尺寸调整为恰好为800x533,因为与直接调整原始图像的尺寸相比,其质量很差。 总结一下我的问题:是否可以读取10MP或更大的大图像文件并将其保存到新的图像文件中,并调整大小为特定的新宽度和高度,而不会出现OutOfMemory异常? 我还尝试BitmapFactory.decodeFile(file, options)将Options.outHeight和Options.outWidth值手动设置为800和533,但这种方式不起作用。
218 android  image  resize  bitmap 


13
如何以编程方式调整自定义视图的大小?
我正在编码自RelativeLayout扩展的自定义视图,并且想以编程方式调整它的大小,该怎么办? 自定义视图类类似于: public ActiveSlideView(Context context, AttributeSet attr){ super(context, attr); LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); if(inflater != null){ inflater.inflate(R.layout.active_slide, this); }
164 android  resize 

5
如何使用OpenCV2.0和Python2.6调整图像大小
我想使用OpenCV2.0和Python2.6显示调整大小的图像。我在http://opencv.willowgarage.com/documentation/python/cookbook.html上使用并采用了该示例,但是不幸的是,该代码是针对OpenCV2.1的,并且似乎不适用于2.0。这是我的代码: import os, glob import cv ulpath = "exampleshq/" for infile in glob.glob( os.path.join(ulpath, "*.jpg") ): im = cv.LoadImage(infile) thumbnail = cv.CreateMat(im.rows/10, im.cols/10, cv.CV_8UC3) cv.Resize(im, thumbnail) cv.NamedWindow(infile) cv.ShowImage(infile, thumbnail) cv.WaitKey(0) cv.DestroyWindow(name) 由于我不能使用 cv.LoadImageM 我用了 cv.LoadImage 而是在其他应用程序中没有问题。但是,cv.iplimage没有属性行,列或大小。谁能给我一个提示,如何解决这个问题?谢谢。

9
如何使用CSS缩放整个网页?
使用Firefox,您只需按一下即可放大整个网页CTRL +。这样做是按比例放大整个网页(字体,图像等)。 如何仅使用CSS复制相同的功能? 是否有类似的东西page-size: 150%(它将使整个页面的部分增加x%?)
151 html  css  resize 

7
WPF:将宽度(和高度)设置为百分比值
说我想要一个TextBlock有它Width等于它的父容器的Width(也就是说,从一边到另一边拉伸)或它的父容器的百分比Width,我怎么能在做到这一点XAML,而无需指定绝对值? 我想这样做,以便如果稍后将“父容器”容器展开(Width增加),其“子元素”也将自动展开。(基本上,就像在HTML和CSS中一样)
149 wpf  xaml  resize 


4
Android:如何以编程方式设置布局的大小
作为Android应用程序的一部分,我正在构建按钮集。这些按钮是一组LinearLayouts的一部分。使用权重,我可以根据包含父级LinearLayout的大小自动调整其大小。这个想法是基于屏幕的像素数和密度,将包含布局的大小设置为多个像素。并根据更改更改按钮的大小。 然后的问题是:如何调整布局的大小。 我已经尝试了几种建议的技术,但没有一种接近工作。这是构建按钮集的XML的子集: <LinearLayout android:layout_height="104pt" android:id="@+id/numberPadLayout" android:orientation="horizontal" android:layout_width="104pt" android:background="#a0a0a0" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" > <LinearLayout android:layout_weight="2" android:layout_height="fill_parent" android:id="@+id/linearLayout1" android:orientation="vertical" android:layout_width="wrap_content"> <Button android:text="1" android:id="@+id/button1" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button> <Button android:text="4" android:id="@+id/button4" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button> <Button android:text="7" android:id="@+id/button7" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button> <Button android:text="-" android:id="@+id/buttonDash" android:layout_weight="2" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button> </LinearLayout> <LinearLayout android:layout_weight="2" android:layout_height="fill_parent" android:id="@+id/linearLayout2" android:orientation="vertical" android:layout_width="wrap_content"> <Button …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.