- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不知道我的标题是否能表达我现在面临的问题。我来详细解释一下:
我正在从 RichEditableTexts 生成 bmp 图像,我正在使用 Bitmap 类来获取 DisplayObject 属性,这将允许我将其作为像素进行管理。
然后我有这个功能:
/*
* Create a 8 bit BMP image as bytearray, with 256 color ( grayscale ).
*
*/
private static function encode( bitmapData:BitmapData ):ByteArray {
// bit depth configuration
var bytesPerPixel:int = 1;
var bitDepth:int = 8;
// image/file properties
var bmpWidth:int = bitmapData.width;
var bmpHeight:int = bitmapData.height;
var imageBytes:ByteArray = bitmapData.getPixels( bitmapData.rect );
/* Image from Preview size */
var imageSize:int = bmpWidth * bmpHeight * bytesPerPixel;
/* Image offset */
var imageDataOffset:int = 0x436;
/* File size */
var fileSize:int = imageSize + imageDataOffset;
// binary BMP data
var bmpBytes:ByteArray = new ByteArray();
bmpBytes.endian = Endian.LITTLE_ENDIAN; // byte order
// header information
bmpBytes.length = fileSize;
bmpBytes.writeByte(0x42); // B //0
bmpBytes.writeByte(0x4D); // M (BMP identifier) //1
bmpBytes.writeInt(fileSize); // file size //2
bmpBytes.position = 0x0A; // offset to image data
bmpBytes.writeInt( imageDataOffset ); //10 4 Bytes
bmpBytes.writeInt(0x28); // header size //14 4 Bytes
bmpBytes.position = 0x12; // width, height
bmpBytes.writeInt( bmpWidth ); //18 4 Bytes
bmpBytes.writeInt( bmpHeight ); //22 4 Bytes
bmpBytes.writeShort( 1 ); // planes (1) //26 2 Bytes
bmpBytes.writeShort( bitDepth ); // color depth //28 2 Bytes
bmpBytes.writeInt( 0 ); // compression type //30 4 Bytes
bmpBytes.writeInt( imageSize ); // image data size //34 4 Bytes
bmpBytes.writeInt( 0x2E23 ); // Horizontal resolution //38 4 Bytes
bmpBytes.writeInt( 0x2E23 ); // Vertical resolution //42 4 Bytes
bmpBytes.writeInt( 0x100 ); // Color in the palette
bmpBytes.position = 0x36; // start of color table
/* COLOR TABLE */
var table:uint = 256 * 4;
for (var i:uint = 0; i < table; i++) {
bmpBytes.writeByte( i ); //B
bmpBytes.writeByte( i ); //G
bmpBytes.writeByte( i ); //R
bmpBytes.writeByte( 0 ); //A
/*
* Grays are made of equal bytes, for example: #AAAAAA is gray.
*/
}
bmpBytes.position = imageDataOffset; // start of image data... byte 310 // 1078
// write pixel bytes in upside-down order
// ( as per BMP format )
var col:int = bmpWidth;
var row:int = bmpHeight;
var rowLength:int = col * bytesPerPixel; // Bytes per column based on Bit depth
// Writing bytes to new image vars
var writingOffset:int = 4 - ( bitDepth / 8 );
try {
// make sure we're starting at the
// beginning of the image data
imageBytes.position = 0;
// Tmp ByteArray to extract 32 bits per pixel
var tmpBytes:ByteArray;
// bottom row up
while (row--) {
/* hey += "LINE\n"; */
// from end of file up to imageDataOffset
tmpBytes = new ByteArray();
bmpBytes.position = imageDataOffset + ( row * rowLength );
// read through each column writing
// those bits to the image in normal
// left to rightorder
col = bmpWidth;
while (col--) {
// Extracting the 32 bits corresponding
// to a pixel per getPixels method ( always the same ).
imageBytes.readBytes( tmpBytes, 0, 4 );
// We just need one BYTE of the 4 that are in this array.
tmpBytes.position = 3;
// THIS IS THE INDEX ON OUR COLOR TABLE ( GRAYSCALE ).
bmpBytes.writeByte( tmpBytes.readUnsignedByte() );
}
}
} catch(error:Error) {
// end of file
Alert.show( error.toString(), "I/O BMP ERROR" );
}
// return BMP file
return bmpBytes;
}
这些是我用来制作图像的 DisplayObject 的示例:
第一个图像生成良好,但第二个图像没有...
如果我用atom打开第二个,看起来像这样:
为什么?有人能看到我缺少的东西吗...这只是...啊。提前谢谢你:)
最佳答案
我发现我没有在需要时添加填充...这是生成的代码。
private static function encode( bitmapData:BitmapData ):ByteArray {
var bytesPerPixel:int = 1;
var bitDepth:int = 8;
// image/file properties
var bmpWidth:int = bitmapData.width;
var bmpHeight:int = bitmapData.height;
var imageBytes:ByteArray = bitmapData.getPixels(bitmapData.rect);
var imageSize:int = imageBytes.length;
// Offsets
var imageDataOffset:int = 0x436;
var colorTableOffset:int = 0x36;
// Pixel array
var col:int = bmpWidth;
var row:int = bmpHeight;
var rowLength:int = col * bytesPerPixel; // 4 bytes per pixel (32 bit)
// Padding
var mod:int = ( rowLength % 4 ) != 0 ? 4 - ( rowLength % 4 ):0;
rowLength += mod;
// File size
var fileSize:int = imageSize + imageDataOffset + ( mod * row );
// binary BMP data
var bmpBytes:ByteArray = new ByteArray();
bmpBytes.endian = Endian.LITTLE_ENDIAN; // byte order
// header information
bmpBytes.length = fileSize;
// DIB header ( 40 bytes version )
bmpBytes.writeByte(0x42); // B
bmpBytes.writeByte(0x4D); // M (BMP identifier)
bmpBytes.writeInt( fileSize ); // file size
bmpBytes.position = 0x0A; // offset to image data
bmpBytes.writeInt(imageDataOffset);
bmpBytes.writeInt(0x28); // header size
bmpBytes.position = 0x12; // width, height
bmpBytes.writeInt(bmpWidth);
bmpBytes.writeInt(bmpHeight);
bmpBytes.writeShort(1); // planes (1)
bmpBytes.writeShort(bitDepth); // color depth (32 bit)
bmpBytes.writeInt(0); // compression type
bmpBytes.writeInt( ( imageSize + ( mod * row ) ) ); // image data size
bmpBytes.writeInt( 0x2E23 ); // Horizontal resolution
bmpBytes.writeInt( 0x2E23 ); // Vertical resolution
bmpBytes.writeInt( 0x100 ); // Color in the palette
bmpBytes.position = colorTableOffset; // start of color table...
/* COLOR TABLE */
for (var i:uint = 0; i < 1024; i++) {
bmpBytes.writeByte( i ); //B
bmpBytes.writeByte( i ); //G
bmpBytes.writeByte( i ); //R
bmpBytes.writeByte( 0 ); //A
}
/* Pixel array */
bmpBytes.position = imageDataOffset; // start of image data...
var imgBmp:ByteArray;
try {
// make sure we're starting at the
// beginning of the image data
imageBytes.position = 0;
// bottom row up
while (row--) {
imgBmp = new ByteArray();
// from end of file up to imageDataOffset
bmpBytes.position = imageDataOffset + row*rowLength;
// read through each column writing
// those bits to the image in normal
// left to rightorder
col = bmpWidth;
while (col--) {
imageBytes.readBytes ( imgBmp, 0, 4 );
bmpBytes .writeBytes( imgBmp, 1, 1 );
}
bmpBytes.position += mod;
}
}catch(error:Error){
// end of file
Alert.show( error.toString(), "EOF" );
}
// return BMP file
return bmpBytes;
}
根据 BMP 规范,每当行字节数不是四的倍数时,就必须添加填充来解决这个问题。
正如您所看到的,我使这段代码变得更简单,但是如果您可以看到这些行:
// Padding
var mod:int = ( rowLength % 4 ) != 0 ? 4 - ( rowLength % 4 ):0;
rowLength += mod;
我正在根据实际的 rowLenght 调整 rowLenght。然后,稍后我只需要在写入时“计算”额外的字节:
bmpBytes.position += mod;
填充字节时:
/* Pixel array */
bmpBytes.position = imageDataOffset; // start of image data...
var imgBmp:ByteArray;
try {
// make sure we're starting at the
// beginning of the image data
imageBytes.position = 0;
// bottom row up
while (row--) {
imgBmp = new ByteArray();
// from end of file up to imageDataOffset
bmpBytes.position = imageDataOffset + row*rowLength;
// read through each column writing
// those bits to the image in normal
// left to rightorder
col = bmpWidth;
while (col--) {
imageBytes.readBytes ( imgBmp, 0, 4 );
bmpBytes .writeBytes( imgBmp, 1, 1 );
}
bmpBytes.position += mod;
}
}catch(error:Error){
关于arrays - 当像素阵列为小型可编辑文本 AS3 时,未生成 8 位 BMP 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40598307/
我有一个关于将字符串分配给数组编号的问题。 我已经声明了字符串数组,例如。 String[] answer = {"yes", "no", "maybe"}; 如何在不使用这种方法的情况下将每个字符串
我正在为云数据库使用 Firebase 编写一个 Android 应用程序。它基本上是一个多项选择调查问题应用程序。导入到我的 Firebase { "multiple_choice" : {
我想将输入文件中的以下行存储到 3D 数组中(不包括第一行。)第一行表示后续行的数量。 3 4 9368 86 843 23224 4 7323 2 2665 2665 8447 47 843 527
这是我关于容器的小大问题,尤其是数组。 我正在编写一个物理代码,主要操纵一大组(> 1 000 000)“粒子”(每个粒子有 6 个 double 坐标)。我正在寻找最佳方式(在性能方面)来实现一个类
我有一个超链接,我需要在 Angular 4 中创建一个路由器链接。我有很多部分指向 url,其中一部分是一个数组。我不确定如何让数组将自己拆分成 routerlink 数组的部分。 以这个人为的例子
大家好,我有一个轮子选择器在工作,但目前它正在为所有轮子提取 0-9 的数字。我希望能够设置值而不是 0-9 我希望它是从数组或字符串中提取的单词,所以我可以输入它们 myslef 因为我不确定目前从
我正在尝试使用 Spotify API 并进入数组。 const App = () => { const [isLoading, setIsLoading] = useState(true);
我尝试创建 Tic Tac Toe,我能够填满我的棋盘,并且能够检查行和列以确定谁获胜。然而,我需要一些帮助来检查对角线,看看谁赢了。这是我到目前为止所拥有的。我是初学者,所以请不要让代码太难。 检查
--in the package type t_array is array (natural range <>) of std_logic_vector (7 downto 0); type p_a
我在访问字符串数组时遇到困难。它被声明为私有(private)数组并填充在类的构造函数中。我定义了一个 Get 函数。问题是当我在编译时调用此函数时出现错误,提示我无法访问在类中声明的私有(priva
无法弄清楚推送到 Moose 数组的语法(我确信这很明显,而且我很愚蠢)。这是 this question 的延续.在我看来,对于我的具体情况,我需要的不仅仅是一个简单的值。尝试使用 Moose 式的
我有一个 3d 数组,我正在尝试从中获取刺伤列表。换句话说,给定数组: t = np.array([[[1,2],[3,4]],[[5,6],[7,8]],[[9,10],[11,12]]]) arr
我正在寻找绘制一个 3 维数组。有没有一种方法可以直接输入数组,绘制体素并在 3d 数组中的位置产生的坐标处绘制实际值(颜色)?到目前为止我发现的所有方法(例如 ax.voxels、mlab.poin
我正在尝试使用 Knockout 创建一个简单的电子表格。我试图让每个单元格都可观察,以便在发生变化时,我可以评估值并进行相应的计算。因此,如果他们在单元格中输入 6+7,我可以评估并将该值更改为总数
我有当前时间和这组时间。我想计算出下一次与当前时间最接近的时间。 let date = NSDate() let calendar = NSCalendar.currentCalendar() let
我想在我的小程序中创建一个二维图像数组。我需要一个 4x4 网格,其中有 4 个图像,每个图像 4 个随机分布在阵列中。这里有一些答案,但我不明白如何使用它们。 最佳答案 您可以声明 Image[][
基本上,此代码列出了“可用”挑战,其中 complete = 0 并在每个列表中都有一个接受submit 按钮。到目前为止,我一次只能列出一项,因为列出的多个按钮无法识别匹配 ID $echo 任何人
我正在尝试创建一个带有动态变量的过滤数组。我创建一个包含过滤器键的数组,然后创建一个过滤后的数组,该数组只应返回与第一个数组中的键匹配的项目。 带有过滤器键的数组:$scope.participant
我是一个相对年轻的开发人员,我对一些事情感到困惑。 这是我的代码: function pairElement(str) { var arr = []; var pairs = [
我正在 Angular 中创建一个函数,我想抓取所有博客文章,其类别与单击的按钮相匹配,我的 Firebase 中有 3 个不同的字段,标题为类别 1、类别 2 和类别 3。例如,当用户单击新闻通讯时
我是一名优秀的程序员,十分优秀!