Questions tagged [cover]
219 questions
1
vote
1 answer
Scale rotated image to fill HTML5 Canvas using JavaScript trigonometry?
Below is the code I am currently using. With 0 rotation, the image is correctly scaled to fill the canvas. (similar to background-size: cover, except using JavaScript on a Canvas)
I'm trying to add a rotate feature, with the following…

700 Software
- 85,281
- 83
- 234
- 341
1
vote
1 answer
MP3 Cover Art Tagging in C#
I need to tag MP3 files with a Cover Art in C#...
Is there any easy way to do this? I found UltraID3Lib as an exampel and it is great for regular ID3 tagging but I cant handle the cover art. If someone know an easy way to do this would it be great…

suxSx
- 212
- 1
- 5
- 16
1
vote
1 answer
fetch Cover Image from epub in ios
I want to display Book Cover Image of epub file in my Reading table. In my iOS application I have added "Open In" support for epub files. So when i navigate to my book reading app I want to show book's cover image in shelf first and then want to…

KavyaKavita
- 1,581
- 9
- 16
1
vote
0 answers
FB graph cover photo has offset_y > 100
Following Facebook documentation I would expect the cover photo of a given page to have offset_y between 0 and 100. Here is the response I get:
{'cover_id': '1002344733110934',
'id': '1002344733110934',
'offset_x': 0,
'offset_y': 105,
'source':…

mvdb
- 443
- 4
- 19
1
vote
0 answers
UIModalPresentationFormSheet covers full screen?
I did not get the solution for this:
miRevealController *reveal = [[self navigationController] revealController];
[reveal showViewController:[reveal frontViewController]];
reveal.frontViewController.modalPresentationStyle =…

Sanoj Kashyap
- 5,020
- 4
- 49
- 75
1
vote
1 answer
Minimal Cover of Functional Dependencies
Question:
The answer I keep on coming with is:
A => BE
C => D
BD => F
EF => B
BE => AC
But ideally the answer should be:
Can someone please explain if I am correct [There can be multiple minimal covers] and if I am not where have gone wrong?

Vish
- 4,508
- 10
- 42
- 74
1
vote
0 answers
Error (#210) A page access token is required to request this resource
I'm trying to change the image of cover of a fanpage using the Facebook API.
I can interact with other actions, such upload an image, but I can not update it. I follow the example of documentation…

César
- 85
- 1
- 7
1
vote
1 answer
Specman coverage: How to cover range of values in a list?
I have list of structs my_list:
struct my_struct {
comparator[2] : list of uint;
};
my_list[10] : list of my_struct;
The values of all comparators are configured once in a while. I would like to collect the range of all configured comparators,…

Halona
- 1,475
- 1
- 15
- 26
1
vote
4 answers
Background to cover entire screen
I have a background image which covers my entire scree. However, once I add elements to my html file, the background image only covers the area of this new element, the rest is going to be white.
How can I make sure, that the background continues…

Dribel
- 465
- 1
- 10
- 24
1
vote
1 answer
Specman coverage: Is there a way to define ranges using variable?
I have comp_value that gets values between 1 .. 100.
In addition I have an input variable period (of the same range). I need to cover 2 ranges of comp_values: [1..period] and [period+1 .. 100]. Something like this:
cover some_event_e is {
…

Halona
- 1,475
- 1
- 15
- 26
1
vote
1 answer
How can i get cover to create cover_db?
Im trying to set up Jenkins to run tests and coverage on my Perl project. In Jenkins i have a shell script that looks like this:
perl --version
perl Build.PL
prove -v test.pl --timer -l t >…

janeskil1525
- 31
- 4
1
vote
2 answers
Firefox rendering of background image
I have a problem when using a cover page on my website. The coverpage, a page consisting of an image covering the whole browser window, is loaded correctly in all browsers but when I scroll down and then up again the image is distorted(only when…
user2359168
1
vote
1 answer
Approximate Minimal Set Cover Python
I have a list of lists each list contains the edge lengths of a polygon. For example:
[[0, 1, 2],
[0, 1.1, 2],
[0, 1.2, 2],
[0, 1.3, 2],
[4.5, 1.1],
[4.4, 1.1],
[5, 1, 2],
[5, 1.1, 2],
[5, 1.2, 2]
[6, 1, 7, 4],
[6, 1.1, 7, 4.1]]
I would…

Jon
- 11
- 2
1
vote
1 answer
Add a cover page to a PDF document
I create a PDF document with EVO PDF library from a HTML page using the code below:
HtmlToPdfConverter htmlToPdfConverter = new HtmlToPdfConverter();
byte[] outPdfBuffer = htmlToPdfConverter.ConvertUrl(url);
Response.AddHeader("Content-Type",…
user4049277
1
vote
1 answer
Accessing full size (851x315) timeline cover photo via graph api with offset crop
This is a continuous question of https://stackoverflow.com/a/21074207/3269910
the solution seems fine c0.0.851.315
but the c0.0 values are pointing to 0x0 position of the images
what i want is the image with offset_y . if an offset_y: 20,
ie, i…

user3269910
- 31
- 5