Algolia Indexing(인덱싱) 방법

사실상 개인메모입니다 ㅎ

Electron exe 파일 초간단 설치법

거두절미하고 설명합니다.

How to solve CMake error in Flutter

Error message generated after Visual Studio upgrade:

How to save Wikipedia document to local text file with Python?

Python is a programming language used in many fields such as web crawling.

How to show animated SVG icon in PyQt5

So, here we are. The second English post.

How to show basic window in PyQt5

Finally, first English post.

파이참(PyCharm) 프로젝트 파일 안보이는 문제, 설정 창 인터프리터 부분의 nothing to show 문제 해결하기

파이참을 사용하다가 가끔씩 난관에 부딪칠 때가 많은데요.

pip로 requirements.txt를 앳, file... 없이 가지런하게 만드는 방법

pip로 requirements.txt 앳(@), file… 없이 가지런하게 만드는 방법입니다.

CPU 잡아먹는 CompatTelRunner.exe이 하는 일과 비활성화하는 방법

컴퓨터를 하다가 아무것도 안하고 있는데, 갑자기 CPU 돌아가는 소리가 크게 들립니다.

jekyll에서 특수기호 raw string으로 인식시키는 방법

깃헙 페이지 포스트 내용 중 코드를 쓸 시, 중괄호나 밑줄 두개 같이 jekyll에서 특수기호로 취급되는 낱말은 제대로 입력이 되지 않습니다. 그럴 때는 다음과 같이 하시면 됩니다!

<% raw %>
(...)
<% endraw %>

파이참(PyCharm)에서 디렉토리 이름변경 시 java.io.ioexception 오류 해결방법

파이참에서 디렉토리 이름변경 기능을 사용할 시 java.io.ioexception이 뜰 때가 있죠.

파이큐티(PyQt5)에서 윈도우 배경화면 설정하는 방법

파이큐티(PyQt5)에서 윈도우 배경화면 설정하기.. 참 어렵습니다. 윈도우 배경화면 설정하듯이 할 수 없는 것이 현실이죠.

파이썬(Python)에서 메인 모듈 경로에 따른 상대경로 설정하는 방법

이럴 때가 있죠. 메인 모듈에서 특정 경로에 있는 외부 모듈을 부를 때, 그 외부 모듈에서 필요한 css 파일 따위를 못 찾아서 FileNotFoundError를 내뱉는 경우 말입니다.

파이썬(Python) eval 함수 설명, 사용방법

파이썬 eval 함수는 문자열 형식으로 된 코드(예: print(‘123’))를 입력으로 받아 동적으로 계산하여 출력해주는 함수입니다.

파이썬(Python)에서 숫자 사이에 콤마(1,234,567...) 넣기

숫자를 사용자에게 보여주는 프로그램에서는 수치를 확연하게 보여주기 위해 중간중간에 쉼표를 붙이죠.

깃배쉬에서 사용하는 기본적인 명령어(git init, git pull..) 설명

깃배쉬 기본적인 명령어를 알려드리겠습니다. (사실상 첫 포스팅이네요.)

1. 우선 짚고 넘어가야할 용어

저장소(Repository): 줄여서 Repo라고 합니다. 프로젝트(프로그램 작업해놓은 것들)를 저장하는 곳입니다.

위 사진에 있는 pyqt-font-dialog, pyqt-dark.. 등등이 저장소입니다

브랜치(Branch): 브랜치는 프로젝트 작업장 같은 겁니다. 하나의 저장소는 여러 브랜치를 가질 수 있습니다. 브랜치는 하나 이상 꼭 있어야 됩니다! 그래야 작업을 할 수 있으니까요.

List Previous Next

How to show animated SVG icon in PyQt5

Profile ImageJung Gyu Yoon Jun 13, 2022

So, here we are. The second English post.

How to show animated SVG icon? Quite simple.

But before you start it, download the sample SVG icon first.

Make directory name ico and move downloaded SVG icon to directory you made.

Then make the Python script like below.

import sys

from PyQt5.QtSvg import QSvgWidget
from PyQt5.QtWidgets import QApplication


# QSvgWidget is good to use when you want to make SVG-related widget.
class AnimatedSvgExample(QSvgWidget):
    def __init__(self):
        super().__init__()
        self.__initUi()

    def __initUi(self):
        r = self.renderer()
        # set FPS of SVG animation.
        r.setFramesPerSecond(60) 
        ico_filename = 'ico/rolling.svg'
        # set SVG icon to QSvgWidget.
        r.load(ico_filename) 


if __name__ == "__main__":
    app = QApplication(sys.argv)
    r = AnimatedSvgExample()
    r.show()
    sys.exit(app.exec_())

Copy and run.

example

There is GitHub repository i made as an example.

Well, that’s it.

But i gotta say this method is not perfect.

The problem is PyQt or Python whatever only accept the animateTransform.

So far i can’t find how to let them properly handle with other animate-related tag.

So bottom line, this method(which is only method in Qt by the way) works to SVG icon which has animateTransform, not animate/animateMotion.

I will find out how to solve that problem, definitely.


List Previous Next