Михаиллл
МихаилллJan. 27, 2019, 5:17 a.m.

Как при чтении HTML файла отвязаться от картинок-файлов и все сохранять в одной переменной?

Qt, HTML

Здравствуйте.
Как при чтении HTML файла отвязаться от картинок-файлов и все сохранять в одной переменной?

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

16
Михаиллл
  • Jan. 27, 2019, 7:54 a.m.
  • (edited)

попробовал сделать так, но выкидывает из программы и не написало ошибки:

QTextDocument htmlDocument;
htmlDocument.setHtml(textHtmlResume);
ui->ResumeHHTextEdit->setDocument(&htmlDocument);
    s
    • Jan. 27, 2019, 11:15 a.m.

    Возможно, вам как-то поможет это:

    QImage image;
    //image=...;
    QByteArray ba;
    QBuffer buffer(&ba);
    buffer.open(QIODevice::WriteOnly);
    image.save(&buffer, "PNG"); // writes image into ba in PNG format
    QString s = ba.toBase64();
    
    
      Михаиллл
      • Jan. 27, 2019, 12:09 p.m.

      Врятли он заменит ссылки в Html на файлы. Похоже придется в PDF конвертировать.

        Evgenii Legotckoi
        • Jan. 28, 2019, 2:25 a.m.

        вроде как картинку можно добавлять в html как массив ascii символов, возможно, что предварительный парсинг и преобразование ссылок на файлы в эти массивы символов может помочь, но не уверен, что QTextEdit такое понимает, чтобы отобразить правильно.

          Михаиллл
          • Jan. 28, 2019, 3:45 a.m.

          Нужно проверить, вдруг понимает, не хочется делать еще один кастыль из PDF.
          Вы не знаете как перевести картинку в массив ascii символов?

            Evgenii Legotckoi
            • Jan. 28, 2019, 3:51 a.m.

            Ну вообще, вам выше уже примерный код дали . Нужно будет сначала выдернуть все url из html, а потом конвертнуть их в строку, если они будут доступны, конечно, на вашем диске.

              Михаиллл
              • Jan. 28, 2019, 4:30 a.m.

              получил картинку, конвертированную в текст.
              Но как это вставить в HTML?
              В HTML картинка записана так :

              src=\"file:///C:\\tempDirHtmlResume\\tempResumeHtmlFile.files\\image001.jpg\"
              
                Михаиллл
                • Jan. 28, 2019, 4:34 a.m.

                Сделал так, заработало

                HTMLResume.replace(QRegExp("src=\"file:///C:\\tempDirHtmlResume\\tempResumeHtmlFile.files\\image001.jpg\""), textImage);
                    ui->ResumeHHTextEdit->setHtml(HTMLResume);
                

                Спасибо всем за помощь.
                QTextEdit отображает такой код HTML

                  Evgenii Legotckoi
                  • Jan. 28, 2019, 4:36 a.m.

                  Ну вот этот src обычно заменяют массивом байт в base64 (с ascii я погорчился, он не нужен, нужен только массив байт)

                  Обычно что-то вроде такого получаается

                  <img src="data:image/png;base64,bytearray"/>
                  

                  на месте bytearray должно быть то, что вы получаете с помощью QByteArray из того кода, что товарищ выше привёл.

                    Михаиллл
                    • Jan. 28, 2019, 4:54 a.m.

                    Я тоже поспешил,

                    HTMLResume.replace(QRegExp("\"file:///C:\\tempDirHtmlResume\\tempResumeHtmlFile.files\\image001.jpg\""), textImage);
                    

                    почему-то не работает. Картинка отображается из старого места.
                    Картинку перевел в текст так:

                        QImage imageForResume("C:\\tempDirHtmlResume\\tempResumeHtmlFile.files\\image001.jpg");
                        QByteArray byteArrayForImage;
                        QBuffer buffer(&byteArrayForImage);
                        imageForResume.save(&buffer, "PNG"); // writes the image in PNG format inside the buffer
                        //QString textImage = QString::fromLatin1(byteArrayForImage.toBase64().data());
                        QString textImage = byteArrayForImage.toBase64();
                    

                    И еще у меня не срабатывает часть кода, такое ощущение что некоторые части(что полегче) выполнились или пропустились, а некоторые продолжают выполняться(что потяжелее). может ли быть такое?

                      Михаиллл
                      • Jan. 28, 2019, 5:02 a.m.

                      Похоже комп не успевает создавать картинки и читать их (в зависимости от того, как скомпановынны методы), а другие части кода уже выполнились, тогда как стоящие перед ними нет.
                      Код вышел такой, не знаете , что тут можно поделать?

                      QString TextResume;
                          QString HTMLResume;
                          QVariant fileFormat(0x0000000A);     //Saving as filtered html
                          //QVariant fileFormat("HTML ");
                      
                          QString resumeFileName; //= QFileDialog::getOpenFileName(0, "Выберете резюме hh.ru", "", "*.rtf");
                          resumeFileName = QFileDialog::getOpenFileName(0, "Выберете резюме hh.ru", "", "*.doc *.docx *.rtf");
                          resumeFileName.replace(QRegExp("[/]"), "\\");
                          QString saveFile = "C:\\tempDirHtmlResume\\tempResumeHtmlFile.html";
                          QDir tempDir("C:\\tempDirHtmlResume");
                          tempDir.removeRecursively();  //delete directory
                          tempDir.mkpath("."); //create directory
                      
                          if(!resumeFileName.isEmpty())
                          {
                              QAxObject   wordApplication("Word.Application");
                              QAxObject *documents = wordApplication.querySubObject("Documents");
                              QAxObject *document = documents->querySubObject("Open(const QVariant&, bool)", resumeFileName, true);
                              QAxObject *words = document->querySubObject("Words");
                      
                      
                      
                              //qDebug()<< TextResume;
                              document->querySubObject("SaveAs(const QVariant&,const QVariant)", saveFile, fileFormat);
                              //document->querySubObject("WebOptions")->dynamicCall("Encoding",0x0000000A);
                              document->dynamicCall("Close (boolean)", false);
                              wordApplication.dynamicCall("Quit()");
                      
                      
                              if(!saveFile.isEmpty())
                              {
                                  QFile sFile(saveFile);
                                  if(sFile.open(QFile::ReadOnly | QFile::Text))
                                  {
                                      QTextStream in(&sFile);
                                      //QString textHtmlResume = in.readAll();
                                      HTMLResume = in.readAll();
                                      sFile.close();
                                      //HTMLResume.replace(QRegExp("src=\"tempResumeHtmlFile.files/"), "src=\"file:///C:\\tempDirHtmlResume\\tempResumeHtmlFile.files\\"); //замена символов //add images from directory
                                      //src=\"file:///C:\\tempDirHtmlResume\\tempResumeHtmlFile.files\\image001.jpg\"
                                      ui->ResumeHHTextEdit->clear();
                                      //ui->ResumeHHTextEdit->setHtml(HTMLResume);
                      
                                  }
                              }
                      
                      
                         // tempDir.removeRecursively();  //delete directory
                          }//*/
                      
                          QImage imageForResume("C:\\tempDirHtmlResume\\tempResumeHtmlFile.files\\image001.jpg");
                          QByteArray byteArrayForImage;
                          QBuffer buffer(&byteArrayForImage);
                          imageForResume.save(&buffer, "PNG"); // writes the image in PNG format inside the buffer
                          //QString textImage = QString::fromLatin1(byteArrayForImage.toBase64().data());
                          QString textImage = byteArrayForImage.toBase64();
                          //qDebug()<<textImage;
                      
                          //HTMLResume.replace(QRegExp("src=\"tempResumeHtmlFile.files/image001.jpg\""), "src=\"data:image/png;base64,bytearray\""); //замена символов //add text Images
                          HTMLResume.replace(QRegExp("src=\"tempResumeHtmlFile.files/image001.jpg\""), textImage); //замена символов //add text Images
                          ui->ResumeHHTextEdit->setHtml(HTMLResume);
                          qDebug()<<HTMLResume;
                          tempDir.removeRecursively();  //delete directory
                          //qDebug()<<HTMLResume;
                      

                      Самые медленные части кода на мой взгляд: конвертация doc в html, чтение html и картинки.

                        Михаиллл
                        • Jan. 28, 2019, 8:15 a.m.

                        код все же работает, просто почему то

                        HTMLResume.replace(QRegExp("src=\"tempResumeHtmlFile.files/image001.jpg\""), textImage); //замена символов //add text Images
                        

                        не хочет выполнятся, на место вставки вставляет "".
                        И почему то после этого не выводит

                        qDebug()<<HTMLResume;
                        

                        хотя

                        qDebug()<<ui->ResumeHHTextEdit->toHtml();
                        

                        работает.
                        Скажите пожалуйста, как вставить сюда textImage

                          Михаиллл
                          • Jan. 28, 2019, 8:20 a.m.
                          • (edited)

                          Если сделать так

                              //convert image to string
                              QImage imageForResume("C:\\tempDirHtmlResume\\tempResumeHtmlFile.files\\image001.jpg");
                              QByteArray byteArrayForImage;
                              QBuffer buffer(&byteArrayForImage);
                              imageForResume.save(&buffer, "PNG"); // writes the image in PNG format inside the buffer
                              //QString textImage = QString::fromLatin1(byteArrayForImage.toBase64().data());
                              QString textImage = byteArrayForImage.toBase64();
                              //qDebug()<<textImage;
                          
                              //HTMLResume.replace(QRegExp("src=\"tempResumeHtmlFile.files/image001.jpg\""), "src=\"data:image/png;base64,bytearray\""); //замена символов //add text Images
                              HTMLResume.replace(QRegExp("tempResumeHtmlFile.files/image001.jpg"), textImage); //замена символов //add text Images
                              qDebug()<<HTMLResume;
                              qDebug()<<"1";
                              ui->ResumeHHTextEdit->setHtml(HTMLResume);
                              qDebug()<<ui->ResumeHHTextEdit->toHtml();
                              tempDir.removeRecursively();  //delete directory
                          

                          то почемуто qDebug не выводит HTMLResume и ui->ResumeHHTextEdit->toHtml();

                            Михаиллл
                            • Jan. 28, 2019, 8:29 a.m.

                            а если вставляю так, то картинка не появляется:

                            src=\"data:textImage/png;base64,byteArrayForImage\">
                            
                              Михаиллл
                              • Jan. 28, 2019, 11:16 a.m.

                              Нашел тут подобный вопрос
                              Сделал так

                              HTMLResume.replace(QRegExp("tempResumeHtmlFile.files/image001.jpg"), "<img src=\"data:image/png;base64," + textImage); 
                              

                              Но картинка не отобразилась.
                              Получилось так
                              testHtml.txt testHtml.txt
                              Хромом тоже картинка не отображается

                                Михаиллл
                                • Jan. 28, 2019, 11:41 a.m.
                                • The answer was marked as a solution.

                                Вот так заработало! Всем Спасибо за помощь!

                                    QImage imageForResume("C:\\tempDirHtmlResume\\tempResumeHtmlFile.files\\image001.jpg");
                                    QByteArray byteArrayForImage;
                                    QBuffer buffer(&byteArrayForImage);
                                    imageForResume.save(&buffer, "PNG"); // writes the image in PNG format inside the buffer
                                    QString textImage = byteArrayForImage.toBase64();
                                    HTMLResume.replace(QRegExp("src=\"tempResumeHtmlFile.files/image001.jpg\">"), " src=\"data:image/png;base64," + textImage + "\"/>"); //замена символов //add text Images
                                    ui->ResumeHHTextEdit->setHtml(HTMLResume);
                                

                                  Comments

                                  Only authorized users can post comments.
                                  Please, Log in or Sign up
                                  AD

                                  C ++ - Test 004. Pointers, Arrays and Loops

                                  • Result:50points,
                                  • Rating points-4
                                  m

                                  C ++ - Test 004. Pointers, Arrays and Loops

                                  • Result:80points,
                                  • Rating points4
                                  m

                                  C ++ - Test 004. Pointers, Arrays and Loops

                                  • Result:20points,
                                  • Rating points-10
                                  Last comments
                                  i
                                  innorwallNov. 15, 2024, 5:44 a.m.
                                  Qt/C++ - Lesson 039. How to paint stroke in QSqlTableModel by value in the column? Many OPKs would advise users to start using the test strips around day 9 of your cycle, considering day 1 to be the first day of full menstrual flow buy priligy australia
                                  i
                                  innorwallNov. 15, 2024, 2:27 a.m.
                                  Release of C++/Qt and QML application deployment utility CQtDeployer v1.4.0 (Binary Box) optionally substituted alkoxy, optionally substituted alkenyloxy, optionally substituted alkynyloxy, optionally substituted aryloxy, OCH, OC H, OC H, OC H, OC H, OC H, OC H, O C CH, OCH CH OH, O…
                                  i
                                  innorwallNov. 14, 2024, 9:26 p.m.
                                  Qt/C++ - Lesson 031. QCustomPlot – The build of charts with time buy generic priligy We can just chat, and we will not lose too much time anyway
                                  i
                                  innorwallNov. 14, 2024, 7:03 p.m.
                                  Qt/C++ - Lesson 060. Configuring the appearance of the application in runtime I didnt have an issue work colors priligy dapoxetine 60mg revia cost uk August 3, 2022 Reply
                                  i
                                  innorwallNov. 14, 2024, 12:07 p.m.
                                  Circuit switching and packet data transmission networks Angioedema 1 priligy dapoxetine
                                  Now discuss on the forum
                                  t
                                  tonypeachey1Nov. 15, 2024, 6:04 a.m.
                                  google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
                                  i
                                  innorwallNov. 15, 2024, 5:50 a.m.
                                  добавить qlineseries в функции priligy for sale Gently flush using an ear syringe
                                  i
                                  innorwallNov. 11, 2024, 10:55 a.m.
                                  Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
                                  9
                                  9AnonimOct. 25, 2024, 9:10 a.m.
                                  Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

                                  Follow us in social networks