Search found 202 matches

by Flinx
Mon May 20, 2024 2:14 pm
Forum: Hollywood bugs
Topic: Bug in SetLayerStyle and Brushes?
Replies: 2
Views: 49

Re: Bug in SetLayerStyle and Brushes?

Mistake. Only one bad number. The line before "; SECOND BUTTON CLICK..." should not have "Photo1" but "Photo2".
by Flinx
Fri May 17, 2024 8:53 pm
Forum: Hollywood bugs
Topic: Typo in the manual
Replies: 1
Views: 104

Typo in the manual

On DisplayTransitionFX() the first of the "Fast vertical blinds" #VBBLINDS8 has one B too much.
by Flinx
Mon May 13, 2024 11:18 am
Forum: Hollywood bugs
Topic: CompareStr() and binary data
Replies: 1
Views: 144

CompareStr() and binary data

Hello, I'm not sure if I am allowed to call this a bug, but when I use CompareStr() with #ENCODING_RAW, I was hoping it would do a binary data comparison, but the strings are zero-terminated. If this is intentional, I would mention it in the manual. DebugPrint(CompareStr("Exif\0\2","E...
by Flinx
Mon May 13, 2024 10:36 am
Forum: General programming
Topic: Exif
Replies: 7
Views: 199

Re: Exif

To make it easier to understand what happens, I have now added error messages to the JPEG parser and a function call in which you would now have to insert the Exif parser. I don't have enough time for that at the moment. A useful description of the data structure is here . And of course you can find...
by Flinx
Sun May 12, 2024 11:26 pm
Forum: General programming
Topic: Exif
Replies: 7
Views: 199

Re: Exif

What did you expect? I have shown you how to find the EXIF data in the JPEG data blocks. Now you would have to write a similar parser for the EXIF data block found, which moves through the EXIF data structure and extracts the desired tags. This needs still some work. And, if it is slow, then maybe I...
by Flinx
Sun May 12, 2024 1:34 pm
Forum: General programming
Topic: macOS, quarantine and App Translocation, Run()
Replies: 2
Views: 564

Re: macOS, quarantine and App Translocation, Run()

Thanks, I'll try it that way.
by Flinx
Sun May 12, 2024 11:41 am
Forum: General programming
Topic: Exif
Replies: 7
Views: 199

Re: Exif

Here is a semi-finished JPEG parser, based on this documentation. When it has found the EXIF data, it only reports its size. You would have to decode the EXIF structure yourself next, but I hope this helps for now. Function p_PrintHex(st$) Local Debugstr$="" For Local i=0 To StrLen(st$, #E...
by Flinx
Sun May 12, 2024 10:16 am
Forum: General programming
Topic: Exif
Replies: 7
Views: 199

Re: Exif

Understand. Wait some minutes, I will try to make an example.
by Flinx
Sat May 11, 2024 12:12 pm
Forum: General programming
Topic: Exif
Replies: 7
Views: 199

Re: Exif

I've never tried this before, but after a quick look at a description , I immediately found the APP1 marker, the following two-byte size specification of the EXIF data and the character string "Exif" in a JPEG file using a hex editor. It can't be a big problem to read that. How did you try...
by Flinx
Sun May 05, 2024 10:43 am
Forum: General programming
Topic: macOS, quarantine and App Translocation, Run()
Replies: 2
Views: 564

macOS, quarantine and App Translocation, Run()

When I finally split my player into two components, the macOS quarantine function caused trouble with the downloaded program. As result my setup instructions have become much more complicated than I intended. Since I have little experience with Macs, I would ask if any of the German readers here kno...