- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写 Windows Phone 8.1 (WINRT) 应用程序。我正在使用 fileopenpicker 从图库中选择一张图片,然后将其显示在我的应用程序中。但我希望用户可以在应用程序显示之前裁剪这张图片。
在 Windows Phone 8 中,我们使用 Photochooser task 自动使用宽度属性和裁剪选项。
现在我正在尝试使用它: Windows Phone 8.0: Image Crop With Rectangle
但是Windows Phone 8.1中没有WriteableBitmap.Pixels。使用什么代替 WriteableBitmap.Pixels?
// Create a new WriteableBitmap. The size of the bitmap is the size of the cropping rectangle
// drawn by the user, multiplied by the image size ratio.
WB_CroppedImage = new WriteableBitmap((int)(widthRatio * Math.Abs(Point2.X - Point1.X)), (int)(heightRatio * Math.Abs(Point2.Y - Point1.Y)));
// Calculate the offset of the cropped image. This is the distance, in pixels, to the top left corner
// of the cropping rectangle, multiplied by the image size ratio.
int xoffset = (int)(((Point1.X < Point2.X) ? Point1.X : Point2.X) * widthRatio);
int yoffset = (int)(((Point1.Y < Point2.Y) ? Point1.Y : Point2.X) * heightRatio);
// Copy the pixels from the targeted region of the source image into the target image,
// using the calculated offset
if (WB_CroppedImage.Pixels.Length > 0)
{
for (int i = 0; i < WB_CroppedImage.Pixels.Length; i++)
{
int x = (int)((i % WB_CroppedImage.PixelWidth) + xoffset);
int y = (int)((i / WB_CroppedImage.PixelWidth) + yoffset);
WB_CroppedImage.Pixels[i] = WB_CapturedImage.Pixels[y * WB_CapturedImage.PixelWidth + x];
}
// Set the source of the image control to the new cropped bitmap
FinalCroppedImage.Source = WB_CroppedImage;
}
else
{
FinalCroppedImage.Source = null;
}
最佳答案
你应该看看BitmapEncoder和 BitmapDecoder类。
您也可能会使用 BitmapBounds裁剪图像 - 设置“X”和“Y”以及“宽度”和“高度”。
我认为代码可能是这样的(但我没有测试过):
StorageFile destination; // your destination file
using (var sourceStream = await sourceFile.OpenAsync(FileAccessMode.Read))
{
BitmapDecoder bmpDecoder = await BitmapDecoder.CreateAsync(sourceStream);
// here you scale your image if needed and crop by setting X, Y, Width and Height
BitmapTransform bmpTransform = new BitmapTransform() { ScaledHeight = scaledHeight, ScaledWidth = scaledWidth, InterpolationMode = BitmapInterpolationMode.Cubic, Bounds = new BitmapBounds { X = topLeftX, Y = topLeftY Width = desiredSizeW, Height = desiredSizeH } };
PixelDataProvider pixelData = await bmpDecoder.GetPixelDataAsync(BitmapPixelFormat.Rgba8, BitmapAlphaMode.Straight, bmpTransform, ExifOrientationMode.RespectExifOrientation, ColorManagementMode.DoNotColorManage);
using (var destFileStream = await destination.OpenAsync(FileAccessMode.ReadWrite))
{
BitmapEncoder bmpEncoder = await BitmapEncoder.CreateAsync(BitmapEncoder.PngEncoderId, destFileStream);
// here you need to set height and width - take from above
bmpEncoder.SetPixelData(BitmapPixelFormat.Rgba8, BitmapAlphaMode.Straight, desiredSizeW, desiredSizeH, 300, 300, pixelData.DetachPixelData());
await bmpEncoder.FlushAsync();
}
}
当然你不需要将编辑后的图片保存到StorageFile - 我以它为例,你可以写入流然后设置你的图像源。
关于c# - Windows Phone 8.1 中的 WriteableBitmap.Pixels,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28319945/
我正在编写一个 cordova 应用程序,需要隔离这些谷歌手机以调整样式 鉴于此: 我很难区分任何一款 Google Pixel 手机。 @media only screen and (min-wid
在 Web 布局中为像素和百分比定义距离的用例是什么? 在多个分辨率方面使用像素有什么缺点吗?它们会正确缩放吗? 最佳答案 百分比布局 这通常称为流体布局。您的元素将占用它们可用总空间的定义百分比。这
我正在处理使用 pixel.getGreen() 方法的作业。我的问题是,当我尝试使用 pixel.getGreen (不带括号)时,我得到的结果与使用带括号的方法时得到的结果不同。两者有什么区别?
我正在寻找 Pixel 2 虚拟设备。我已经更新到最新的 Android Studio RC2 版本,但似乎 Pixel 设备是列表中的最后一个。 我知道我可以创建具有 Pixel 2 分辨率的自定义
我需要降低图片的实际分辨率,使 4 像素矩形中的每个像素都是这 4 个像素的平均值。 即 p1 p2 p6 p7 a1 a1 a2 a2 p3 p4 p8 p9 ... -> a1
我正在尝试使用 Electron 在桌面应用程序中创建一个简单的 javascript Canvas 游戏。我正在使用像素艺术,所以为了让我的像素艺术图像在缩放时保持良好的质量,我使用了以下 CSS:
我想对 ee.Image 逐个像素地执行一些计算,但是,计算的结果必须服从概率高斯分布,因此一些像素将被修改,而另一些则不会。我已经编写了一个概率函数,但我不知道如何将它应用于 GEE 中的每个像素。
这是我的代码: int columns 3; int columnWidth = self.layer.bounds.size.width / 3; for (int c = 1; c < colum
1.将image.jpg加载到数组中2.从数组中随机选择坐标并显示该像素及其所有属性3. 从数组中使用弹出坐标。4. 重复#2 直到数组为空 这将显示一个填充了随机像素的图像。 最终结果始终是原始图像
我正在开发一个从 Wi-Fi 摄像头接收 UPD 广播数据包的应用程序。 在我发现在 Google Pixel 2/Pixel 2 XL 接收 UPD 广播数据包的问题之前,它曾经很好。 为了找出原因
我想将新的 Google 手机添加到 Chrome 开发工具中的模拟设备中。 有人知道 Pixel 3 和 Pixel 3 XL 的正确自定义设备设置吗? 最佳答案 您必须输入 视口(viewport
我在我的 React Native 应用程序中使用 0.5px 边框。这在大多数设备上效果很好,但在 iPhone 6 plus 上,这些边框显得模糊。在阅读了像素比率之后here我决定使用类似下面的
我正在开发一个网站,想看看它在 Google Pixel 和 Google Pixel XL 设备上的运行情况。由于我无权访问这些设备,因此我需要知道这些设备的视口(viewport)宽度、高度和设备
我知道我们是在点而不是像素上操作,在大多数情况下这很方便,但我需要使 UIView 的高度为 1 像素而不是 2 像素。因此,如果您在 Interaface 构建器中拖放一些 UIView(分隔线),
摘要和目标: 我正在尝试制作一个着色器来为游戏编辑器执行简单的窗口效果。该效果将绘制一个具有低值边框颜色和高值突出显示的框架。我尝试了很多方法,但总的来说,我只提出了一种可能的解决方案来使用 GPU
我的代码目前包含加载图像,这是成功的,我认为与问题无关。 然后我继续将彩色图像转换为名为 rgb 的 np.array # convert image into array rgb =
我对使用 Visual C++ 进行图像处理相当陌生,我正在寻找一种方法来读取黑白 TIFF 文件并将图像写入表示 0 或 1 的十六进制值数组,然后获取 0 的位置信息(黑色)或 1(白色)。 经过
WebKit 引入了 -webkit-device-pixel-ratio 媒体功能和 window.devicePixelRatio JavaScript 属性,以允许网络作者检测他们的页面是否正在
我正在执行一项任务,将每个像素有 8 位 (uint8_t) 且每个像素只能为 0 或 1(或 255)的大型二进制标签图像转换为数组uint64_t 数字和 uint64_t 数字中的每一位代表一个
需要能够为不同的设备像素比值指定不同的 css。如何做到这一点 例如, 0 @media (-webkit-max-device-pixel-ratio:1.0) { > .
我是一名优秀的程序员,十分优秀!