- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我可以使用 cs50 中的一些帮助来解决此问题。每当我的代码遇到 while 循环时,fread 函数就会返回 0。我似乎无法理解为什么会发生这种情况。即使在我遇到这个问题之前,我的代码也没有按照我的预期工作,所以如果有任何其他提示,那将非常有帮助。
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
//PROTOTYPES
bool check(uint8_t block[]);
int main(int argc, char* argv[])
{
FILE* inptr = fopen("card.raw", "r"); //open up the card.raw file for reading
if(inptr == NULL)
{
fclose(inptr);
printf("Could not open the card data.\n");
return 1;
}
FILE* outptr;
int jpegCount = 0;
bool foundFirstJpg = false;// flag to denote wheather the first jpg has been found
char str[10]; //to hold the jpg name
sprintf(str, "%i.jpg", jpegCount); //puts the image name in str
jpegCount ++;
outptr = fopen(str, "w"); //Create a new jpeg for each image
uint8_t block[512]; // a tempory block to hold 512 bytes of info
while(fread(block, sizeof(block), 1, inptr) == 1) //read 512 bytes of info at a time from the inptr)
{
printf("hello\n");
if(check(block)) //if I have found a jpg
{
if(foundFirstJpg) //if its not my first jpg
{
fclose(outptr); //close the previous jpg file
sprintf(str, "%i.jpg", jpegCount); //puts the image name in str
outptr = fopen(str, "w"); //Create a new jpeg for each image
jpegCount ++;
fwrite(block, sizeof(block), 1, outptr); //write the block to the image file
}
else
{
fwrite(block, sizeof(block), 1, outptr); //write first block to the image file
foundFirstJpg = true;
}
}
else //if this is not a jpg
{
if(foundFirstJpg) //check if we have found our first jpg
{
fwrite(block, sizeof(block), 1, outptr); //write 512 bytes to the current image file
}
}
}
if (outptr)
{
fclose(outptr);
}
fclose(inptr);
return 0;
}
//function to check if this is the start or end of a jpg
bool check(uint8_t block[])
{
bool isJpg = true; //boolean value to be returned
if (block[0] != 0xff || block[1] != 0xd8 || block[2] != 0xff) //checks if the first 3 bytes are those that represent a jpg
{
isJpg = false;
}
if (block[3] < 0xe0 || block[3] > 0xef) //checks if the fourth byte also represents a jpg
{
isJpg = false;
}
return isJpg;
}
最佳答案
您应该以二进制模式打开这些文件:
FILE *inptr = fopen("card.raw", "rb");
...
outptr = fopen(str, "wb");
如果card.raw
小于512字节,fread
将返回0
。
关于c - pset4 cs50 recovery.c 指导,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38557786/
我有 2 个 .cs 文件,每个文件中都有一个类。如何在 Form2.cs 中的另一个类中调用 Form1.cs 中的一个类中的方法? 看起来像这样...... Form1.cs public par
我正在尝试了解指针的移动方式。以下是程序,我知道如果 int cs={1,2,3}; 然后cs指向cs[0]我不清楚的是 *cs 指向什么。 #include int main() {
我是 ASP.NET Core 新手。我正在使用 ASP.NET Core 7。我读到在 ASP.NET Core 7 中他们删除了 Startup.cs。有人可以告诉我如何在此示例中将 Startu
所以我知道一般来说,这是不可能的,因为Jon Skeet said so . 但是我的 .cs 文件是简单的类,在顶部有一个或两个 usings。我需要一个包含所有类的文件,这样我就可以将它作为单个文
到目前为止,基本上我的脚本将值发送到网关,然后被重定向到 CS 购物车。在该页面中,我获取返回的值并对其进行操作。 我使用 fn finish 和 fn 更改订单状态来完成订单,但无论我做什么,我都会
我需要一个匹配所有以 .cs 结尾的字符串的正则表达式,但如果它们以 .g.cs 结尾,则它们不应该匹配。我正在使用 .NET 正则表达式。 最佳答案 如果是 .cs 而不是 .g.cs,这将匹配结尾
到目前为止,基本上我的脚本将值发送到网关,然后被重定向到 CS 购物车。在该页面中,我获取返回的值并对其进行操作。 我使用 fn finish 和 fn 更改订单状态来完成订单,但无论我做什么,我都会
我的 Form.cs 中有一个函数,我想在我的 program.cs 中调用它 但是如果函数不是静态的,program.cs就不能用了。如果它是静态的,则 Form.cs 无法使用它,因为它涉及非静态
因此,当我抓取不同解决方案的一些文件并将它们粘贴到不同的解决方案中时,我的 Mainform 和设计师分离了。如果我运行我的程序,表格会正确显示,但是当我在设计模式下查看我的表格时,它是一个空白表格。
我有一个用户控件 (UserControl1.ascx),我对其 cs 文件进行了更改。UserControl1.ascx 正被两个或多个使用 LoadControl 的 aspx 文件使用.我不想部
我正在学习一些 Xamarin 开发。当我研究 Xamarin 项目的例子时,like this one ,我有时会看到一个页面有一个与 xaml 文件及其代码隐藏文件同名的神秘文件,但以 *CS.c
是的,这有点毫无意义,但我想知道......我的 MVC 应用程序中所有这些代码隐藏文件都困惑了。据我所知,我需要这些文件的唯一原因是告诉 ASP.NET 我的页面是从 ViewPage 而不是 Pa
我已经从一个不再可用的人那里继承了一个网站。在已部署的文件夹中,我有 Config.aspx(请参阅代码)。但是我找不到代码隐藏文件。配置页面有效。我在哪里可以找到 .cs 文件? 谢谢
在为 Outlook(或其他潜在的 Office 程序)开发插件时,在主类上调用方法可能很有用,但是如何从事件处理程序(例如功能区中的 button_click 事件)中执行此操作。 最佳答案 使用:
我已经创建了 PlayPage.xaml、PlayPage.xaml.cs 和 Game.cs 文件。PlayPage.xaml.cs 有两个变量,windowWidth 和 windowHeight
我一直在关注使用 Caliburn Micro 的 MVVM 模式教程 https://www.youtube.com/watch?v=laPFq3Fhs8k .xaml.cs 和 ViewModel
我试图将一个值(来自一个对象)放在一个变量中,并将它放在一个表单的文本框中。 表单代码如下: public Form1(Deck mainDeck) { InitializeC
我知道这很基础,但我找不到任何关于如何在 MSDN、Google 搜索和 stackoverflow 之间执行此操作的指南/教程。 我创建了一个新的 Windows 窗体应用程序,这里我有 Progr
VS2017 15.4.1 ASP.NET MVC 5.2.3 T4MVC 4.0.0 AutoT4MVC 1.5.3 再加工者 我在这个项目中已经使用 T4MVC] 好几个月了,没有任何问题。然而,
我正在尝试配置 kestrel,以便当它处于原始模式时在特定端口上运行。但是这样做似乎 launchsettings.json 需要传递命令行参数才能这样做,因为没有直接选项并且它总是在端口 5000
我是一名优秀的程序员,十分优秀!