KRPano Tech

KRPano Advanced Development Technology Sharing

The KRPano Plugin Decryptor allows you to decrypt KRPano XML/JS plugins with just one click. It also enables you to analyze and download all resources from static and dynamic websites. The software can be downloaded and installed for immediate use, and decryption is as simple as clicking your mouse—no need to configure any development environment. This tool is convenient for panorama developers who want to study and understand KRPano plugin operation principles.

Read more »

Introduction

KRPano Plugin Decrypt Master is a one-click tool for decrypting KRPano XML/JS plugins. It can also analyze and download all resources from both static and dynamic websites. Simply install and use - decryption requires just one mouse click, no development environment configuration needed. Perfect for panorama developers to research and learn panorama development and understand KRPano plugin operation principles.

Download:

Click to download

Official Website:

Visit official website

Join Our Community

KRPano Plugin Decrypt Master Technical Exchange Group: 976917753

Read more »

KRPano’s command line tool krpanotools can encrypt the XML specific parameters are described below

Syntax:

1
2
3
4
krpanotools32.exe encrypt[OPTIONS] inputfiles

<!-- more -->

Inputfiles parameter can be an arbitrary number of files (support *)

Options:

-h5 … Using the HTML5-compatible encryption methods

-bin … Supports only Flash encryption

-p … Using public key encryption

-z … Encrypted and compressed files

-ow … Overwrite the source file

-bk … Overwrite the source file and the backup source files

-in=# … Manually set the file to be encrypted path

-out=# … To manually set the output file path

-q … Do not display output messages

 

For example, the following example will tour directory. XML encryption, encrypted is saved as tour_enc. XML

1
krpanotools32 encrypt -in="tour.xml" -out="tour_enc.xml"

 

We can call the command line Java code and implements programs to encrypt XML file

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import java.io.IOException;
import java.lang.ProcessBuilder;
import java.io.*;

public class KrXmlEncryption {
public static void main(String[] args) throws IOException {
encryptXML("tour.xml", "tour_enc.xml");
}

public static void encryptXML(String srcPath, String outPath) throws IOException {
Process process = new ProcessBuilder("krpanotools32.exe", "encrypt", "-z", String.format("-in="%s"", srcPath),
String.format("-out="%s"", outPath)).start();
BufferedReader input = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line;
while ((line = input.readLine()) != null) {
System.out.println(line);
}
}
}

 

EncryptXML function has two parameters

SrcPath: the path to the XML source file

**OutPath: XML **path to save encrypted files

You can call this function saves the XML encryption to outPath srcPath

 

If you need stronger encryption methods, you can refer to this article

KRPano资源分析工具强力加密KRPano项目(XML防破解,切片图保护,JS反调试)

 

This post was published on: http://www. krpano. tech/archives/546

Posted by: dragon slayer

Reprinted please specify the source, thank you!

KRPano synchronization between multiple screen display can be realized, mainly applied to Websocket technology for communication.

 

On the control side, we need to send the KRPano scene perspective and scene information in real time, you can use the following code:

Read more »

KRPano development shooting puzzle video sharing software, contains a KRPano development, puzzles, videos, software.

 

Includes the following software:

Panoramic photo stitching, panorama view, panoramic video mosaics, panoramic video view, panoramic video plug-in, Panorama making, KRPano resource analysis tool, KRPano test development a dedicated browser, KRPano packaging EXE tool, KRPano packaging APK tool, KRPano latest Chinese version of Chinese.

Read more »

Introduction

Fast Panorama Download Master allows you to batch download the highest resolution panoramic images from KRPano panorama websites and Baidu Street View. Easy to install and use, no additional environment configuration needed. Perfect for developers to research panorama development and create simple demos.

Download:

Click to download

Official Website:

Visit official website

Join Our Community

Fast Panorama Download Master Discussion Group: 523776953

Read more »

Password before performing the action plug-in you can browse scenes or pop up a password input box that asks the user to enter a password.When your password is entered successfully before they can proceed.

Read more »

With KRPano tools XML files can be encrypted to protect XML file.Encryption is divided into two, the first public encryption, allowing other krpano panorama reads the XML, and the other for private encryption allows users to read XML encryption only.Two encryption algorithms are consistent, but public encryption uses a public decryption key, private encryption is encrypted based on a user’s own key.

Read more »

Case can show pictures KRPano graphic and text, and supports the picture larger view, and drag the text, and so on.

Screenshots are as follows:

Read more »

KRPano project in development, need to open each time you test a test server, or upload to the space to be able to test it very inconvenient.

This site provides free KRPano test development a dedicated browser, based on the Min browser (chrome core) secondary development, small and fast, and can solve the problem.Without having to open the local server, which can browse the KRPano normal test items, and you can open tour_editor directly, convenient for editing.

Read more »

A brief introduction

This is a Asp version krpano talk about the case, using ASP+jQuery stored in the XML file to read and write to the database, combined with krpano code function; case will now upload site for everybody study research, hoped has the help to everybody.

Read more »

A brief introduction

This is a Asp version krpano Chan case, use ASP+XML to read and write, store data, combined with krpano code function; case will now upload site for everybody study research, hoped has the help to everybody.

Read more »

A brief introduction


This is a case of Asp krpano statistics visits using ASP code control value-added features; case will now upload site for everybody study research, hoped has the help to everybody.

Read more »

This is a case similar to Taobao buy+, is based on the krpano secondary developed panoramic video of Panorama Tools, WebVR, 360° ring, panoramic video adding hotspots in a comprehensive case.Now upload case website for the krpano technicians and enthusiasts all study together.

Read more »

Introduction to tools

HTML-packaging tool can be any HTML item-packaged as a single EXE file, you can out of the browser and the server, double-click to run.

Read more »

Overall features

** **

  • Web site, you can enter http or HTTPS at the beginning of the Web site after and press ENTER to open the Web site, forward back buttons can operate on Web browsing history.In addition to the Web site, but you can also open the local file directory.
Read more »

Welcomes contributions, here you will get


  • Share their technical experience, enhance their writing level.

  • Get blogger exclusive KRPano resources analysis tool advanced version, KRPano learning and development work to help you better.

Read more »
0%