Questions tagged «image»

image标签用于与在源代码的上下文中图像的加载,格式化,保存,压缩和显示有关的问题。此标记还应用于使用各种图像库的帮助。有关特定图像格式的问题应包括这些格式的标签。如果问题与格式转换,处理等有关,请添加标签以提及。

13
删除图像中的Alpha通道
我有一个适用于iOS的应用程序图标,但Apple不允许Alpha出现在图像中。如何删除此Alpha通道?我只有PNG图片,没有源文件,因为我的朋友为我制作了图片。
103 ios  image  alpha 


12
使用Node.js,Express和Mongoose上传图像
多年来,随着事情的变化,请考虑提供更多最新信息的较新答案! 由于许多新的Node.js库很快就变得过时了,无论如何我想问一下使用以下方法上传图像的例子相对较少: Node.js(v0.4.1) 快递(1.0.7) 猫鼬(1.1.0)。 别人如何做? 我发现:node-formidable,但是我是一般上载图像的新手,所以我想学习使用Node.js和Express的一般知识和方法。


6
如何在Linux bash / shell中对图像进行base64编码
我正在尝试对shell脚本中的图像进行base64编码并将其放入变量中: test="$(printf DSC_0251.JPG | base64)" echo $test RFNDXzAyNTEuSlBH 我也尝试过这样的事情: test=\`echo -ne DSC_0251.JPG | base64\` 但仍然没有成功。 我想做这样的事情: curl -v -X POST -d '{"image":$IMAGE_BASE64,"location":$LOCATION,"time_created":$TIMECREATED}' -H 'Content-type: text/plain; charset=UTF8' http://192.168.1.1/upload 我找到了这个http://www.zzzxo.com/q/answers-bash-base64-encode-script-not-encoding-right-12290484.html 但仍然没有成功。
102 linux  image  shell  variables  base64 



20
如何在Swift中为UIImage着色?
我有一张名为的图片arrowWhite。我想将此图像着色为黑色。 func attachDropDownArrow() -> NSMutableAttributedString { let image:UIImage = UIImage(named: "arrowWhite.png")! let attachment = NSTextAttachment() attachment.image = image attachment.bounds = CGRectMake(2.25, 2, attachment.image!.size.width - 2.25, attachment.image!.size.height - 2.25) let attachmentString = NSAttributedString(attachment: attachment) let myString = NSMutableAttributedString(string: NSString(format: "%@", self.privacyOptions[selectedPickerRow]) as String) myString.appendAttributedString(attachmentString) return myString } 我想得到这张图片blackColour。 tintColor不管用...
101 ios  image  swift  colors  uiimage 

5
在Android中叠加两个图像以设置一个imageview
我正在尝试在应用程序中叠加两个图像,但是它们似乎在我的canvas.setBitmap()行崩溃了。我究竟做错了什么? private void test() { Bitmap mBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.t); Bitmap mBitmap2 = BitmapFactory.decodeResource(getResources(), R.drawable.tt); Bitmap bmOverlay = Bitmap.createBitmap(mBitmap.getWidth(), mBitmap.getHeight(), mBitmap.getConfig()); Canvas canvas = new Canvas(); canvas.setBitmap(bmOverlay); canvas.drawBitmap(mBitmap, new Matrix(), null); canvas.drawBitmap(mBitmap2, new Matrix(), null); testimage.setImageBitmap(bmOverlay); }
100 android  image 

17
检测WebP支持
如何通过Javascript检测对WebP的支持?如果可能,我想使用功能检测而不是浏览器检测,但是我找不到方法。Modernizr(www.modernizr.com)不会对其进行检查。
99 javascript  html  image  webp 

5
WPF:如何以原始尺寸显示图像?
我在WPF中显示图像时遇到问题。 这是我的代码: <Button HorizontalAlignment="Left" Grid.Column="1" Grid.Row="5" Margin="0,5"> <Button.Content> <StackPanel Orientation="Horizontal" Margin="10,0"> <Image Source="/images/user_add.png" Stretch="None" HorizontalAlignment="Center" VerticalAlignment="Center" Width="24" Height="24" /> <TextBlock Text="添加" /> </StackPanel> </Button.Content> </Button> 我有一个原始尺寸为32 * 32的图像,但是当我运行上述代码时,该图像将拉伸以填充所有空间,超出其原始尺寸。我也将“ Stretch”属性设置为“ None”,但似乎不起作用。 那么,如何解决此问题?谢谢!
98 wpf  image  resize  size 


20
PHP:如何检查图像文件是否存在?
我需要查看CDN上是否存在特定图像。 我尝试了以下方法,但不起作用: if (file_exists(http://www.example.com/images/$filename)) { echo "The file exists"; } else { echo "The file does not exist"; } 即使图像存在或不存在,它始终会显示“文件存在”。我不确定为什么它不起作用...
97 php  image  file  file-io 

2
使用PHPMailer发送电子邮件-将图像嵌入体内
我正在尝试使用图像发送带有PHPMailer的HTML邮件。正文是从包含所有信息的html文件加载的。 发送邮件时,该图像不会出现在正文中,尽管我什至也将图像作为附件发送。 HTML <img>标记指向与该位置相同的位置。 PHP: $mail->AddAttachment('img/2u_cs_mini.jpg'); 如何使html指向附件,以便可以将图像加载到正文中。 查看PHPMailer附带的示例,我没有发现任何差异,在这种情况下,确实出现了图像。
97 php  html  image  email  phpmailer 

10
如何用CSS斜穿
我需要这样的东西: 如何使用CSS实现呢?我知道一种方法是使用背景图片,但是我可以仅使用css来实现此功能吗?

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.